From 8c9339fabf8929ab4667dc5beb226544e3f01daf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ufuk=20Turun=C3=A7o=C4=9Flu?= Date: Mon, 5 Feb 2024 13:41:40 -0700 Subject: [PATCH 01/10] Bring CDEPS inline capability to CMEPS (#2028) Developed and enabled using CMEPS with inline CDEPS capability for UFS regional coupling. Two HAFS regional moving nest atm_ocn_wav coupling regression tests were added to test this capability. Note: This is a collaborative effort among the ESMF team, EMC/EIB, and EMC hurricane project team. --- CDEPS-interface/CDEPS | 2 +- CDEPS-interface/cdeps_files.cmake | 2 + CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 11 + CMakeLists.txt | 8 +- MOM6-interface/CMakeLists.txt | 19 +- cmake/configure_apps.cmake | 16 +- tests/default_vars.sh | 7 + tests/fv3_conf/hafs_fv3_run.IN | 15 + tests/fv3_conf/hafs_ww3_run.IN | 6 +- tests/fv3_conf/hycom_hat10_run.IN | 1 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 1260 ++++---- tests/logs/RegressionTests_derecho.log | 1293 +++++---- tests/logs/RegressionTests_hera.log | 1982 ++++++------- tests/logs/RegressionTests_hercules.log | 2529 +++++++++-------- tests/logs/RegressionTests_jet.log | 1142 ++++---- tests/logs/RegressionTests_orion.log | 1428 +++++----- tests/logs/RegressionTests_wcoss2.log | 1235 ++++---- tests/parm/MOM6_data_table_hafs | 2 + tests/parm/MOM_input_hafs | 976 +++++++ tests/parm/datm.streams.era5.IN | 1 + .../parm/diag_table/diag_table_hafs_template | 57 + tests/parm/input_nest_hafs.nml.IN | 8 + tests/parm/input_regional_hafs.nml.IN | 8 + tests/parm/stream.config_hycom.IN | 32 + tests/parm/stream.config_mom6.IN | 32 + .../ufs.configure.hafs_atm_ocn_wav_inline.IN | 167 ++ .../ufs.configure.hafs_atm_ocn_wav_mom6.IN | 136 + tests/rt.conf | 8 +- tests/rt.sh | 6 +- tests/run_test.sh | 4 + ...l_storm_following_1nest_atm_ocn_wav_inline | 153 + ...nal_storm_following_1nest_atm_ocn_wav_mom6 | 152 + 36 files changed, 7494 insertions(+), 5302 deletions(-) create mode 100644 tests/parm/MOM6_data_table_hafs create mode 100644 tests/parm/MOM_input_hafs create mode 100644 tests/parm/stream.config_hycom.IN create mode 100644 tests/parm/stream.config_mom6.IN create mode 100644 tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN create mode 100644 tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN create mode 100644 tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline create mode 100644 tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 89603d16f3..3d7067a523 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 89603d16f39675624fc8518da50d9515cd5f18c6 +Subproject commit 3d7067a523b8557058755289e4275f5f5c985daf diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 1348eadf7e..56d66d5cb7 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -12,8 +12,10 @@ list(APPEND cdeps_share_files CDEPS/share/shr_assert.h CDEPS/share/shr_cal_mod.F90 CDEPS/share/shr_const_mod.F90 + CDEPS/share/shr_file_mod.F90 CDEPS/share/shr_kind_mod.F90 CDEPS/share/shr_log_mod.F90 + CDEPS/share/shr_nl_mod.F90 CDEPS/share/shr_orb_mod.F90 CDEPS/share/shr_precip_mod.F90 CDEPS/share/shr_strconvert_mod.F90 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 8cd4a32809..624920ddbd 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 8cd4a32809a68102b38b4001fc9d55b31bf5c1c1 +Subproject commit 624920ddbd819c76ec37591c24e872308201810e diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index cc8ce183d5..efbd585acc 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -81,6 +81,11 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_post_rof_mod.F90 CMEPS/mediator/med_phases_post_wav_mod.F90) +if(CDEPS_INLINE) + list(APPEND _mediator_files CMEPS/mediator/med_phases_cdeps_mod.F90) + add_definitions(-DCDEPS_INLINE) +endif() + ############################################################################### ### Host model for CCPP ############################################################################### @@ -184,6 +189,12 @@ if(OpenMP_Fortran_FOUND) target_link_libraries(cmeps PRIVATE OpenMP::OpenMP_Fortran) endif() +### Set dependency for CDEPS if inline capability is requested +if(CDEPS_INLINE) + add_dependencies(cmeps cdeps::cdeps) + target_link_libraries(cmeps PUBLIC cdeps::cdeps) +endif() + ############################################################################### ### Install ############################################################################### diff --git a/CMakeLists.txt b/CMakeLists.txt index da6e16fbb7..9e9c8ccd39 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 ATMWM ATML LND S2S S2SA S2SW S2SWA S2SWAL HAFS HAFSW HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW ATMWM ATML LND S2S S2SA S2SW S2SWA S2SWAL HAFS HAFSW HAFS-MOM6 HAFS-MOM6W 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}") @@ -66,11 +66,13 @@ set(DISABLE_FMA OFF CACHE BOOL "Disable Fused Multiply-Add instructions (wor set(INLINE_POST ON CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") +set(REGIONAL_MOM6 OFF CACHE BOOL "Enable Regional MOM6") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") set(PDLIB OFF CACHE BOOL "Enable Domain Decomposition in WW3 via PDLIB") +set(CDEPS_INLINE OFF CACHE BOOL "Enable CDEPS inline capability") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -114,10 +116,12 @@ message("DEBUG ............ ${DEBUG}") message("INLINE_POST ...... ${INLINE_POST}") message("MULTI_GASES ...... ${MULTI_GASES}") message("MOVING_NEST ...... ${MOVING_NEST}") +message("REGIONAL_MOM6..... ${REGIONAL_MOM6}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") message("CMEPS_AOFLUX ..... ${CMEPS_AOFLUX}") +message("CDEPS_INLINE ..... ${CDEPS_INLINE}") message("") @@ -146,7 +150,7 @@ if(FMS) find_package(FMS 2022.04 REQUIRED COMPONENTS R4 R8) if(APP MATCHES "^(HAFSW)$") add_library(fms ALIAS FMS::fms_r4) - elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|NG-GODAS)$") + elseif (APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL|NG-GODAS|HAFS-MOM6|HAFS-MOM6W)$") add_library(fms ALIAS FMS::fms_r8) endif() if(APP MATCHES "^(ATM|ATMAERO|ATMAQ|ATMWM|ATMW|ATML|HAFS|HAFS-ALL)$") diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 8a32f4722e..f3cf811ec2 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -28,8 +28,14 @@ include("mom6_files.cmake") add_library(mom6_obj OBJECT ${mom6_src_files}) set_target_properties(mom6_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_obj PRIVATE $) -target_include_directories(mom6_obj PRIVATE $ - $) + +if(REGIONAL_MOM6) + target_include_directories(mom6_obj PRIVATE $ + $) +else() + target_include_directories(mom6_obj PRIVATE $ + $) +endif() target_link_libraries(mom6_obj PRIVATE fms esmf stochastic_physics @@ -42,8 +48,13 @@ target_link_libraries(mom6_obj PRIVATE fms add_library(mom6_nuopc_obj OBJECT ${mom6_nuopc_src_files}) set_target_properties(mom6_nuopc_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(mom6_nuopc_obj PRIVATE $) -target_include_directories(mom6_nuopc_obj PRIVATE $ - $) +if(REGIONAL_MOM6) + target_include_directories(mom6_nuopc_obj PRIVATE $ + $) +else() + target_include_directories(mom6_nuopc_obj PRIVATE $ + $) +endif() target_link_libraries(mom6_nuopc_obj PRIVATE mom6_obj fms stochastic_physics diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index d8ad21319c..17ebb9de58 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -68,17 +68,19 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA|S2SWAL)$") message("${APP_MSG} mode") endif() -if(APP MATCHES "^(HAFS|HAFSW|HAFS-ALL)$") +if(APP MATCHES "^(HAFS|HAFSW|HAFS-MOM6|HAFS-MOM6W|HAFS-ALL)$") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) - if(APP MATCHES "^(HAFS-ALL)$") - set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) - message("Configuring UFS app in HAFS with CDEPS mode") - endif() + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) 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) - set(HYCOM ON CACHE BOOL "Enable HYCOM" FORCE) - if(APP MATCHES "^(HAFSW|HAFS-ALL)$") + if(APP MATCHES "^(HAFS-MOM6|HAFS-MOM6W)$") + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + endif() + if(APP MATCHES "^(HAFS|HAFSW|HAFS-ALL)$") + set(HYCOM ON CACHE BOOL "Enable HYCOM" FORCE) + endif() + if(APP MATCHES "^(HAFSW|HAFS-MOM6W|HAFS-ALL)$") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in HAFS with Waves mode") endif() diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 819b28d7d7..570b6e9cae 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -324,6 +324,7 @@ export HAFS=false export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false +export CDEPS_INLINE=false export POSTAPP='global' export USE_MERRA2=.false. @@ -775,6 +776,7 @@ export HAFS=false export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false +export CDEPS_INLINE=false export FV3BMIC='p8c' export BMIC=.false. export DAYS=1 @@ -972,6 +974,7 @@ export HAFS=false export AQM=false export DATM_CDEPS=true export DOCN_CDEPS=false +export CDEPS_INLINE=false export DAYS=1 # model configure @@ -1047,6 +1050,7 @@ export HAFS=true export AQM=false export DATM_CDEPS=true export DOCN_CDEPS=false +export CDEPS_INLINE=false export INPES=$INPES_dflt export JNPES=$JNPES_dflt export NTILES=1 @@ -1063,6 +1067,7 @@ export S2S=false export HAFS=true export AQM=false export DOCN_CDEPS=true +export CDEPS_INLINE=false export INPES=$INPES_dflt export JNPES=$JNPES_dflt export NTILES=1 @@ -1081,6 +1086,7 @@ export HAFS=true export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false +export CDEPS_INLINE=false export INPES=$INPES_dflt export JNPES=$JNPES_dflt export NTILES=1 @@ -1152,6 +1158,7 @@ export HAFS=true export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false +export CDEPS_INLINE=false export INPES=$INPES_dflt export JNPES=$JNPES_dflt export NTILES=1 diff --git a/tests/fv3_conf/hafs_fv3_run.IN b/tests/fv3_conf/hafs_fv3_run.IN index ceaf43195d..f5374e7506 100644 --- a/tests/fv3_conf/hafs_fv3_run.IN +++ b/tests/fv3_conf/hafs_fv3_run.IN @@ -17,6 +17,8 @@ elif [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm" ] || \ [ ${CNTL_DIR} = "hafs_regional_specified_moving_1nest_atm" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_debug" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_hafs_regional_storm_following_1nest_atm/* ./INPUT/ elif [ ${CNTL_DIR} = "hafs_regional_1nest_atm" ] || \ @@ -49,3 +51,16 @@ if [[ $POSTAPP = 'hafs' ]]; then cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi + +if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ]; then + rm -rf OUTPUT + mkdir OUTPUT + cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/MOM6_regional_input_data/* ./INPUT/ + cp ${PATHRT}/parm/MOM_input_hafs ./MOM_input + cp ${PATHRT}/parm/MOM6_data_table_hafs ./data_table +fi +if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ]; then + cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/CDEPS_input_data/gfs_mesh.nc ./INPUT/ + cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/CDEPS_input_data/gfs_forcings.nc ./INPUT/ +fi diff --git a/tests/fv3_conf/hafs_ww3_run.IN b/tests/fv3_conf/hafs_ww3_run.IN index 62539911de..9378744d1f 100644 --- a/tests/fv3_conf/hafs_ww3_run.IN +++ b/tests/fv3_conf/hafs_ww3_run.IN @@ -1,10 +1,14 @@ if [ ${CNTL_DIR} = "hafs_regional_atm_wav" ] || \ [ ${CNTL_DIR} = "hafs_regional_atm_ocn_wav" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp @[INPUTDATA_ROOT_WW3]/@[WW3_MODDEF] ./mod_def.ww3 cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] ./mesh.hafs.nc - if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then + if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_mom6" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/WW3_hafs_regional_input_data/wind.natl_6m_2020082512 ./wind.ww3 else cp @[INPUTDATA_ROOT_WW3]/wind.natl_6m ./wind.ww3 diff --git a/tests/fv3_conf/hycom_hat10_run.IN b/tests/fv3_conf/hycom_hat10_run.IN index 740e65bbfd..68a8980fb9 100644 --- a/tests/fv3_conf/hycom_hat10_run.IN +++ b/tests/fv3_conf/hycom_hat10_run.IN @@ -1,6 +1,7 @@ if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_debug" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav_inline" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then rsync -arv @[INPUTDATA_ROOT]/FV3_hafs_input_data/HYCOM_hafs_regional_input_data/. ./ else diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 9b25fd6a40..c7ce9c7b36 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jan 31 19:20:35 UTC 2024 +Fri Feb 2 02:17:07 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.367920 - 0: The maximum resident set size (KB) = 1304280 + 0: The total amount of wall time = 280.516405 + 0: The maximum resident set size (KB) = 1307816 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 925.385783 - 0: The maximum resident set size (KB) = 1289116 + 0: The total amount of wall time = 915.713491 + 0: The maximum resident set size (KB) = 1292056 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.670387 - 0: The maximum resident set size (KB) = 1281048 + 0: The total amount of wall time = 251.429761 + 0: The maximum resident set size (KB) = 1278592 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.393805 - 0: The maximum resident set size (KB) = 1280764 + 0: The total amount of wall time = 250.829038 + 0: The maximum resident set size (KB) = 1281948 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.888089 - 0: The maximum resident set size (KB) = 1285060 + 0: The total amount of wall time = 250.474906 + 0: The maximum resident set size (KB) = 1285948 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.734159 - 0: The maximum resident set size (KB) = 1283704 + 0: The total amount of wall time = 258.712522 + 0: The maximum resident set size (KB) = 1281208 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_24457/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.695087 - 0: The maximum resident set size (KB) = 1280276 + 0: The total amount of wall time = 248.574949 + 0: The maximum resident set size (KB) = 1279744 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jan 31 22:36:38 UTC 2024 -Elapsed time: 03h:16m:04s. Have a nice day! +Fri Feb 2 12:53:19 UTC 2024 +Elapsed time: 10h:36m:13s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index b5f4b9de4f..c24923152c 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Thu Feb 1 02:24:12 UTC 2024 +Fri Feb 2 14:02:45 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_208866/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1241.703813 - 0: The maximum resident set size (KB) = 1409892 + 0: The total amount of wall time = 1251.653326 + 0: The maximum resident set size (KB) = 1407584 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_208866/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu 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 = 397.708785 - 0: The maximum resident set size (KB) = 1402992 + 0: The total amount of wall time = 377.186122 + 0: The maximum resident set size (KB) = 1394572 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_208866/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 385.291097 - 0: The maximum resident set size (KB) = 1402388 + 0: The total amount of wall time = 380.074651 + 0: The maximum resident set size (KB) = 1407552 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 1 03:44:26 UTC 2024 -Elapsed time: 01h:20m:14s. Have a nice day! +Fri Feb 2 15:19:23 UTC 2024 +Elapsed time: 01h:16m:38s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 2663075317..096a4d9125 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jan 31 23:59:22 UTC 2024 +Fri Feb 2 15:30:30 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_160200/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 528.769334 - 0: The maximum resident set size (KB) = 590976 + 0: The total amount of wall time = 511.454957 + 0: The maximum resident set size (KB) = 591204 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_160200/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 515.226916 - 0: The maximum resident set size (KB) = 590664 + 0: The total amount of wall time = 517.871253 + 0: The maximum resident set size (KB) = 594916 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_160200/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 507.542534 - 0: The maximum resident set size (KB) = 589080 + 0: The total amount of wall time = 521.291672 + 0: The maximum resident set size (KB) = 592712 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 1 01:39:48 UTC 2024 -Elapsed time: 01h:40m:27s. Have a nice day! +Fri Feb 2 16:42:10 UTC 2024 +Elapsed time: 01h:11m:40s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index e124483129..1ca75c30fb 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,59 +1,60 @@ -Thu Feb 1 13:54:26 UTC 2024 +Fri Feb 2 14:53:04 UTC 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop-35-g8db821c) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 488 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 478 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 500 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 491 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 510 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 535 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 516 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 187 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 539 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 527 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 591 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 467 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 647 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 528 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 490 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 491 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 533 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 493 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 501 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 519 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 502 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 42 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 513 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 554 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 191 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 547 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 537 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 599 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 612 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_32bit_intel elapsed time 596 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 219 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1006 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 846 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 583 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 669 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 940 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 917 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 576 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 578 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 215 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -118,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.170076 -The maximum resident set size (KB) = 2977016 +The total amount of wall time = 320.318412 +The maximum resident set size (KB) = 2977196 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -189,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 904.207302 -The maximum resident set size (KB) = 1593440 +The total amount of wall time = 904.301031 +The maximum resident set size (KB) = 1598124 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -242,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 966.156495 -The maximum resident set size (KB) = 1713256 +The total amount of wall time = 967.797684 +The maximum resident set size (KB) = 1725560 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -302,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 448.315294 -The maximum resident set size (KB) = 853232 +The total amount of wall time = 450.269818 +The maximum resident set size (KB) = 850424 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -373,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1051.313531 -The maximum resident set size (KB) = 1579820 +The total amount of wall time = 1058.830894 +The maximum resident set size (KB) = 1574172 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -432,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1415.452708 -The maximum resident set size (KB) = 1604452 +The total amount of wall time = 1418.322768 +The maximum resident set size (KB) = 1601436 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -504,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.173998 -The maximum resident set size (KB) = 2998816 +The total amount of wall time = 362.583734 +The maximum resident set size (KB) = 3001144 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +565,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.988141 -The maximum resident set size (KB) = 3056156 +The total amount of wall time = 213.311337 +The maximum resident set size (KB) = 3059776 Test 008 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -636,14 +637,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.980029 -The maximum resident set size (KB) = 3025704 +The total amount of wall time = 366.537912 +The maximum resident set size (KB) = 3026252 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -696,14 +697,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 216.785874 -The maximum resident set size (KB) = 3077272 +The total amount of wall time = 217.290818 +The maximum resident set size (KB) = 3080712 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -756,14 +757,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 329.485081 -The maximum resident set size (KB) = 3311356 +The total amount of wall time = 325.761022 +The maximum resident set size (KB) = 3312300 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -816,14 +817,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.349498 -The maximum resident set size (KB) = 2996912 +The total amount of wall time = 355.722477 +The maximum resident set size (KB) = 2998064 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -876,14 +877,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 308.870712 -The maximum resident set size (KB) = 2922476 +The total amount of wall time = 301.591247 +The maximum resident set size (KB) = 2926608 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +949,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 362.531272 -The maximum resident set size (KB) = 3000980 +The total amount of wall time = 363.540926 +The maximum resident set size (KB) = 3000524 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_s2sa_p8_intel Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1006,14 +1007,14 @@ Checking test 015 cpld_s2sa_p8_intel 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 = 349.823667 -The maximum resident set size (KB) = 2968436 +The total amount of wall time = 341.660545 +The maximum resident set size (KB) = 2968068 Test 015 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1077,14 +1078,14 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 267.656703 -The maximum resident set size (KB) = 1592132 +The total amount of wall time = 269.020881 +The maximum resident set size (KB) = 1588492 Test 016 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1146,14 +1147,14 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel 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 = 273.291164 -The maximum resident set size (KB) = 1641304 +The total amount of wall time = 273.924189 +The maximum resident set size (KB) = 1640212 Test 017 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_noaero_p8_agrid_intel Checking test 018 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1215,14 +1216,14 @@ Checking test 018 cpld_control_noaero_p8_agrid_intel 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 = 277.076236 -The maximum resident set size (KB) = 1637832 +The total amount of wall time = 277.554247 +The maximum resident set size (KB) = 1640032 Test 018 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_c48_intel Checking test 019 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1272,14 +1273,14 @@ Checking test 019 cpld_control_c48_intel 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 = 406.163085 -The maximum resident set size (KB) = 2649540 +The total amount of wall time = 405.358854 +The maximum resident set size (KB) = 2664112 Test 019 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_faster_intel Checking test 020 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1344,14 +1345,14 @@ Checking test 020 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 356.469103 -The maximum resident set size (KB) = 3002516 +The total amount of wall time = 357.630870 +The maximum resident set size (KB) = 2999844 Test 020 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_pdlib_p8_intel Checking test 021 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1415,14 +1416,14 @@ Checking test 021 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 921.787541 -The maximum resident set size (KB) = 1608976 +The total amount of wall time = 919.075070 +The maximum resident set size (KB) = 1605928 -Test 021 cpld_control_pdlib_p8_intel PASS Tries: 2 +Test 021 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_pdlib_p8_intel Checking test 022 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1474,14 +1475,14 @@ Checking test 022 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 455.897460 -The maximum resident set size (KB) = 907476 +The total amount of wall time = 454.259455 +The maximum resident set size (KB) = 906716 Test 022 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_pdlib_p8_intel Checking test 023 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1545,14 +1546,14 @@ Checking test 023 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1068.666628 -The maximum resident set size (KB) = 1578808 +The total amount of wall time = 1065.406163 +The maximum resident set size (KB) = 1593220 Test 023 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_debug_pdlib_p8_intel Checking test 024 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1604,14 +1605,14 @@ Checking test 024 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1483.876005 -The maximum resident set size (KB) = 1611048 +The total amount of wall time = 1487.807584 +The maximum resident set size (KB) = 1613300 Test 024 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_flake_intel Checking test 025 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1622,14 +1623,14 @@ Checking test 025 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.131404 -The maximum resident set size (KB) = 578716 +The total amount of wall time = 212.780162 +The maximum resident set size (KB) = 583572 Test 025 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_intel Checking test 026 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1656,14 +1657,14 @@ Checking test 026 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.908198 -The maximum resident set size (KB) = 529616 +The total amount of wall time = 131.095295 +The maximum resident set size (KB) = 528760 Test 026 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_parallel_intel Checking test 027 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1678,14 +1679,14 @@ Checking test 027 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.553258 -The maximum resident set size (KB) = 535980 +The total amount of wall time = 136.186549 +The maximum resident set size (KB) = 532856 Test 027 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_latlon_intel Checking test 028 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1696,14 +1697,14 @@ Checking test 028 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.557944 -The maximum resident set size (KB) = 530860 +The total amount of wall time = 131.564282 +The maximum resident set size (KB) = 530032 Test 028 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wrtGauss_netcdf_parallel_intel Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1714,14 +1715,14 @@ Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.772700 -The maximum resident set size (KB) = 531048 +The total amount of wall time = 133.767060 +The maximum resident set size (KB) = 530760 Test 029 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c48_intel Checking test 030 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1760,14 +1761,14 @@ Checking test 030 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.662347 -The maximum resident set size (KB) = 724628 +The total amount of wall time = 326.338413 +The maximum resident set size (KB) = 724984 Test 030 control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c192_intel Checking test 031 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1778,14 +1779,14 @@ Checking test 031 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 526.312448 -The maximum resident set size (KB) = 650164 +The total amount of wall time = 525.910476 +The maximum resident set size (KB) = 645512 Test 031 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c384_intel Checking test 032 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1796,14 +1797,14 @@ Checking test 032 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 582.023181 -The maximum resident set size (KB) = 961364 +The total amount of wall time = 585.455960 +The maximum resident set size (KB) = 958932 Test 032 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c384gdas_intel Checking test 033 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1846,14 +1847,14 @@ Checking test 033 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 511.913025 -The maximum resident set size (KB) = 1096508 +The total amount of wall time = 514.080449 +The maximum resident set size (KB) = 1099352 Test 033 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_intel Checking test 034 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1864,28 +1865,28 @@ Checking test 034 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.837019 -The maximum resident set size (KB) = 537192 +The total amount of wall time = 87.826710 +The maximum resident set size (KB) = 534364 Test 034 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_restart_intel Checking test 035 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.983218 -The maximum resident set size (KB) = 338904 +The total amount of wall time = 49.107201 +The maximum resident set size (KB) = 342464 Test 035 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_lndp_intel Checking test 036 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1896,14 +1897,14 @@ Checking test 036 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.314364 -The maximum resident set size (KB) = 531740 +The total amount of wall time = 82.666921 +The maximum resident set size (KB) = 535384 Test 036 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_iovr4_intel Checking test 037 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1918,14 +1919,14 @@ Checking test 037 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.885713 -The maximum resident set size (KB) = 529956 +The total amount of wall time = 132.611001 +The maximum resident set size (KB) = 531452 Test 037 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_iovr5_intel Checking test 038 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1940,14 +1941,14 @@ Checking test 038 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.336969 -The maximum resident set size (KB) = 527744 +The total amount of wall time = 132.499625 +The maximum resident set size (KB) = 529892 Test 038 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_intel Checking test 039 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1994,14 +1995,14 @@ Checking test 039 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.233438 -The maximum resident set size (KB) = 1509336 +The total amount of wall time = 162.258658 +The maximum resident set size (KB) = 1509936 Test 039 control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_ugwpv1_intel Checking test 040 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2048,14 +2049,14 @@ Checking test 040 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.142316 -The maximum resident set size (KB) = 1516344 +The total amount of wall time = 160.062622 +The maximum resident set size (KB) = 1517816 Test 040 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2094,14 +2095,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 89.701928 -The maximum resident set size (KB) = 696284 +The total amount of wall time = 88.562698 +The maximum resident set size (KB) = 696912 Test 041 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_noqr_p8_intel Checking test 042 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2148,14 +2149,14 @@ Checking test 042 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 162.711212 -The maximum resident set size (KB) = 1497120 +The total amount of wall time = 163.088783 +The maximum resident set size (KB) = 1494960 Test 042 control_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_noqr_p8_intel Checking test 043 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2194,14 +2195,14 @@ Checking test 043 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 87.485336 -The maximum resident set size (KB) = 705784 +The total amount of wall time = 87.748683 +The maximum resident set size (KB) = 701076 Test 043 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2245,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.782520 -The maximum resident set size (KB) = 1509352 +The total amount of wall time = 166.126433 +The maximum resident set size (KB) = 1504912 Test 044 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2294,14 +2295,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.310759 -The maximum resident set size (KB) = 1593772 +The total amount of wall time = 142.625057 +The maximum resident set size (KB) = 1601128 Test 045 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2320,14 +2321,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 292.230453 -The maximum resident set size (KB) = 1502744 +The total amount of wall time = 293.042555 +The maximum resident set size (KB) = 1516104 Test 046 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2374,14 +2375,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.004261 -The maximum resident set size (KB) = 1563608 +The total amount of wall time = 217.669024 +The maximum resident set size (KB) = 1564528 Test 047 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2428,14 +2429,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.332173 -The maximum resident set size (KB) = 1514868 +The total amount of wall time = 165.450126 +The maximum resident set size (KB) = 1520132 Test 048 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2482,14 +2483,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 195.392510 -The maximum resident set size (KB) = 1517112 +The total amount of wall time = 195.793589 +The maximum resident set size (KB) = 1514916 Test 049 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2500,28 +2501,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.027548 -The maximum resident set size (KB) = 615640 +The total amount of wall time = 285.508638 +The maximum resident set size (KB) = 615916 Test 050 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 150.759236 -The maximum resident set size (KB) = 786348 +The total amount of wall time = 152.310571 +The maximum resident set size (KB) = 786256 Test 051 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_decomp_intel Checking test 052 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2532,14 +2533,14 @@ Checking test 052 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 297.872385 -The maximum resident set size (KB) = 613068 +The total amount of wall time = 299.761045 +The maximum resident set size (KB) = 613420 Test 052 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_2threads_intel Checking test 053 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2550,14 +2551,14 @@ Checking test 053 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.454572 -The maximum resident set size (KB) = 672776 +The total amount of wall time = 170.609842 +The maximum resident set size (KB) = 670380 Test 053 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_noquilt_intel Checking test 054 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2565,14 +2566,14 @@ Checking test 054 regional_noquilt_intel 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 = 277.712001 -The maximum resident set size (KB) = 1149556 +The total amount of wall time = 280.659718 +The maximum resident set size (KB) = 1154388 Test 054 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2583,14 +2584,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.657925 -The maximum resident set size (KB) = 614548 +The total amount of wall time = 282.874043 +The maximum resident set size (KB) = 614396 Test 055 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2601,14 +2602,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 370.596469 -The maximum resident set size (KB) = 1587164 +The total amount of wall time = 369.503872 +The maximum resident set size (KB) = 1587348 Test 056 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_control_intel Checking test 057 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2619,14 +2620,14 @@ Checking test 057 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 310.443216 -The maximum resident set size (KB) = 611864 +The total amount of wall time = 313.039247 +The maximum resident set size (KB) = 611364 Test 057 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_ifi_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_decomp_intel Checking test 058 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2637,14 +2638,14 @@ Checking test 058 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 327.620000 -The maximum resident set size (KB) = 607312 +The total amount of wall time = 330.942547 +The maximum resident set size (KB) = 611812 Test 058 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_ifi_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_2threads_intel Checking test 059 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2655,14 +2656,14 @@ Checking test 059 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 188.461612 -The maximum resident set size (KB) = 668132 +The total amount of wall time = 192.089542 +The maximum resident set size (KB) = 662932 Test 059 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2709,14 +2710,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.965048 -The maximum resident set size (KB) = 918464 +The total amount of wall time = 404.138886 +The maximum resident set size (KB) = 913248 Test 060 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2727,14 +2728,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.155844 -The maximum resident set size (KB) = 1097120 +The total amount of wall time = 236.969637 +The maximum resident set size (KB) = 1097868 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2781,14 +2782,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.021619 -The maximum resident set size (KB) = 916044 +The total amount of wall time = 417.512749 +The maximum resident set size (KB) = 917240 Test 062 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2835,14 +2836,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.577074 -The maximum resident set size (KB) = 1003372 +The total amount of wall time = 370.005513 +The maximum resident set size (KB) = 1003584 Test 063 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2881,14 +2882,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.358177 -The maximum resident set size (KB) = 784896 +The total amount of wall time = 207.777773 +The maximum resident set size (KB) = 784972 Test 064 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2935,14 +2936,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.002432 -The maximum resident set size (KB) = 912448 +The total amount of wall time = 403.731072 +The maximum resident set size (KB) = 916120 Test 065 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2989,14 +2990,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.990235 -The maximum resident set size (KB) = 915980 +The total amount of wall time = 420.257006 +The maximum resident set size (KB) = 911920 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3035,14 +3036,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 301.418488 -The maximum resident set size (KB) = 783740 +The total amount of wall time = 300.958488 +The maximum resident set size (KB) = 787680 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3089,14 +3090,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 205.197327 -The maximum resident set size (KB) = 909024 +The total amount of wall time = 206.763011 +The maximum resident set size (KB) = 914148 Test 068 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3143,14 +3144,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.232416 -The maximum resident set size (KB) = 907044 +The total amount of wall time = 210.358713 +The maximum resident set size (KB) = 914940 Test 069 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3197,28 +3198,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.274901 -The maximum resident set size (KB) = 982792 +The total amount of wall time = 185.544472 +The maximum resident set size (KB) = 990224 Test 070 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.479349 -The maximum resident set size (KB) = 740220 +The total amount of wall time = 108.796557 +The maximum resident set size (KB) = 740996 Test 071 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3265,14 +3266,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.256124 -The maximum resident set size (KB) = 909988 +The total amount of wall time = 396.457124 +The maximum resident set size (KB) = 908644 Test 072 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3287,14 +3288,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.707511 -The maximum resident set size (KB) = 1874372 +The total amount of wall time = 484.141435 +The maximum resident set size (KB) = 1874392 Test 073 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3309,14 +3310,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.355849 -The maximum resident set size (KB) = 1861284 +The total amount of wall time = 467.963671 +The maximum resident set size (KB) = 1859952 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3327,14 +3328,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.356824 -The maximum resident set size (KB) = 607084 +The total amount of wall time = 337.030978 +The maximum resident set size (KB) = 605044 Test 075 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3345,26 +3346,26 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.641577 -The maximum resident set size (KB) = 602564 +The total amount of wall time = 331.569254 +The maximum resident set size (KB) = 602236 Test 076 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.046599 -The maximum resident set size (KB) = 275612 +The total amount of wall time = 118.845555 +The maximum resident set size (KB) = 275816 Test 077 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3411,14 +3412,14 @@ Checking test 078 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 155.185621 -The maximum resident set size (KB) = 1509172 +The total amount of wall time = 154.988896 +The maximum resident set size (KB) = 1513516 Test 078 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3429,14 +3430,14 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 273.308295 -The maximum resident set size (KB) = 606552 +The total amount of wall time = 270.119822 +The maximum resident set size (KB) = 608720 Test 079 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_debug_intel Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3463,364 +3464,364 @@ Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.357938 -The maximum resident set size (KB) = 689028 +The total amount of wall time = 158.922650 +The maximum resident set size (KB) = 689640 Test 080 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wrtGauss_netcdf_parallel_debug_intel Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.712797 -The maximum resident set size (KB) = 689412 +The total amount of wall time = 157.655288 +The maximum resident set size (KB) = 692700 Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_debug_intel Checking test 082 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.244526 -The maximum resident set size (KB) = 690932 +The total amount of wall time = 179.781081 +The maximum resident set size (KB) = 695120 Test 082 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_lndp_debug_intel Checking test 083 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.981064 -The maximum resident set size (KB) = 694068 +The total amount of wall time = 161.216264 +The maximum resident set size (KB) = 693880 Test 083 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmg_debug_intel Checking test 084 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.987189 -The maximum resident set size (KB) = 729460 +The total amount of wall time = 251.253070 +The maximum resident set size (KB) = 731792 Test 084 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmgt_debug_intel Checking test 085 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.724426 -The maximum resident set size (KB) = 730320 +The total amount of wall time = 246.667985 +The maximum resident set size (KB) = 734932 Test 085 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_ras_debug_intel Checking test 086 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.716155 -The maximum resident set size (KB) = 703072 +The total amount of wall time = 161.945652 +The maximum resident set size (KB) = 705816 Test 086 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_diag_debug_intel Checking test 087 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.306363 -The maximum resident set size (KB) = 748724 +The total amount of wall time = 163.146433 +The maximum resident set size (KB) = 746532 Test 087 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_debug_p8_intel Checking test 088 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.609668 -The maximum resident set size (KB) = 1522068 +The total amount of wall time = 164.858925 +The maximum resident set size (KB) = 1518788 Test 088 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_debug_intel Checking test 089 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1057.241772 -The maximum resident set size (KB) = 633208 +The total amount of wall time = 1056.164286 +The maximum resident set size (KB) = 633436 Test 089 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_debug_intel Checking test 090 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.761979 -The maximum resident set size (KB) = 1076580 +The total amount of wall time = 298.696433 +The maximum resident set size (KB) = 1078408 Test 090 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_debug_intel Checking test 091 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.652718 -The maximum resident set size (KB) = 1070432 +The total amount of wall time = 292.066615 +The maximum resident set size (KB) = 1075824 Test 091 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_gf_debug_intel Checking test 092 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.896341 -The maximum resident set size (KB) = 1078668 +The total amount of wall time = 296.503922 +The maximum resident set size (KB) = 1073860 Test 092 hrrr_gf_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_c3_debug_intel Checking test 093 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.835753 -The maximum resident set size (KB) = 1070676 +The total amount of wall time = 298.989046 +The maximum resident set size (KB) = 1071112 Test 093 hrrr_c3_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_unified_drag_suite_debug_intel Checking test 094 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.778895 -The maximum resident set size (KB) = 1074164 +The total amount of wall time = 299.690383 +The maximum resident set size (KB) = 1075004 Test 094 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_diag_debug_intel Checking test 095 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.766988 -The maximum resident set size (KB) = 1161928 +The total amount of wall time = 309.588087 +The maximum resident set size (KB) = 1162372 Test 095 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_cires_ugwp_debug_intel Checking test 096 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.101560 -The maximum resident set size (KB) = 1077936 +The total amount of wall time = 306.008528 +The maximum resident set size (KB) = 1077276 Test 096 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_unified_ugwp_debug_intel Checking test 097 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.319251 -The maximum resident set size (KB) = 1077092 +The total amount of wall time = 305.047713 +The maximum resident set size (KB) = 1075408 Test 097 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_lndp_debug_intel Checking test 098 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.981168 -The maximum resident set size (KB) = 1079416 +The total amount of wall time = 300.973018 +The maximum resident set size (KB) = 1080452 Test 098 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_progcld_thompson_debug_intel Checking test 099 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.113532 -The maximum resident set size (KB) = 1080896 +The total amount of wall time = 297.370856 +The maximum resident set size (KB) = 1075492 Test 099 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_noah_debug_intel Checking test 100 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.768223 -The maximum resident set size (KB) = 1070492 +The total amount of wall time = 293.185607 +The maximum resident set size (KB) = 1077912 Test 100 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_debug_intel Checking test 101 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.306088 -The maximum resident set size (KB) = 1073208 +The total amount of wall time = 298.663941 +The maximum resident set size (KB) = 1079072 Test 101 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.740452 -The maximum resident set size (KB) = 1075852 +The total amount of wall time = 489.704928 +The maximum resident set size (KB) = 1069828 Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1beta_debug_intel Checking test 103 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.039267 -The maximum resident set size (KB) = 1073960 +The total amount of wall time = 293.609134 +The maximum resident set size (KB) = 1074308 Test 103 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_clm_lake_debug_intel Checking test 104 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 348.521555 -The maximum resident set size (KB) = 1075084 +The total amount of wall time = 349.089494 +The maximum resident set size (KB) = 1076264 Test 104 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_flake_debug_intel Checking test 105 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.548271 -The maximum resident set size (KB) = 1078272 +The total amount of wall time = 301.022918 +The maximum resident set size (KB) = 1078428 Test 105 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/gnv1_c96_no_nest_debug_intel Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3861,26 +3862,26 @@ Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 521.872841 -The maximum resident set size (KB) = 1079484 +The total amount of wall time = 522.932010 +The maximum resident set size (KB) = 1080516 Test 106 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.557094 -The maximum resident set size (KB) = 300208 +The total amount of wall time = 298.766467 +The maximum resident set size (KB) = 300764 Test 107 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3891,14 +3892,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.561684 -The maximum resident set size (KB) = 961176 +The total amount of wall time = 225.467797 +The maximum resident set size (KB) = 959480 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3945,14 +3946,14 @@ Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.347646 -The maximum resident set size (KB) = 796128 +The total amount of wall time = 334.325928 +The maximum resident set size (KB) = 796248 Test 109 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3999,14 +4000,14 @@ Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.057311 -The maximum resident set size (KB) = 789412 +The total amount of wall time = 175.538101 +The maximum resident set size (KB) = 789924 Test 110 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_2threads_dyn32_phy32_intel Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4053,14 +4054,14 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 306.579035 -The maximum resident set size (KB) = 856636 +The total amount of wall time = 305.704982 +The maximum resident set size (KB) = 859796 Test 111 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_2threads_dyn32_phy32_intel Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4107,14 +4108,14 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.534668 -The maximum resident set size (KB) = 845824 +The total amount of wall time = 159.416675 +The maximum resident set size (KB) = 844788 Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_decomp_dyn32_phy32_intel Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4161,14 +4162,14 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.870793 -The maximum resident set size (KB) = 791816 +The total amount of wall time = 183.418929 +The maximum resident set size (KB) = 790492 Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_restart_dyn32_phy32_intel Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4207,28 +4208,28 @@ Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.013015 -The maximum resident set size (KB) = 693064 +The total amount of wall time = 249.760111 +The maximum resident set size (KB) = 692108 Test 114 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_restart_dyn32_phy32_intel Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.652160 -The maximum resident set size (KB) = 675256 +The total amount of wall time = 92.537859 +The maximum resident set size (KB) = 675180 Test 115 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_control_intel Checking test 116 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4244,40 +4245,40 @@ Checking test 116 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 115.248385 -The maximum resident set size (KB) = 1004096 +The total amount of wall time = 116.008762 +The maximum resident set size (KB) = 1005140 Test 116 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_2threads_intel Checking test 117 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 59.399942 -The maximum resident set size (KB) = 1008768 +The total amount of wall time = 56.438153 +The maximum resident set size (KB) = 1009568 Test 117 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_restart_mismatch_intel Checking test 118 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 71.225366 -The maximum resident set size (KB) = 886484 +The total amount of wall time = 68.462995 +The maximum resident set size (KB) = 882312 Test 118 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn64_phy32_intel Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4324,42 +4325,42 @@ Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.204271 -The maximum resident set size (KB) = 819504 +The total amount of wall time = 228.709562 +The maximum resident set size (KB) = 819984 Test 119 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_debug_dyn32_phy32_intel Checking test 120 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.635758 -The maximum resident set size (KB) = 950976 +The total amount of wall time = 292.419514 +The maximum resident set size (KB) = 957304 Test 120 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_debug_dyn32_phy32_intel Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.199362 -The maximum resident set size (KB) = 950504 +The total amount of wall time = 285.431568 +The maximum resident set size (KB) = 954288 Test 121 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_intel Checking test 122 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4373,14 +4374,14 @@ Checking test 122 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 884.158383 -The maximum resident set size (KB) = 1039196 +The total amount of wall time = 887.234514 +The maximum resident set size (KB) = 1038840 Test 122 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_qr_intel Checking test 123 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4394,81 +4395,81 @@ Checking test 123 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 890.295413 -The maximum resident set size (KB) = 708828 +The total amount of wall time = 893.774263 +The maximum resident set size (KB) = 708708 Test 123 conus13km_debug_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_2threads_intel Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 505.433554 -The maximum resident set size (KB) = 1038596 +The total amount of wall time = 505.890413 +The maximum resident set size (KB) = 1042936 Test 124 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_radar_tten_debug_intel Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 884.058645 -The maximum resident set size (KB) = 1108640 +The total amount of wall time = 889.920924 +The maximum resident set size (KB) = 1105268 Test 125 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn64_phy32_debug_intel Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.288640 -The maximum resident set size (KB) = 973472 +The total amount of wall time = 296.755630 +The maximum resident set size (KB) = 974180 Test 126 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_intel Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 344.391867 -The maximum resident set size (KB) = 621500 +The total amount of wall time = 342.919889 +The maximum resident set size (KB) = 622156 Test 127 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_thompson_gfdlsf_intel Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 308.111592 -The maximum resident set size (KB) = 969060 +The total amount of wall time = 312.742571 +The maximum resident set size (KB) = 965900 Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_ocn_intel Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4477,14 +4478,14 @@ Checking test 129 hafs_regional_atm_ocn_intel 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 = 420.816627 -The maximum resident set size (KB) = 663564 +The total amount of wall time = 422.200657 +The maximum resident set size (KB) = 666244 Test 129 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_wav_intel Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4493,14 +4494,14 @@ Checking test 130 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 739.799198 -The maximum resident set size (KB) = 688968 +The total amount of wall time = 749.518806 +The maximum resident set size (KB) = 692064 Test 130 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_ocn_wav_intel Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4511,14 +4512,14 @@ Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 930.582940 -The maximum resident set size (KB) = 705176 +The total amount of wall time = 937.087321 +The maximum resident set size (KB) = 708020 Test 131 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_1nest_atm_intel Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4540,14 +4541,14 @@ Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 318.310110 -The maximum resident set size (KB) = 389660 +The total amount of wall time = 314.768684 +The maximum resident set size (KB) = 390416 Test 132 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_telescopic_2nests_atm_intel Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4556,14 +4557,14 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 402.370529 -The maximum resident set size (KB) = 410104 +The total amount of wall time = 403.065815 +The maximum resident set size (KB) = 412916 Test 133 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_1nest_atm_intel Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4610,14 +4611,14 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 169.670882 -The maximum resident set size (KB) = 286088 +The total amount of wall time = 169.616739 +The maximum resident set size (KB) = 285644 Test 134 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4699,14 +4700,14 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 481.952906 -The maximum resident set size (KB) = 372036 +The total amount of wall time = 482.605167 +The maximum resident set size (KB) = 371928 Test 135 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_specified_moving_1nest_atm_intel Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4715,14 +4716,14 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.453061 -The maximum resident set size (KB) = 414896 +The total amount of wall time = 217.568480 +The maximum resident set size (KB) = 417700 Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_intel Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4744,14 +4745,14 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 205.216951 -The maximum resident set size (KB) = 418740 +The total amount of wall time = 204.435913 +The maximum resident set size (KB) = 417832 Test 137 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4760,28 +4761,28 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 261.766887 -The maximum resident set size (KB) = 493272 +The total amount of wall time = 261.272901 +The maximum resident set size (KB) = 497452 Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_storm_following_1nest_atm_intel Checking test 139 hafs_global_storm_following_1nest_atm_intel 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 = 90.340965 -The maximum resident set size (KB) = 315792 +The total amount of wall time = 90.948722 +The maximum resident set size (KB) = 319568 Test 139 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/gnv1_nested_intel Checking test 140 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4828,28 +4829,28 @@ Checking test 140 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 237.634690 -The maximum resident set size (KB) = 682080 +The total amount of wall time = 238.829676 +The maximum resident set size (KB) = 680964 Test 140 gnv1_nested_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 814.122427 -The maximum resident set size (KB) = 510264 +The total amount of wall time = 824.372311 +The maximum resident set size (KB) = 506752 Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4860,162 +4861,197 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 514.162775 -The maximum resident set size (KB) = 529708 +The total amount of wall time = 515.534337 +The maximum resident set size (KB) = 530108 Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 521.697420 +The maximum resident set size (KB) = 715464 + +Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + +The total amount of wall time = 388.309954 +The maximum resident set size (KB) = 722468 + +Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_docn_intel -Checking test 143 hafs_regional_docn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_docn_intel +Checking test 145 hafs_regional_docn_intel 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 -The total amount of wall time = 392.901344 -The maximum resident set size (KB) = 653592 +The total amount of wall time = 392.037411 +The maximum resident set size (KB) = 655452 -Test 143 hafs_regional_docn_intel PASS +Test 145 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_docn_oisst_intel -Checking test 144 hafs_regional_docn_oisst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_docn_oisst_intel +Checking test 146 hafs_regional_docn_oisst_intel 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 -The total amount of wall time = 393.592845 -The maximum resident set size (KB) = 638316 +The total amount of wall time = 392.429768 +The maximum resident set size (KB) = 637520 -Test 144 hafs_regional_docn_oisst_intel PASS +Test 146 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/hafs_regional_datm_cdeps_intel -Checking test 145 hafs_regional_datm_cdeps_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_datm_cdeps_intel +Checking test 147 hafs_regional_datm_cdeps_intel 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 = 944.427986 -The maximum resident set size (KB) = 882792 +The total amount of wall time = 946.424113 +The maximum resident set size (KB) = 883368 -Test 145 hafs_regional_datm_cdeps_intel PASS +Test 147 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_control_cfsr_intel -Checking test 146 datm_cdeps_control_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_cfsr_intel +Checking test 148 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.993265 -The maximum resident set size (KB) = 742780 +The total amount of wall time = 143.647063 +The maximum resident set size (KB) = 750008 -Test 146 datm_cdeps_control_cfsr_intel PASS +Test 148 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_restart_cfsr_intel -Checking test 147 datm_cdeps_restart_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_restart_cfsr_intel +Checking test 149 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.778765 -The maximum resident set size (KB) = 733840 +The total amount of wall time = 85.684300 +The maximum resident set size (KB) = 736608 -Test 147 datm_cdeps_restart_cfsr_intel PASS +Test 149 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_control_gefs_intel -Checking test 148 datm_cdeps_control_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_gefs_intel +Checking test 150 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.281913 -The maximum resident set size (KB) = 623416 +The total amount of wall time = 134.070231 +The maximum resident set size (KB) = 632468 -Test 148 datm_cdeps_control_gefs_intel PASS +Test 150 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_iau_gefs_intel -Checking test 149 datm_cdeps_iau_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_iau_gefs_intel +Checking test 151 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.259908 -The maximum resident set size (KB) = 629660 +The total amount of wall time = 136.412933 +The maximum resident set size (KB) = 628616 -Test 149 datm_cdeps_iau_gefs_intel PASS +Test 151 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_stochy_gefs_intel -Checking test 150 datm_cdeps_stochy_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_stochy_gefs_intel +Checking test 152 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.210904 -The maximum resident set size (KB) = 627000 +The total amount of wall time = 137.444412 +The maximum resident set size (KB) = 629604 -Test 150 datm_cdeps_stochy_gefs_intel PASS +Test 152 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_ciceC_cfsr_intel -Checking test 151 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_ciceC_cfsr_intel +Checking test 153 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.209791 -The maximum resident set size (KB) = 744560 +The total amount of wall time = 142.988660 +The maximum resident set size (KB) = 752280 -Test 151 datm_cdeps_ciceC_cfsr_intel PASS +Test 153 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_bulk_cfsr_intel -Checking test 152 datm_cdeps_bulk_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_bulk_cfsr_intel +Checking test 154 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.857840 -The maximum resident set size (KB) = 746768 +The total amount of wall time = 142.718230 +The maximum resident set size (KB) = 735732 -Test 152 datm_cdeps_bulk_cfsr_intel PASS +Test 154 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_bulk_gefs_intel -Checking test 153 datm_cdeps_bulk_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_bulk_gefs_intel +Checking test 155 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.345560 -The maximum resident set size (KB) = 625856 +The total amount of wall time = 134.507638 +The maximum resident set size (KB) = 629500 -Test 153 datm_cdeps_bulk_gefs_intel PASS +Test 155 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_mx025_cfsr_intel -Checking test 154 datm_cdeps_mx025_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_mx025_cfsr_intel +Checking test 156 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5023,15 +5059,15 @@ Checking test 154 datm_cdeps_mx025_cfsr_intel 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 = 338.715664 -The maximum resident set size (KB) = 592136 +The total amount of wall time = 339.143906 +The maximum resident set size (KB) = 597496 -Test 154 datm_cdeps_mx025_cfsr_intel PASS +Test 156 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_mx025_gefs_intel -Checking test 155 datm_cdeps_mx025_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_mx025_gefs_intel +Checking test 157 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5039,65 +5075,65 @@ Checking test 155 datm_cdeps_mx025_gefs_intel 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 = 335.544603 -The maximum resident set size (KB) = 573380 +The total amount of wall time = 337.336971 +The maximum resident set size (KB) = 581108 -Test 155 datm_cdeps_mx025_gefs_intel PASS +Test 157 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_multiple_files_cfsr_intel -Checking test 156 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_multiple_files_cfsr_intel +Checking test 158 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.857516 -The maximum resident set size (KB) = 745432 +The total amount of wall time = 142.808706 +The maximum resident set size (KB) = 750892 -Test 156 datm_cdeps_multiple_files_cfsr_intel PASS +Test 158 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_3072x1536_cfsr_intel -Checking test 157 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_3072x1536_cfsr_intel +Checking test 159 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 260.146582 -The maximum resident set size (KB) = 1991952 +The total amount of wall time = 261.856127 +The maximum resident set size (KB) = 2005288 -Test 157 datm_cdeps_3072x1536_cfsr_intel PASS +Test 159 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_gfs_intel -Checking test 158 datm_cdeps_gfs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_gfs_intel +Checking test 160 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 260.061706 -The maximum resident set size (KB) = 1992332 +The total amount of wall time = 260.653816 +The maximum resident set size (KB) = 2005220 -Test 158 datm_cdeps_gfs_intel PASS +Test 160 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_control_cfsr_faster_intel -Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_cfsr_faster_intel +Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.161305 -The maximum resident set size (KB) = 730084 +The total amount of wall time = 142.540144 +The maximum resident set size (KB) = 751576 -Test 159 datm_cdeps_control_cfsr_faster_intel PASS +Test 161 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_lnd_gswp3_intel -Checking test 160 datm_cdeps_lnd_gswp3_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_gswp3_intel +Checking test 162 datm_cdeps_lnd_gswp3_intel 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 @@ -5105,15 +5141,15 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 58.080019 -The maximum resident set size (KB) = 217652 +The total amount of wall time = 59.598464 +The maximum resident set size (KB) = 219744 -Test 160 datm_cdeps_lnd_gswp3_intel PASS +Test 162 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_lnd_era5_intel -Checking test 161 datm_cdeps_lnd_era5_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_era5_intel +Checking test 163 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5121,15 +5157,15 @@ Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 57.702964 -The maximum resident set size (KB) = 369952 +The total amount of wall time = 60.516957 +The maximum resident set size (KB) = 369164 -Test 161 datm_cdeps_lnd_era5_intel PASS +Test 163 datm_cdeps_lnd_era5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/datm_cdeps_lnd_era5_rst_intel -Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_era5_rst_intel +Checking test 164 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5137,15 +5173,15 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 41.180731 -The maximum resident set size (KB) = 372808 +The total amount of wall time = 41.176466 +The maximum resident set size (KB) = 367880 -Test 162 datm_cdeps_lnd_era5_rst_intel PASS +Test 164 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_atmlnd_sbs_intel -Checking test 163 control_p8_atmlnd_sbs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_atmlnd_sbs_intel +Checking test 165 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5233,15 +5269,15 @@ Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 271.325422 -The maximum resident set size (KB) = 1548660 +The total amount of wall time = 272.686960 +The maximum resident set size (KB) = 1547448 -Test 163 control_p8_atmlnd_sbs_intel PASS +Test 165 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_p8_atmlnd_intel -Checking test 164 control_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_atmlnd_intel +Checking test 166 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5329,15 +5365,15 @@ Checking test 164 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 273.496739 -The maximum resident set size (KB) = 1550516 +The total amount of wall time = 272.289955 +The maximum resident set size (KB) = 1546428 -Test 164 control_p8_atmlnd_intel PASS +Test 166 control_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_restart_p8_atmlnd_intel -Checking test 165 control_restart_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_p8_atmlnd_intel +Checking test 167 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5357,15 +5393,15 @@ Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 154.696677 -The maximum resident set size (KB) = 748512 +The total amount of wall time = 154.294531 +The maximum resident set size (KB) = 747308 -Test 165 control_restart_p8_atmlnd_intel PASS +Test 167 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmwav_control_noaero_p8_intel -Checking test 166 atmwav_control_noaero_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmwav_control_noaero_p8_intel +Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5407,15 +5443,15 @@ Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 99.619220 -The maximum resident set size (KB) = 1551504 +The total amount of wall time = 99.131553 +The maximum resident set size (KB) = 1545812 -Test 166 atmwav_control_noaero_p8_intel PASS +Test 168 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/control_atmwav_intel -Checking test 167 control_atmwav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_atmwav_intel +Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5458,15 +5494,15 @@ Checking test 167 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 89.793583 -The maximum resident set size (KB) = 543640 +The total amount of wall time = 90.660176 +The maximum resident set size (KB) = 544380 -Test 167 control_atmwav_intel PASS +Test 169 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmaero_control_p8_intel -Checking test 168 atmaero_control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_intel +Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5509,15 +5545,15 @@ Checking test 168 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.197295 -The maximum resident set size (KB) = 2854332 +The total amount of wall time = 236.744608 +The maximum resident set size (KB) = 2850920 -Test 168 atmaero_control_p8_intel PASS +Test 170 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmaero_control_p8_rad_intel -Checking test 169 atmaero_control_p8_rad_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_rad_intel +Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5560,15 +5596,15 @@ Checking test 169 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 275.374737 -The maximum resident set size (KB) = 2911572 +The total amount of wall time = 274.998914 +The maximum resident set size (KB) = 2913224 -Test 169 atmaero_control_p8_rad_intel PASS +Test 171 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/atmaero_control_p8_rad_micro_intel -Checking test 170 atmaero_control_p8_rad_micro_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_rad_micro_intel +Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5611,15 +5647,15 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 289.818988 -The maximum resident set size (KB) = 2926764 +The total amount of wall time = 289.954693 +The maximum resident set size (KB) = 2926824 -Test 170 atmaero_control_p8_rad_micro_intel PASS +Test 172 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47622/regional_atmaq_debug_intel -Checking test 171 regional_atmaq_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_atmaq_debug_intel +Checking test 173 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5632,10 +5668,12 @@ Checking test 171 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1310.462187 -The maximum resident set size (KB) = 4428796 +The total amount of wall time = 1304.424649 +The maximum resident set size (KB) = 4422396 -Test 171 regional_atmaq_debug_intel PASS +Test 173 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL +Fri Feb 2 17:01:10 UTC 2024 +Elapsed time: 02h:08m:07s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 10e4361e67..c8b7294c65 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,59 +1,60 @@ -Wed 31 Jan 2024 11:21:41 AM MST +Thu 01 Feb 2024 09:02:20 PM MST Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 640 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 633 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 489 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 695 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 735 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 762 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 756 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 299 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 459 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 458 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 142 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 816 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 403 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1097 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 841 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 338 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 694 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 547 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel 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 s2s_intel elapsed time 824 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1119 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 558 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1221 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 558 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1133 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 524 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1097 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 528 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1160 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 538 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 637 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 604 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 490 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 746 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 731 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 461 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 139 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 801 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 934 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 413 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1105 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 895 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 335 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 849 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1158 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 572 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1282 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 562 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1148 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 535 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1129 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 584 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_p8_mixedmode_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -118,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 279.760061 -The maximum resident set size (KB) = 3000488 +The total amount of wall time = 283.230457 +The maximum resident set size (KB) = 3000264 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -189,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 812.500274 -The maximum resident set size (KB) = 1619480 +The total amount of wall time = 812.030642 +The maximum resident set size (KB) = 1608308 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_gfsv17_iau_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -242,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 891.600903 -The maximum resident set size (KB) = 1746720 +The total amount of wall time = 895.565304 +The maximum resident set size (KB) = 1748620 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -302,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 417.656048 -The maximum resident set size (KB) = 883988 +The total amount of wall time = 414.421457 +The maximum resident set size (KB) = 880484 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_mpi_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -373,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 933.578822 -The maximum resident set size (KB) = 1582512 +The total amount of wall time = 931.825481 +The maximum resident set size (KB) = 1581896 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -432,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1282.646760 -The maximum resident set size (KB) = 1624300 +The total amount of wall time = 1287.700858 +The maximum resident set size (KB) = 1625336 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -504,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.965752 -The maximum resident set size (KB) = 3019996 +The total amount of wall time = 324.659688 +The maximum resident set size (KB) = 3017988 Test 007 cpld_control_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -564,14 +565,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 185.293053 -The maximum resident set size (KB) = 3072804 +The total amount of wall time = 185.422049 +The maximum resident set size (KB) = 3073332 Test 008 cpld_restart_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_qr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -636,14 +637,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.815970 -The maximum resident set size (KB) = 3050536 +The total amount of wall time = 323.456035 +The maximum resident set size (KB) = 3045904 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_qr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -696,14 +697,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 184.390427 -The maximum resident set size (KB) = 3100188 +The total amount of wall time = 184.975322 +The maximum resident set size (KB) = 3098128 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_decomp_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_decomp_p8_intel Checking test 011 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -756,14 +757,14 @@ Checking test 011 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.616768 -The maximum resident set size (KB) = 3012596 +The total amount of wall time = 321.353128 +The maximum resident set size (KB) = 3013644 Test 011 cpld_decomp_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_mpi_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_p8_intel Checking test 012 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -816,14 +817,14 @@ Checking test 012 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 260.262727 -The maximum resident set size (KB) = 3307916 +The total amount of wall time = 268.372777 +The maximum resident set size (KB) = 3306124 Test 012 cpld_mpi_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_ciceC_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_ciceC_p8_intel Checking test 013 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -888,14 +889,14 @@ Checking test 013 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 319.553156 -The maximum resident set size (KB) = 3026220 +The total amount of wall time = 320.816737 +The maximum resident set size (KB) = 3026524 Test 013 cpld_control_ciceC_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_c192_p8_intel Checking test 014 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -948,14 +949,14 @@ Checking test 014 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 508.832891 -The maximum resident set size (KB) = 3559536 +The total amount of wall time = 511.509138 +The maximum resident set size (KB) = 3556288 Test 014 cpld_control_c192_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_c192_p8_intel Checking test 015 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1008,14 +1009,14 @@ Checking test 015 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 323.877903 -The maximum resident set size (KB) = 3536268 +The total amount of wall time = 334.999139 +The maximum resident set size (KB) = 3537332 Test 015 cpld_restart_c192_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_s2sa_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1066,14 +1067,14 @@ Checking test 016 cpld_s2sa_p8_intel 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.198017 -The maximum resident set size (KB) = 2987920 +The total amount of wall time = 307.266937 +The maximum resident set size (KB) = 2987784 Test 016 cpld_s2sa_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1137,14 +1138,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.801712 -The maximum resident set size (KB) = 1599528 +The total amount of wall time = 251.869615 +The maximum resident set size (KB) = 1595728 Test 017 cpld_control_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_nowave_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1206,14 +1207,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 240.848414 -The maximum resident set size (KB) = 1645876 +The total amount of wall time = 243.222511 +The maximum resident set size (KB) = 1651452 Test 018 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_p8_intel Checking test 019 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1266,14 +1267,14 @@ Checking test 019 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 454.869628 -The maximum resident set size (KB) = 3073396 +The total amount of wall time = 461.147085 +The maximum resident set size (KB) = 3073360 Test 019 cpld_debug_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_noaero_p8_intel Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1325,14 +1326,14 @@ Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 304.092190 -The maximum resident set size (KB) = 1624084 +The total amount of wall time = 304.784212 +The maximum resident set size (KB) = 1620532 Test 020 cpld_debug_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_noaero_p8_agrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1394,14 +1395,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 240.399183 -The maximum resident set size (KB) = 1646744 +The total amount of wall time = 259.770185 +The maximum resident set size (KB) = 1643960 Test 021 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1451,14 +1452,14 @@ Checking test 022 cpld_control_c48_intel 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 = 384.185264 -The maximum resident set size (KB) = 2668144 +The total amount of wall time = 387.481417 +The maximum resident set size (KB) = 2665468 Test 022 cpld_control_c48_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1522,14 +1523,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 824.250906 -The maximum resident set size (KB) = 1628060 +The total amount of wall time = 827.911114 +The maximum resident set size (KB) = 1620544 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_restart_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1581,14 +1582,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 419.363585 -The maximum resident set size (KB) = 942240 +The total amount of wall time = 422.336948 +The maximum resident set size (KB) = 938692 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_mpi_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1652,14 +1653,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 944.041341 -The maximum resident set size (KB) = 1588408 +The total amount of wall time = 951.832758 +The maximum resident set size (KB) = 1585256 Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/cpld_debug_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1711,14 +1712,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1352.741685 -The maximum resident set size (KB) = 1640312 +The total amount of wall time = 1346.162608 +The maximum resident set size (KB) = 1632800 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_flake_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1729,14 +1730,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 194.608674 -The maximum resident set size (KB) = 596624 +The total amount of wall time = 195.262459 +The maximum resident set size (KB) = 596576 Test 027 control_flake_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_CubedSphereGrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1763,14 +1764,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 112.684448 -The maximum resident set size (KB) = 546336 +The total amount of wall time = 112.355510 +The maximum resident set size (KB) = 546188 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_CubedSphereGrid_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1786,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 118.253743 -The maximum resident set size (KB) = 551232 +The total amount of wall time = 117.481963 +The maximum resident set size (KB) = 549356 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_latlon_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1803,14 +1804,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.578136 -The maximum resident set size (KB) = 542420 +The total amount of wall time = 115.112998 +The maximum resident set size (KB) = 543332 Test 030 control_latlon_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1821,14 +1822,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.902854 -The maximum resident set size (KB) = 541368 +The total amount of wall time = 115.855770 +The maximum resident set size (KB) = 546444 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1867,14 +1868,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.652034 -The maximum resident set size (KB) = 728988 +The total amount of wall time = 308.896806 +The maximum resident set size (KB) = 729944 Test 032 control_c48_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c192_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1885,14 +1886,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 457.645577 -The maximum resident set size (KB) = 660860 +The total amount of wall time = 500.581723 +The maximum resident set size (KB) = 665752 Test 033 control_c192_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c384_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1903,14 +1904,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.974202 -The maximum resident set size (KB) = 983112 +The total amount of wall time = 476.096528 +The maximum resident set size (KB) = 986676 Test 034 control_c384_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_c384gdas_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1953,14 +1954,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.888922 -The maximum resident set size (KB) = 1126876 +The total amount of wall time = 423.301303 +The maximum resident set size (KB) = 1125112 Test 035 control_c384gdas_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1971,28 +1972,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 74.466307 -The maximum resident set size (KB) = 552848 +The total amount of wall time = 75.678926 +The maximum resident set size (KB) = 552640 Test 036 control_stochy_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_stochy_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 40.976142 -The maximum resident set size (KB) = 362048 +The total amount of wall time = 41.234423 +The maximum resident set size (KB) = 364196 Test 037 control_stochy_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2003,14 +2004,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 71.078323 -The maximum resident set size (KB) = 546840 +The total amount of wall time = 72.613323 +The maximum resident set size (KB) = 547756 Test 038 control_lndp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_iovr4_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2025,14 +2026,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.677347 -The maximum resident set size (KB) = 545844 +The total amount of wall time = 118.306658 +The maximum resident set size (KB) = 545500 Test 039 control_iovr4_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_iovr5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2047,14 +2048,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.807587 -The maximum resident set size (KB) = 546860 +The total amount of wall time = 114.768688 +The maximum resident set size (KB) = 548072 Test 040 control_iovr5_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2101,14 +2102,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 137.771187 -The maximum resident set size (KB) = 1522604 +The total amount of wall time = 140.824731 +The maximum resident set size (KB) = 1518752 Test 041 control_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_ugwpv1_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2155,14 +2156,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 137.902473 -The maximum resident set size (KB) = 1522568 +The total amount of wall time = 140.704627 +The maximum resident set size (KB) = 1520172 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_restart_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2201,14 +2202,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 74.547629 -The maximum resident set size (KB) = 722732 +The total amount of wall time = 75.009874 +The maximum resident set size (KB) = 715548 Test 043 control_restart_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_noqr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2255,14 +2256,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 139.046386 -The maximum resident set size (KB) = 1509816 +The total amount of wall time = 138.208180 +The maximum resident set size (KB) = 1507276 Test 044 control_noqr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_restart_noqr_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2301,14 +2302,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 72.760263 -The maximum resident set size (KB) = 723596 +The total amount of wall time = 74.221574 +The maximum resident set size (KB) = 724264 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_decomp_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2351,14 +2352,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.574153 -The maximum resident set size (KB) = 1513228 +The total amount of wall time = 143.588699 +The maximum resident set size (KB) = 1516408 Test 046 control_decomp_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_lndp_intel Checking test 047 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2377,14 +2378,14 @@ Checking test 047 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 251.801876 -The maximum resident set size (KB) = 1517444 +The total amount of wall time = 251.397830 +The maximum resident set size (KB) = 1528760 Test 047 control_p8_lndp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_rrtmgp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_rrtmgp_intel Checking test 048 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2431,14 +2432,14 @@ Checking test 048 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.733092 -The maximum resident set size (KB) = 1571372 +The total amount of wall time = 186.891160 +The maximum resident set size (KB) = 1578968 Test 048 control_p8_rrtmgp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_mynn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_mynn_intel Checking test 049 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2485,14 +2486,14 @@ Checking test 049 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 141.674198 -The maximum resident set size (KB) = 1529700 +The total amount of wall time = 141.957934 +The maximum resident set size (KB) = 1523564 Test 049 control_p8_mynn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/merra2_thompson_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/merra2_thompson_intel Checking test 050 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2539,14 +2540,14 @@ Checking test 050 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.055771 -The maximum resident set size (KB) = 1533164 +The total amount of wall time = 171.258072 +The maximum resident set size (KB) = 1521484 Test 050 merra2_thompson_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_control_intel Checking test 051 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2557,28 +2558,28 @@ Checking test 051 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 256.727461 -The maximum resident set size (KB) = 626844 +The total amount of wall time = 256.207332 +The maximum resident set size (KB) = 625216 Test 051 regional_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_restart_intel Checking test 052 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 137.181883 -The maximum resident set size (KB) = 796180 +The total amount of wall time = 139.013498 +The maximum resident set size (KB) = 796168 Test 052 regional_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_decomp_intel Checking test 053 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2589,14 +2590,14 @@ Checking test 053 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 269.860102 -The maximum resident set size (KB) = 625848 +The total amount of wall time = 269.260817 +The maximum resident set size (KB) = 626576 Test 053 regional_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_noquilt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_noquilt_intel Checking test 054 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2604,28 +2605,28 @@ Checking test 054 regional_noquilt_intel 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 = 254.517716 -The maximum resident set size (KB) = 1157716 +The total amount of wall time = 254.071609 +The maximum resident set size (KB) = 1152828 Test 054 regional_noquilt_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_netcdf_parallel_intel Checking test 055 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 254.851671 -The maximum resident set size (KB) = 619644 +The total amount of wall time = 255.889488 +The maximum resident set size (KB) = 620196 Test 055 regional_netcdf_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_2dwrtdecomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_2dwrtdecomp_intel Checking test 056 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2636,14 +2637,14 @@ Checking test 056 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 257.071410 -The maximum resident set size (KB) = 623076 +The total amount of wall time = 259.162776 +The maximum resident set size (KB) = 627336 Test 056 regional_2dwrtdecomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_wofs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_wofs_intel Checking test 057 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2654,14 +2655,14 @@ Checking test 057 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 325.053852 -The maximum resident set size (KB) = 1594140 +The total amount of wall time = 324.970533 +The maximum resident set size (KB) = 2427312 Test 057 regional_wofs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_intel Checking test 058 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2708,14 +2709,14 @@ Checking test 058 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 354.864580 -The maximum resident set size (KB) = 933848 +The total amount of wall time = 359.566126 +The maximum resident set size (KB) = 933132 Test 058 rap_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_spp_sppt_shum_skeb_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_spp_sppt_shum_skeb_intel Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2726,14 +2727,14 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 201.154277 -The maximum resident set size (KB) = 1116840 +The total amount of wall time = 204.465039 +The maximum resident set size (KB) = 1119296 Test 059 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_decomp_intel Checking test 060 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2780,14 +2781,14 @@ Checking test 060 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.159898 -The maximum resident set size (KB) = 930420 +The total amount of wall time = 372.940462 +The maximum resident set size (KB) = 930332 Test 060 rap_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2826,14 +2827,14 @@ Checking test 061 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.252509 -The maximum resident set size (KB) = 808412 +The total amount of wall time = 180.727229 +The maximum resident set size (KB) = 807604 Test 061 rap_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2880,14 +2881,14 @@ Checking test 062 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.442623 -The maximum resident set size (KB) = 933392 +The total amount of wall time = 356.234409 +The maximum resident set size (KB) = 931388 Test 062 rap_sfcdiff_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2934,14 +2935,14 @@ Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.288976 -The maximum resident set size (KB) = 930540 +The total amount of wall time = 370.767296 +The maximum resident set size (KB) = 934060 Test 063 rap_sfcdiff_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2980,14 +2981,14 @@ Checking test 064 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 262.810983 -The maximum resident set size (KB) = 810404 +The total amount of wall time = 263.920127 +The maximum resident set size (KB) = 811584 Test 064 rap_sfcdiff_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3034,14 +3035,14 @@ Checking test 065 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.568883 -The maximum resident set size (KB) = 929904 +The total amount of wall time = 181.487227 +The maximum resident set size (KB) = 927740 Test 065 hrrr_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_decomp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3088,14 +3089,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.162933 -The maximum resident set size (KB) = 927284 +The total amount of wall time = 187.507982 +The maximum resident set size (KB) = 928328 Test 066 hrrr_control_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_2threads_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3142,28 +3143,28 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.762019 -The maximum resident set size (KB) = 1012716 +The total amount of wall time = 159.470191 +The maximum resident set size (KB) = 1018260 Test 067 hrrr_control_2threads_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_restart_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.667963 -The maximum resident set size (KB) = 761152 +The total amount of wall time = 95.298687 +The maximum resident set size (KB) = 760228 Test 068 hrrr_control_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1beta_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1beta_intel Checking test 069 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3210,14 +3211,14 @@ Checking test 069 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 345.832235 -The maximum resident set size (KB) = 929492 +The total amount of wall time = 348.791056 +The maximum resident set size (KB) = 928128 Test 069 rrfs_v1beta_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1nssl_intel Checking test 070 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3232,14 +3233,14 @@ Checking test 070 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 434.303372 -The maximum resident set size (KB) = 1886836 +The total amount of wall time = 431.177792 +The maximum resident set size (KB) = 1887560 Test 070 rrfs_v1nssl_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1nssl_nohailnoccn_intel Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3254,14 +3255,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 415.678061 -The maximum resident set size (KB) = 1876648 +The total amount of wall time = 418.194264 +The maximum resident set size (KB) = 1875344 Test 071 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmg_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmg_intel Checking test 072 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3272,14 +3273,14 @@ Checking test 072 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 299.039228 -The maximum resident set size (KB) = 613940 +The total amount of wall time = 300.193596 +The maximum resident set size (KB) = 616988 Test 072 control_csawmg_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmgt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmgt_intel Checking test 073 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3290,14 +3291,14 @@ Checking test 073 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 295.459653 -The maximum resident set size (KB) = 618040 +The total amount of wall time = 296.358628 +The maximum resident set size (KB) = 615084 Test 073 control_csawmgt_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_ras_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_ras_intel Checking test 074 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3308,26 +3309,26 @@ Checking test 074 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 161.303661 -The maximum resident set size (KB) = 580660 +The total amount of wall time = 162.324854 +The maximum resident set size (KB) = 583196 Test 074 control_ras_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wam_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wam_intel Checking test 075 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 107.414009 -The maximum resident set size (KB) = 312012 +The total amount of wall time = 103.043433 +The maximum resident set size (KB) = 303492 Test 075 control_wam_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_faster_intel Checking test 076 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3374,14 +3375,14 @@ Checking test 076 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 130.900081 -The maximum resident set size (KB) = 1527852 +The total amount of wall time = 147.381340 +The maximum resident set size (KB) = 1516736 Test 076 control_p8_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_control_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_control_faster_intel Checking test 077 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3392,14 +3393,14 @@ Checking test 077 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 245.075280 -The maximum resident set size (KB) = 623808 +The total amount of wall time = 244.978013 +The maximum resident set size (KB) = 628104 Test 077 regional_control_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_CubedSphereGrid_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_debug_intel Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3426,364 +3427,364 @@ Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 139.543915 -The maximum resident set size (KB) = 720116 +The total amount of wall time = 144.941451 +The maximum resident set size (KB) = 717668 Test 078 control_CubedSphereGrid_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wrtGauss_netcdf_parallel_debug_intel Checking test 079 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 139.527607 -The maximum resident set size (KB) = 718560 +The total amount of wall time = 140.656568 +The maximum resident set size (KB) = 717840 Test 079 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_stochy_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_debug_intel Checking test 080 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.300731 -The maximum resident set size (KB) = 725748 +The total amount of wall time = 159.500244 +The maximum resident set size (KB) = 726256 Test 080 control_stochy_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_lndp_debug_intel Checking test 081 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.959238 -The maximum resident set size (KB) = 724384 +The total amount of wall time = 147.718855 +The maximum resident set size (KB) = 725612 Test 081 control_lndp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmg_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmg_debug_intel Checking test 082 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 221.769526 -The maximum resident set size (KB) = 767532 +The total amount of wall time = 228.345034 +The maximum resident set size (KB) = 760960 Test 082 control_csawmg_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_csawmgt_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmgt_debug_intel Checking test 083 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 220.683967 -The maximum resident set size (KB) = 766676 +The total amount of wall time = 223.626752 +The maximum resident set size (KB) = 760804 Test 083 control_csawmgt_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_ras_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_ras_debug_intel Checking test 084 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.841063 -The maximum resident set size (KB) = 729064 +The total amount of wall time = 144.474941 +The maximum resident set size (KB) = 732296 Test 084 control_ras_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_diag_debug_intel Checking test 085 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.924831 -The maximum resident set size (KB) = 781244 +The total amount of wall time = 146.591942 +The maximum resident set size (KB) = 777472 Test 085 control_diag_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_debug_p8_intel Checking test 086 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.507296 -The maximum resident set size (KB) = 1546384 +The total amount of wall time = 147.918817 +The maximum resident set size (KB) = 1552600 Test 086 control_debug_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_debug_intel Checking test 087 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 970.003304 -The maximum resident set size (KB) = 664284 +The total amount of wall time = 941.701750 +The maximum resident set size (KB) = 2427312 Test 087 regional_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_debug_intel Checking test 088 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.232215 -The maximum resident set size (KB) = 1105516 +The total amount of wall time = 265.637999 +The maximum resident set size (KB) = 1107432 Test 088 rap_control_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_debug_intel Checking test 089 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.149889 -The maximum resident set size (KB) = 1098728 +The total amount of wall time = 265.728716 +The maximum resident set size (KB) = 1098252 Test 089 hrrr_control_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_gf_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_gf_debug_intel Checking test 090 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.123380 -The maximum resident set size (KB) = 1105152 +The total amount of wall time = 303.033773 +The maximum resident set size (KB) = 1105408 Test 090 hrrr_gf_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_c3_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_c3_debug_intel Checking test 091 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.576536 -The maximum resident set size (KB) = 1109356 +The total amount of wall time = 270.096415 +The maximum resident set size (KB) = 1106272 Test 091 hrrr_c3_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_unified_drag_suite_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_unified_drag_suite_debug_intel Checking test 092 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.259748 -The maximum resident set size (KB) = 1105416 +The total amount of wall time = 275.891914 +The maximum resident set size (KB) = 1105624 Test 092 rap_unified_drag_suite_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_diag_debug_intel Checking test 093 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 278.912600 -The maximum resident set size (KB) = 1189972 +The total amount of wall time = 280.067575 +The maximum resident set size (KB) = 1189884 Test 093 rap_diag_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_cires_ugwp_debug_intel Checking test 094 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.833907 -The maximum resident set size (KB) = 1107424 +The total amount of wall time = 271.028202 +The maximum resident set size (KB) = 1106776 Test 094 rap_cires_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_unified_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_unified_ugwp_debug_intel Checking test 095 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.778137 -The maximum resident set size (KB) = 1108256 +The total amount of wall time = 273.399230 +The maximum resident set size (KB) = 1105908 Test 095 rap_unified_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_lndp_debug_intel Checking test 096 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 276.476121 -The maximum resident set size (KB) = 1105904 +The total amount of wall time = 279.495436 +The maximum resident set size (KB) = 1103608 Test 096 rap_lndp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_progcld_thompson_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_progcld_thompson_debug_intel Checking test 097 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.744208 -The maximum resident set size (KB) = 1106456 +The total amount of wall time = 267.768748 +The maximum resident set size (KB) = 1104816 Test 097 rap_progcld_thompson_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_noah_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_noah_debug_intel Checking test 098 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.612270 -The maximum resident set size (KB) = 1109008 +The total amount of wall time = 264.005637 +The maximum resident set size (KB) = 1099304 Test 098 rap_noah_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_sfcdiff_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_debug_intel Checking test 099 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 272.318791 -The maximum resident set size (KB) = 1106952 +The total amount of wall time = 267.166474 +The maximum resident set size (KB) = 1107884 Test 099 rap_sfcdiff_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 443.896598 -The maximum resident set size (KB) = 1104608 +The total amount of wall time = 437.636338 +The maximum resident set size (KB) = 1107040 Test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rrfs_v1beta_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1beta_debug_intel Checking test 101 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.479556 -The maximum resident set size (KB) = 1103536 +The total amount of wall time = 263.713819 +The maximum resident set size (KB) = 1099040 Test 101 rrfs_v1beta_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_clm_lake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_clm_lake_debug_intel Checking test 102 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.938946 -The maximum resident set size (KB) = 1108684 +The total amount of wall time = 320.271499 +The maximum resident set size (KB) = 1109552 Test 102 rap_clm_lake_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_flake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_flake_debug_intel Checking test 103 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.707961 -The maximum resident set size (KB) = 1106484 +The total amount of wall time = 269.030373 +The maximum resident set size (KB) = 1105040 Test 103 rap_flake_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/gnv1_c96_no_nest_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/gnv1_c96_no_nest_debug_intel Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3824,26 +3825,26 @@ Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 470.816449 -The maximum resident set size (KB) = 1110792 +The total amount of wall time = 462.521373 +The maximum resident set size (KB) = 1109892 Test 104 gnv1_c96_no_nest_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_wam_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wam_debug_intel Checking test 105 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 267.355255 -The maximum resident set size (KB) = 346976 +The total amount of wall time = 268.333218 +The maximum resident set size (KB) = 347068 -Test 105 control_wam_debug_intel PASS Tries: 2 +Test 105 control_wam_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3854,14 +3855,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 194.346314 -The maximum resident set size (KB) = 974956 +The total amount of wall time = 196.075294 +The maximum resident set size (KB) = 984168 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn32_phy32_intel Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3908,14 +3909,14 @@ Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 296.405120 -The maximum resident set size (KB) = 807308 +The total amount of wall time = 297.241617 +The maximum resident set size (KB) = 805572 Test 107 rap_control_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_dyn32_phy32_intel Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3962,14 +3963,14 @@ Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.646564 -The maximum resident set size (KB) = 803424 +The total amount of wall time = 157.387367 +The maximum resident set size (KB) = 803684 Test 108 hrrr_control_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_decomp_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_decomp_dyn32_phy32_intel Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4016,14 +4017,14 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.305470 -The maximum resident set size (KB) = 806840 +The total amount of wall time = 163.978148 +The maximum resident set size (KB) = 805256 Test 109 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_restart_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_restart_dyn32_phy32_intel Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4062,28 +4063,28 @@ Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 220.437707 -The maximum resident set size (KB) = 718784 +The total amount of wall time = 221.697764 +The maximum resident set size (KB) = 711800 Test 110 rap_restart_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_restart_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_restart_dyn32_phy32_intel Checking test 111 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 81.537230 -The maximum resident set size (KB) = 700820 +The total amount of wall time = 81.099063 +The maximum resident set size (KB) = 700068 Test 111 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4099,40 +4100,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 103.279727 -The maximum resident set size (KB) = 1011460 +The total amount of wall time = 104.852111 +The maximum resident set size (KB) = 1011020 Test 112 conus13km_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_2threads_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 42.033378 -The maximum resident set size (KB) = 1009516 +The total amount of wall time = 43.528727 +The maximum resident set size (KB) = 1010460 Test 113 conus13km_2threads_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_restart_mismatch_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 56.474443 -The maximum resident set size (KB) = 901364 +The total amount of wall time = 56.923496 +The maximum resident set size (KB) = 901856 Test 114 conus13km_restart_mismatch_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4179,42 +4180,42 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.665489 -The maximum resident set size (KB) = 834060 +The total amount of wall time = 207.952871 +The maximum resident set size (KB) = 835676 Test 115 rap_control_dyn64_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.672898 -The maximum resident set size (KB) = 980712 +The total amount of wall time = 294.300725 +The maximum resident set size (KB) = 983540 Test 116 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.731580 -The maximum resident set size (KB) = 977452 +The total amount of wall time = 262.469144 +The maximum resident set size (KB) = 975988 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4228,67 +4229,67 @@ Checking test 118 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 809.944601 -The maximum resident set size (KB) = 1059812 +The total amount of wall time = 799.559745 +The maximum resident set size (KB) = 1055804 Test 118 conus13km_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/conus13km_radar_tten_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_radar_tten_debug_intel Checking test 119 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 804.747236 -The maximum resident set size (KB) = 1124832 +The total amount of wall time = 823.875938 +The maximum resident set size (KB) = 1122000 Test 119 conus13km_radar_tten_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/rap_control_dyn64_phy32_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn64_phy32_debug_intel Checking test 120 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.947905 -The maximum resident set size (KB) = 1009856 +The total amount of wall time = 271.748808 +The maximum resident set size (KB) = 1009240 Test 120 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_intel Checking test 121 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 252.467901 -The maximum resident set size (KB) = 640124 +The total amount of wall time = 259.838092 +The maximum resident set size (KB) = 646392 Test 121 hafs_regional_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_thompson_gfdlsf_intel Checking test 122 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 293.220185 -The maximum resident set size (KB) = 991092 +The total amount of wall time = 299.794954 +The maximum resident set size (KB) = 991016 Test 122 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_ocn_intel Checking test 123 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4297,14 +4298,14 @@ Checking test 123 hafs_regional_atm_ocn_intel 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 = 364.890191 -The maximum resident set size (KB) = 703844 +The total amount of wall time = 368.428638 +The maximum resident set size (KB) = 701840 Test 123 hafs_regional_atm_ocn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_wav_intel Checking test 124 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4313,14 +4314,14 @@ Checking test 124 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 640.530692 -The maximum resident set size (KB) = 720248 +The total amount of wall time = 635.669980 +The maximum resident set size (KB) = 720464 Test 124 hafs_regional_atm_wav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_ocn_wav_intel Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4331,14 +4332,14 @@ Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 711.628107 -The maximum resident set size (KB) = 732684 +The total amount of wall time = 713.697314 +The maximum resident set size (KB) = 737096 Test 125 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_1nest_atm_intel Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4360,14 +4361,14 @@ Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 260.928842 -The maximum resident set size (KB) = 403500 +The total amount of wall time = 263.195096 +The maximum resident set size (KB) = 408132 Test 126 hafs_regional_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4376,14 +4377,14 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 328.516149 -The maximum resident set size (KB) = 420888 +The total amount of wall time = 329.482490 +The maximum resident set size (KB) = 418480 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_global_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4430,14 +4431,14 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 122.724575 -The maximum resident set size (KB) = 316256 +The total amount of wall time = 123.644163 +The maximum resident set size (KB) = 317624 Test 128 hafs_global_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_global_multiple_4nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_multiple_4nests_atm_intel Checking test 129 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4519,14 +4520,14 @@ Checking test 129 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 358.365118 -The maximum resident set size (KB) = 383324 +The total amount of wall time = 373.974645 +The maximum resident set size (KB) = 384156 Test 129 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_specified_moving_1nest_atm_intel Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4535,14 +4536,14 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 182.116077 -The maximum resident set size (KB) = 441276 +The total amount of wall time = 184.431722 +The maximum resident set size (KB) = 435908 Test 130 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_intel Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4564,14 +4565,14 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 168.805739 -The maximum resident set size (KB) = 440948 +The total amount of wall time = 171.514979 +The maximum resident set size (KB) = 434536 Test 131 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4580,28 +4581,28 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 208.925198 -The maximum resident set size (KB) = 511296 +The total amount of wall time = 215.334237 +The maximum resident set size (KB) = 513360 Test 132 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_storm_following_1nest_atm_intel Checking test 133 hafs_global_storm_following_1nest_atm_intel 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 = 57.676650 -The maximum resident set size (KB) = 354008 +The total amount of wall time = 57.772937 +The maximum resident set size (KB) = 351404 Test 133 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/gnv1_nested_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/gnv1_nested_intel Checking test 134 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4648,28 +4649,28 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 182.397919 -The maximum resident set size (KB) = 709272 +The total amount of wall time = 186.845171 +The maximum resident set size (KB) = 709252 Test 134 gnv1_nested_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 700.162935 -The maximum resident set size (KB) = 539960 +The total amount of wall time = 725.891285 +The maximum resident set size (KB) = 535936 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4680,162 +4681,197 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 405.734831 -The maximum resident set size (KB) = 556592 +The total amount of wall time = 410.498619 +The maximum resident set size (KB) = 554476 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc ............MISSING baseline + Comparing sfcf006.nc ............MISSING baseline + Comparing atm.nest02.f006.nc ............MISSING baseline + Comparing sfc.nest02.f006.nc ............MISSING baseline + Comparing archv.2020_238_18.a ............MISSING baseline + Comparing archs.2020_238_18.a ............MISSING baseline + Comparing 20200825.180000.out_grd.ww3 ............MISSING baseline + Comparing 20200825.180000.out_pnt.ww3 ............MISSING baseline + +The total amount of wall time = 420.212987 +The maximum resident set size (KB) = 607660 + +Test 137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel FAIL Tries: 2 + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc ............MISSING baseline + Comparing sfcf003.nc ............MISSING baseline + Comparing atm.nest02.f003.nc ............MISSING baseline + Comparing sfc.nest02.f003.nc ............MISSING baseline + Comparing ocn_2020_08_25_15.nc ............MISSING baseline + Comparing 20200825.150000.out_grd.ww3 ............MISSING baseline + Comparing 20200825.150000.out_pnt.ww3 ............MISSING baseline + +The total amount of wall time = 305.265444 +The maximum resident set size (KB) = 626904 + +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 + + baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_docn_intel -Checking test 137 hafs_regional_docn_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_docn_intel +Checking test 139 hafs_regional_docn_intel 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 -The total amount of wall time = 313.690811 -The maximum resident set size (KB) = 671688 +The total amount of wall time = 320.055312 +The maximum resident set size (KB) = 673124 -Test 137 hafs_regional_docn_intel PASS +Test 139 hafs_regional_docn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_docn_oisst_intel -Checking test 138 hafs_regional_docn_oisst_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_docn_oisst_intel +Checking test 140 hafs_regional_docn_oisst_intel 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 -The total amount of wall time = 316.909174 -The maximum resident set size (KB) = 658180 +The total amount of wall time = 332.730876 +The maximum resident set size (KB) = 658096 -Test 138 hafs_regional_docn_oisst_intel PASS +Test 140 hafs_regional_docn_oisst_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/hafs_regional_datm_cdeps_intel -Checking test 139 hafs_regional_datm_cdeps_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_datm_cdeps_intel +Checking test 141 hafs_regional_datm_cdeps_intel 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 = 959.146786 -The maximum resident set size (KB) = 895948 +The total amount of wall time = 958.544446 +The maximum resident set size (KB) = 892708 -Test 139 hafs_regional_datm_cdeps_intel PASS +Test 141 hafs_regional_datm_cdeps_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_control_cfsr_intel -Checking test 140 datm_cdeps_control_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_cfsr_intel +Checking test 142 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.793127 -The maximum resident set size (KB) = 755476 +The total amount of wall time = 140.108802 +The maximum resident set size (KB) = 762376 -Test 140 datm_cdeps_control_cfsr_intel PASS +Test 142 datm_cdeps_control_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_restart_cfsr_intel -Checking test 141 datm_cdeps_restart_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_restart_cfsr_intel +Checking test 143 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 83.304982 -The maximum resident set size (KB) = 744244 +The total amount of wall time = 84.484693 +The maximum resident set size (KB) = 750308 -Test 141 datm_cdeps_restart_cfsr_intel PASS +Test 143 datm_cdeps_restart_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_control_gefs_intel -Checking test 142 datm_cdeps_control_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_gefs_intel +Checking test 144 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.873242 -The maximum resident set size (KB) = 645532 +The total amount of wall time = 132.621450 +The maximum resident set size (KB) = 640276 -Test 142 datm_cdeps_control_gefs_intel PASS +Test 144 datm_cdeps_control_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_iau_gefs_intel -Checking test 143 datm_cdeps_iau_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_iau_gefs_intel +Checking test 145 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.058726 -The maximum resident set size (KB) = 635368 +The total amount of wall time = 136.822968 +The maximum resident set size (KB) = 639768 -Test 143 datm_cdeps_iau_gefs_intel PASS +Test 145 datm_cdeps_iau_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_stochy_gefs_intel -Checking test 144 datm_cdeps_stochy_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_stochy_gefs_intel +Checking test 146 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.572345 -The maximum resident set size (KB) = 634464 +The total amount of wall time = 134.538905 +The maximum resident set size (KB) = 638300 -Test 144 datm_cdeps_stochy_gefs_intel PASS +Test 146 datm_cdeps_stochy_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_ciceC_cfsr_intel -Checking test 145 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_ciceC_cfsr_intel +Checking test 147 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.134165 -The maximum resident set size (KB) = 744712 +The total amount of wall time = 140.201293 +The maximum resident set size (KB) = 760920 -Test 145 datm_cdeps_ciceC_cfsr_intel PASS +Test 147 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_bulk_cfsr_intel -Checking test 146 datm_cdeps_bulk_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_bulk_cfsr_intel +Checking test 148 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.572505 -The maximum resident set size (KB) = 744384 +The total amount of wall time = 141.716254 +The maximum resident set size (KB) = 760400 -Test 146 datm_cdeps_bulk_cfsr_intel PASS +Test 148 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_bulk_gefs_intel -Checking test 147 datm_cdeps_bulk_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_bulk_gefs_intel +Checking test 149 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.974994 -The maximum resident set size (KB) = 633384 +The total amount of wall time = 133.952270 +The maximum resident set size (KB) = 639816 -Test 147 datm_cdeps_bulk_gefs_intel PASS +Test 149 datm_cdeps_bulk_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_mx025_cfsr_intel -Checking test 148 datm_cdeps_mx025_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_mx025_cfsr_intel +Checking test 150 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4843,15 +4879,15 @@ Checking test 148 datm_cdeps_mx025_cfsr_intel 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 = 327.628096 -The maximum resident set size (KB) = 612676 +The total amount of wall time = 325.121134 +The maximum resident set size (KB) = 614464 -Test 148 datm_cdeps_mx025_cfsr_intel PASS +Test 150 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_mx025_gefs_intel -Checking test 149 datm_cdeps_mx025_gefs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_mx025_gefs_intel +Checking test 151 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4859,78 +4895,78 @@ Checking test 149 datm_cdeps_mx025_gefs_intel 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 = 320.838181 -The maximum resident set size (KB) = 594540 +The total amount of wall time = 326.557640 +The maximum resident set size (KB) = 597336 -Test 149 datm_cdeps_mx025_gefs_intel PASS +Test 151 datm_cdeps_mx025_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_multiple_files_cfsr_intel -Checking test 150 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_multiple_files_cfsr_intel +Checking test 152 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.010220 -The maximum resident set size (KB) = 756024 +The total amount of wall time = 141.556039 +The maximum resident set size (KB) = 760424 -Test 150 datm_cdeps_multiple_files_cfsr_intel PASS +Test 152 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_3072x1536_cfsr_intel -Checking test 151 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_3072x1536_cfsr_intel +Checking test 153 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 225.074038 -The maximum resident set size (KB) = 1941632 +The total amount of wall time = 224.806130 +The maximum resident set size (KB) = 2020568 -Test 151 datm_cdeps_3072x1536_cfsr_intel PASS +Test 153 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_gfs_intel -Checking test 152 datm_cdeps_gfs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_gfs_intel +Checking test 154 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 228.015404 -The maximum resident set size (KB) = 2004944 +The total amount of wall time = 226.368857 +The maximum resident set size (KB) = 1950832 -Test 152 datm_cdeps_gfs_intel PASS +Test 154 datm_cdeps_gfs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_debug_cfsr_intel -Checking test 153 datm_cdeps_debug_cfsr_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_debug_cfsr_intel +Checking test 155 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 290.792637 -The maximum resident set size (KB) = 749332 +The total amount of wall time = 297.154718 +The maximum resident set size (KB) = 748232 -Test 153 datm_cdeps_debug_cfsr_intel PASS +Test 155 datm_cdeps_debug_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_control_cfsr_faster_intel -Checking test 154 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_cfsr_faster_intel +Checking test 156 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.454918 -The maximum resident set size (KB) = 743484 +The total amount of wall time = 139.891152 +The maximum resident set size (KB) = 759952 -Test 154 datm_cdeps_control_cfsr_faster_intel PASS +Test 156 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_lnd_gswp3_intel -Checking test 155 datm_cdeps_lnd_gswp3_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_gswp3_intel +Checking test 157 datm_cdeps_lnd_gswp3_intel 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 @@ -4938,15 +4974,15 @@ Checking test 155 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 55.881696 -The maximum resident set size (KB) = 227364 +The total amount of wall time = 57.470842 +The maximum resident set size (KB) = 238636 -Test 155 datm_cdeps_lnd_gswp3_intel PASS +Test 157 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_lnd_era5_intel -Checking test 156 datm_cdeps_lnd_era5_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_era5_intel +Checking test 158 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4954,15 +4990,15 @@ Checking test 156 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 52.176574 -The maximum resident set size (KB) = 379708 +The total amount of wall time = 52.407819 +The maximum resident set size (KB) = 377616 -Test 156 datm_cdeps_lnd_era5_intel PASS +Test 158 datm_cdeps_lnd_era5_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/datm_cdeps_lnd_era5_rst_intel -Checking test 157 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_era5_rst_intel +Checking test 159 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4970,15 +5006,15 @@ Checking test 157 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 29.311487 -The maximum resident set size (KB) = 380388 +The total amount of wall time = 31.965341 +The maximum resident set size (KB) = 376088 -Test 157 datm_cdeps_lnd_era5_rst_intel PASS +Test 159 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_atmlnd_sbs_intel -Checking test 158 control_p8_atmlnd_sbs_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_atmlnd_sbs_intel +Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5066,15 +5102,15 @@ Checking test 158 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 385.572146 -The maximum resident set size (KB) = 1556476 +The total amount of wall time = 377.363622 +The maximum resident set size (KB) = 1552628 -Test 158 control_p8_atmlnd_sbs_intel PASS +Test 160 control_p8_atmlnd_sbs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_p8_atmlnd_intel -Checking test 159 control_p8_atmlnd_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_atmlnd_intel +Checking test 161 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5162,15 +5198,15 @@ Checking test 159 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 374.809199 -The maximum resident set size (KB) = 1556084 +The total amount of wall time = 378.515773 +The maximum resident set size (KB) = 1556588 -Test 159 control_p8_atmlnd_intel PASS +Test 161 control_p8_atmlnd_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_restart_p8_atmlnd_intel -Checking test 160 control_restart_p8_atmlnd_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_p8_atmlnd_intel +Checking test 162 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5190,15 +5226,15 @@ Checking test 160 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 181.928940 -The maximum resident set size (KB) = 773120 +The total amount of wall time = 192.617151 +The maximum resident set size (KB) = 771992 -Test 160 control_restart_p8_atmlnd_intel PASS +Test 162 control_restart_p8_atmlnd_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmwav_control_noaero_p8_intel -Checking test 161 atmwav_control_noaero_p8_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmwav_control_noaero_p8_intel +Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5240,15 +5276,15 @@ Checking test 161 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 81.555574 -The maximum resident set size (KB) = 1556256 +The total amount of wall time = 81.496164 +The maximum resident set size (KB) = 1555864 -Test 161 atmwav_control_noaero_p8_intel PASS +Test 163 atmwav_control_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/control_atmwav_intel -Checking test 162 control_atmwav_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_atmwav_intel +Checking test 164 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5291,15 +5327,15 @@ Checking test 162 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 76.884525 -The maximum resident set size (KB) = 562600 +The total amount of wall time = 77.763536 +The maximum resident set size (KB) = 561332 -Test 162 control_atmwav_intel PASS +Test 164 control_atmwav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmaero_control_p8_intel -Checking test 163 atmaero_control_p8_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_intel +Checking test 165 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5342,15 +5378,15 @@ Checking test 163 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 203.526372 -The maximum resident set size (KB) = 2872004 +The total amount of wall time = 205.597610 +The maximum resident set size (KB) = 2874468 -Test 163 atmaero_control_p8_intel PASS +Test 165 atmaero_control_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmaero_control_p8_rad_intel -Checking test 164 atmaero_control_p8_rad_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_rad_intel +Checking test 166 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5393,15 +5429,15 @@ Checking test 164 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 243.853868 -The maximum resident set size (KB) = 2924700 +The total amount of wall time = 246.914829 +The maximum resident set size (KB) = 2923992 -Test 164 atmaero_control_p8_rad_intel PASS +Test 166 atmaero_control_p8_rad_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_103860/atmaero_control_p8_rad_micro_intel -Checking test 165 atmaero_control_p8_rad_micro_intel results .... +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_rad_micro_intel +Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5444,12 +5480,75 @@ Checking test 165 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.637355 -The maximum resident set size (KB) = 2938548 +The total amount of wall time = 258.277978 +The maximum resident set size (KB) = 2936484 + +Test 167 atmaero_control_p8_rad_micro_intel PASS + +FAILED TESTS: +137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 137 failed in run_test +138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 138 failed in run_test + +REGRESSION TEST FAILED +Thu 01 Feb 2024 10:39:24 PM MST +Elapsed time: 01h:37m:15s. Have a nice day! +Fri 02 Feb 2024 07:59:35 AM MST +Start Regression test + +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 960 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 1118 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_67611/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + +The total amount of wall time = 305.403287 +The maximum resident set size (KB) = 626016 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_67611/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 419.472716 +The maximum resident set size (KB) = 608572 -Test 165 atmaero_control_p8_rad_micro_intel PASS +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed 31 Jan 2024 01:51:34 PM MST -Elapsed time: 02h:29m:54s. Have a nice day! +Fri 02 Feb 2024 08:29:24 AM MST +Elapsed time: 00h:29m:49s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index bac8bf5a24..3ee4b7f125 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,75 +1,76 @@ -Wed Jan 31 18:09:13 UTC 2024 +Mon Feb 5 16:04:55 UTC 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g7437f73) + c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 261 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_debug_dyn32_intel elapsed time 268 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile atm_dyn32_debug_gnu elapsed time 202 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 197 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 303 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 557 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 200 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 628 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 570 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 563 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 172 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 354 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 833 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 354 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 56 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 206 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 613 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 606 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 661 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 607 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 827 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 590 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_dyn32_intel elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 214 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 212 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 299 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 547 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 548 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 591 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 591 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 353 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 807 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 372 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 578 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 626 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 203 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 617 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 612 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 653 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 814 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 593 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_debug_intel elapsed time 228 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 655 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 126 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 236 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 881 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 667 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 250 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 953 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 137 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 969 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 826 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 675 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu 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 wam_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2sw_intel elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 129 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 841 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 910 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 684 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 935 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 950 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 835 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 681 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -134,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.404145 - 0: The maximum resident set size (KB) = 3165168 + 0: The total amount of wall time = 304.958031 + 0: The maximum resident set size (KB) = 3148040 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -205,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 958.849040 - 0: The maximum resident set size (KB) = 1737316 + 0: The total amount of wall time = 955.431620 + 0: The maximum resident set size (KB) = 1738216 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -258,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1000.393895 - 0: The maximum resident set size (KB) = 2010992 + 0: The total amount of wall time = 997.624771 + 0: The maximum resident set size (KB) = 2008572 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -318,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.113380 - 0: The maximum resident set size (KB) = 1111960 + 0: The total amount of wall time = 446.245137 + 0: The maximum resident set size (KB) = 1111460 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_mpi_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1083.599189 - 0: The maximum resident set size (KB) = 1630040 + 0: The total amount of wall time = 1089.550810 + 0: The maximum resident set size (KB) = 1586264 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -448,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1318.209369 - 0: The maximum resident set size (KB) = 1674928 + 0: The total amount of wall time = 1334.036282 + 0: The maximum resident set size (KB) = 1654620 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -520,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.419385 - 0: The maximum resident set size (KB) = 3193912 + 0: The total amount of wall time = 329.798029 + 0: The maximum resident set size (KB) = 3151272 Test 007 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -580,14 +581,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 185.838568 - 0: The maximum resident set size (KB) = 3256396 + 0: The total amount of wall time = 186.711328 + 0: The maximum resident set size (KB) = 3243344 Test 008 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -652,14 +653,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.699620 - 0: The maximum resident set size (KB) = 3218064 + 0: The total amount of wall time = 330.090815 + 0: The maximum resident set size (KB) = 3201132 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -712,14 +713,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 189.631562 - 0: The maximum resident set size (KB) = 3258700 + 0: The total amount of wall time = 190.782271 + 0: The maximum resident set size (KB) = 3244492 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -772,14 +773,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 314.360731 - 0: The maximum resident set size (KB) = 3533168 + 0: The total amount of wall time = 312.343453 + 0: The maximum resident set size (KB) = 3541188 Test 011 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -832,14 +833,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.358645 - 0: The maximum resident set size (KB) = 3190708 + 0: The total amount of wall time = 326.672786 + 0: The maximum resident set size (KB) = 3166428 Test 012 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -892,14 +893,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.184247 - 0: The maximum resident set size (KB) = 3050880 + 0: The total amount of wall time = 267.054668 + 0: The maximum resident set size (KB) = 3068836 Test 013 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -964,14 +965,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.568195 - 0: The maximum resident set size (KB) = 3200920 + 0: The total amount of wall time = 329.408685 + 0: The maximum resident set size (KB) = 3142256 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1024,14 +1025,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 571.455811 - 0: The maximum resident set size (KB) = 3317264 + 0: The total amount of wall time = 563.472471 + 0: The maximum resident set size (KB) = 3317316 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1084,14 +1085,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 344.415303 - 0: The maximum resident set size (KB) = 3600668 + 0: The total amount of wall time = 353.027886 + 0: The maximum resident set size (KB) = 3602412 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1139,14 +1140,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 554.099603 - 0: The maximum resident set size (KB) = 4125644 + 0: The total amount of wall time = 565.328478 + 0: The maximum resident set size (KB) = 4095312 Test 017 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1194,14 +1195,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.574622 - 0: The maximum resident set size (KB) = 4295196 + 0: The total amount of wall time = 367.552647 + 0: The maximum resident set size (KB) = 4347368 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1252,14 +1253,14 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 308.308039 - 0: The maximum resident set size (KB) = 3166596 + 0: The total amount of wall time = 310.281736 + 0: The maximum resident set size (KB) = 3167196 Test 019 cpld_s2sa_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1324,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.247116 - 0: The maximum resident set size (KB) = 1714400 + 0: The total amount of wall time = 260.032818 + 0: The maximum resident set size (KB) = 1721280 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1393,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel 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 = 256.169386 - 0: The maximum resident set size (KB) = 1780784 + 0: The total amount of wall time = 248.111130 + 0: The maximum resident set size (KB) = 1784584 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1452,14 +1453,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.014218 - 0: The maximum resident set size (KB) = 3237756 + 0: The total amount of wall time = 480.623149 + 0: The maximum resident set size (KB) = 3163368 Test 022 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1512,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.859988 - 0: The maximum resident set size (KB) = 1747868 + 0: The total amount of wall time = 321.157299 + 0: The maximum resident set size (KB) = 1745732 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1580,14 +1581,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 252.052148 - 0: The maximum resident set size (KB) = 1751216 + 0: The total amount of wall time = 253.266479 + 0: The maximum resident set size (KB) = 1752152 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1637,14 +1638,14 @@ Checking test 025 cpld_control_c48_intel 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 = 554.642268 - 0: The maximum resident set size (KB) = 2824928 + 0: The total amount of wall time = 549.377525 + 0: The maximum resident set size (KB) = 2820136 Test 025 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1709,14 +1710,14 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.437789 - 0: The maximum resident set size (KB) = 3191804 + 0: The total amount of wall time = 302.367293 + 0: The maximum resident set size (KB) = 3183668 Test 026 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1780,14 +1781,14 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 956.899819 - 0: The maximum resident set size (KB) = 1763832 + 0: The total amount of wall time = 957.678608 + 0: The maximum resident set size (KB) = 1767412 Test 027 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1839,14 +1840,14 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 447.684473 - 0: The maximum resident set size (KB) = 1140984 + 0: The total amount of wall time = 448.337796 + 0: The maximum resident set size (KB) = 1170792 Test 028 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1910,14 +1911,14 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1106.794430 - 0: The maximum resident set size (KB) = 1669996 + 0: The total amount of wall time = 1112.112896 + 0: The maximum resident set size (KB) = 1664264 Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1969,14 +1970,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1477.550707 - 0: The maximum resident set size (KB) = 1703060 + 0: The total amount of wall time = 1475.168538 + 0: The maximum resident set size (KB) = 1682320 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1987,14 +1988,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.797345 - 0: The maximum resident set size (KB) = 697036 + 0: The total amount of wall time = 186.564318 + 0: The maximum resident set size (KB) = 691836 Test 031 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2021,14 +2022,14 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.409668 - 0: The maximum resident set size (KB) = 648128 + 0: The total amount of wall time = 132.434186 + 0: The maximum resident set size (KB) = 648948 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2037,20 +2038,20 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.229656 - 0: The maximum resident set size (KB) = 653224 + 0: The total amount of wall time = 139.019033 + 0: The maximum resident set size (KB) = 650892 Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2061,14 +2062,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.187899 - 0: The maximum resident set size (KB) = 647796 + 0: The total amount of wall time = 133.921573 + 0: The maximum resident set size (KB) = 651208 Test 034 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2079,14 +2080,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.058656 - 0: The maximum resident set size (KB) = 652532 + 0: The total amount of wall time = 135.853768 + 0: The maximum resident set size (KB) = 647976 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2125,14 +2126,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 365.861446 -0: The maximum resident set size (KB) = 870712 +0: The total amount of wall time = 370.171422 +0: The maximum resident set size (KB) = 875760 Test 036 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2143,14 +2144,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.425867 - 0: The maximum resident set size (KB) = 852632 + 0: The total amount of wall time = 531.188263 + 0: The maximum resident set size (KB) = 860000 Test 037 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2161,14 +2162,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 528.364147 - 0: The maximum resident set size (KB) = 1276832 + 0: The total amount of wall time = 521.490635 + 0: The maximum resident set size (KB) = 1284008 Test 038 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2199,26 +2200,26 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.704258 - 0: The maximum resident set size (KB) = 1389984 + 0: The total amount of wall time = 456.713903 + 0: The maximum resident set size (KB) = 1388896 Test 039 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2229,28 +2230,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.570660 - 0: The maximum resident set size (KB) = 638424 + 0: The total amount of wall time = 86.515053 + 0: The maximum resident set size (KB) = 656988 Test 040 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.396437 - 0: The maximum resident set size (KB) = 502068 + 0: The total amount of wall time = 49.034081 + 0: The maximum resident set size (KB) = 471556 Test 041 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2261,14 +2262,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.922938 - 0: The maximum resident set size (KB) = 652896 + 0: The total amount of wall time = 82.775552 + 0: The maximum resident set size (KB) = 653396 Test 042 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2283,14 +2284,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.009865 - 0: The maximum resident set size (KB) = 645280 + 0: The total amount of wall time = 133.880731 + 0: The maximum resident set size (KB) = 649592 Test 043 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2305,14 +2306,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.462718 - 0: The maximum resident set size (KB) = 651388 + 0: The total amount of wall time = 135.325399 + 0: The maximum resident set size (KB) = 617020 Test 044 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2359,14 +2360,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.390428 - 0: The maximum resident set size (KB) = 1613988 + 0: The total amount of wall time = 166.929762 + 0: The maximum resident set size (KB) = 1611560 Test 045 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2413,14 +2414,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.480056 - 0: The maximum resident set size (KB) = 1618396 + 0: The total amount of wall time = 158.153790 + 0: The maximum resident set size (KB) = 1613832 Test 046 control_p8_ugwpv1_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2459,14 +2460,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.645215 - 0: The maximum resident set size (KB) = 882108 + 0: The total amount of wall time = 85.338491 + 0: The maximum resident set size (KB) = 879156 Test 047 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2513,14 +2514,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.143932 - 0: The maximum resident set size (KB) = 1606308 + 0: The total amount of wall time = 160.672369 + 0: The maximum resident set size (KB) = 1606940 Test 048 control_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_restart_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2559,14 +2560,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.072075 - 0: The maximum resident set size (KB) = 923876 + 0: The total amount of wall time = 83.782264 + 0: The maximum resident set size (KB) = 927032 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2609,14 +2610,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.807563 - 0: The maximum resident set size (KB) = 1596612 + 0: The total amount of wall time = 167.457721 + 0: The maximum resident set size (KB) = 1599916 Test 050 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2659,14 +2660,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.433139 - 0: The maximum resident set size (KB) = 1707212 + 0: The total amount of wall time = 153.691908 + 0: The maximum resident set size (KB) = 1702480 Test 051 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2685,14 +2686,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 301.462017 - 0: The maximum resident set size (KB) = 1605080 + 0: The total amount of wall time = 299.780170 + 0: The maximum resident set size (KB) = 1615356 Test 052 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2739,14 +2740,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.713606 - 0: The maximum resident set size (KB) = 1672980 + 0: The total amount of wall time = 219.171961 + 0: The maximum resident set size (KB) = 1669132 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2793,14 +2794,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.284448 - 0: The maximum resident set size (KB) = 1617280 + 0: The total amount of wall time = 166.545934 + 0: The maximum resident set size (KB) = 1601396 Test 054 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2847,14 +2848,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.796969 - 0: The maximum resident set size (KB) = 1628252 + 0: The total amount of wall time = 196.367246 + 0: The maximum resident set size (KB) = 1627884 Test 055 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2865,28 +2866,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.292528 - 0: The maximum resident set size (KB) = 846428 + 0: The total amount of wall time = 295.314872 + 0: The maximum resident set size (KB) = 846860 Test 056 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.353315 - 0: The maximum resident set size (KB) = 1015964 + 0: The total amount of wall time = 152.697021 + 0: The maximum resident set size (KB) = 1016532 Test 057 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2897,14 +2898,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.285063 - 0: The maximum resident set size (KB) = 840548 + 0: The total amount of wall time = 312.239390 + 0: The maximum resident set size (KB) = 845020 Test 058 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2915,14 +2916,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.309693 - 0: The maximum resident set size (KB) = 849252 + 0: The total amount of wall time = 178.116210 + 0: The maximum resident set size (KB) = 840464 Test 059 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2930,28 +2931,28 @@ Checking test 060 regional_noquilt_intel 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 = 291.425492 - 0: The maximum resident set size (KB) = 1360852 + 0: The total amount of wall time = 294.072479 + 0: The maximum resident set size (KB) = 1346948 Test 060 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.876970 - 0: The maximum resident set size (KB) = 845012 + 0: The total amount of wall time = 294.791905 + 0: The maximum resident set size (KB) = 851064 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2962,14 +2963,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.505558 - 0: The maximum resident set size (KB) = 847248 + 0: The total amount of wall time = 295.810635 + 0: The maximum resident set size (KB) = 830596 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2980,14 +2981,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 383.682233 - 0: The maximum resident set size (KB) = 1916716 + 0: The total amount of wall time = 385.345857 + 0: The maximum resident set size (KB) = 1899764 Test 063 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3034,14 +3035,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.201069 - 0: The maximum resident set size (KB) = 1094392 + 0: The total amount of wall time = 450.366977 + 0: The maximum resident set size (KB) = 1094784 Test 064 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3052,14 +3053,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.413508 - 0: The maximum resident set size (KB) = 1280936 + 0: The total amount of wall time = 233.626909 + 0: The maximum resident set size (KB) = 1289184 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3106,14 +3107,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 473.997068 - 0: The maximum resident set size (KB) = 1023624 + 0: The total amount of wall time = 468.620618 + 0: The maximum resident set size (KB) = 1031984 Test 066 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3160,14 +3161,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 423.411177 - 0: The maximum resident set size (KB) = 1176864 + 0: The total amount of wall time = 420.826714 + 0: The maximum resident set size (KB) = 1182268 Test 067 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3206,14 +3207,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.270326 - 0: The maximum resident set size (KB) = 1079488 + 0: The total amount of wall time = 231.244514 + 0: The maximum resident set size (KB) = 1101472 Test 068 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3260,14 +3261,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.299503 - 0: The maximum resident set size (KB) = 1098460 + 0: The total amount of wall time = 447.163856 + 0: The maximum resident set size (KB) = 1091828 Test 069 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3314,14 +3315,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.797924 - 0: The maximum resident set size (KB) = 1028012 + 0: The total amount of wall time = 470.404665 + 0: The maximum resident set size (KB) = 1019228 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3360,14 +3361,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 336.301031 - 0: The maximum resident set size (KB) = 1118268 + 0: The total amount of wall time = 337.571688 + 0: The maximum resident set size (KB) = 1130536 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3414,14 +3415,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.382811 - 0: The maximum resident set size (KB) = 1002948 + 0: The total amount of wall time = 228.633293 + 0: The maximum resident set size (KB) = 1000848 Test 072 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3468,14 +3469,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.345145 - 0: The maximum resident set size (KB) = 998252 + 0: The total amount of wall time = 233.110620 + 0: The maximum resident set size (KB) = 1020700 Test 073 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3522,28 +3523,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.439034 - 0: The maximum resident set size (KB) = 1109396 + 0: The total amount of wall time = 208.800717 + 0: The maximum resident set size (KB) = 1110236 Test 074 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.894280 - 0: The maximum resident set size (KB) = 1003192 + 0: The total amount of wall time = 119.334719 + 0: The maximum resident set size (KB) = 993548 Test 075 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3590,14 +3591,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.392615 - 0: The maximum resident set size (KB) = 1092060 + 0: The total amount of wall time = 441.219876 + 0: The maximum resident set size (KB) = 1097556 Test 076 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3613,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 534.899176 - 0: The maximum resident set size (KB) = 1988040 + 0: The total amount of wall time = 533.153469 + 0: The maximum resident set size (KB) = 1990732 Test 077 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3634,14 +3635,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.645754 - 0: The maximum resident set size (KB) = 2035620 + 0: The total amount of wall time = 520.250062 + 0: The maximum resident set size (KB) = 2051776 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3652,14 +3653,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.191910 - 0: The maximum resident set size (KB) = 739860 + 0: The total amount of wall time = 340.804763 + 0: The maximum resident set size (KB) = 739316 Test 079 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3670,14 +3671,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.800840 - 0: The maximum resident set size (KB) = 737072 + 0: The total amount of wall time = 334.956617 + 0: The maximum resident set size (KB) = 712324 Test 080 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3688,26 +3689,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.091013 - 0: The maximum resident set size (KB) = 742520 + 0: The total amount of wall time = 186.820782 + 0: The maximum resident set size (KB) = 735028 Test 081 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.528794 - 0: The maximum resident set size (KB) = 651112 + 0: The total amount of wall time = 113.594046 + 0: The maximum resident set size (KB) = 644096 Test 082 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3754,14 +3755,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.618958 - 0: The maximum resident set size (KB) = 1597176 + 0: The total amount of wall time = 145.368687 + 0: The maximum resident set size (KB) = 1619232 Test 083 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3772,14 +3773,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.666826 - 0: The maximum resident set size (KB) = 845180 + 0: The total amount of wall time = 266.262541 + 0: The maximum resident set size (KB) = 847716 Test 084 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3806,364 +3807,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 145.515685 - 0: The maximum resident set size (KB) = 816192 + 0: The total amount of wall time = 145.055378 + 0: The maximum resident set size (KB) = 809480 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel 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.721996 - 0: The maximum resident set size (KB) = 789720 + 0: The total amount of wall time = 146.493861 + 0: The maximum resident set size (KB) = 811512 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel 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.222506 - 0: The maximum resident set size (KB) = 817236 + 0: The total amount of wall time = 167.323485 + 0: The maximum resident set size (KB) = 781356 Test 087 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.633981 - 0: The maximum resident set size (KB) = 813628 + 0: The total amount of wall time = 147.995786 + 0: The maximum resident set size (KB) = 811136 Test 088 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.309040 - 0: The maximum resident set size (KB) = 839920 + 0: The total amount of wall time = 225.276189 + 0: The maximum resident set size (KB) = 864880 Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.354541 - 0: The maximum resident set size (KB) = 857100 + 0: The total amount of wall time = 225.956854 + 0: The maximum resident set size (KB) = 863180 Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_debug_intel Checking test 091 control_ras_debug_intel 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.339276 - 0: The maximum resident set size (KB) = 825044 + 0: The total amount of wall time = 150.524037 + 0: The maximum resident set size (KB) = 824452 Test 091 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_diag_debug_intel Checking test 092 control_diag_debug_intel 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.295592 - 0: The maximum resident set size (KB) = 865880 + 0: The total amount of wall time = 151.762811 + 0: The maximum resident set size (KB) = 874524 Test 092 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.694957 - 0: The maximum resident set size (KB) = 1635444 + 0: The total amount of wall time = 157.930732 + 0: The maximum resident set size (KB) = 1637680 Test 093 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 958.825967 - 0: The maximum resident set size (KB) = 835248 + 0: The total amount of wall time = 989.414920 + 0: The maximum resident set size (KB) = 844060 Test 094 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_intel Checking test 095 rap_control_debug_intel 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.390024 - 0: The maximum resident set size (KB) = 1190860 + 0: The total amount of wall time = 275.743992 + 0: The maximum resident set size (KB) = 1205968 Test 095 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel 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.442847 - 0: The maximum resident set size (KB) = 1195084 + 0: The total amount of wall time = 273.587426 + 0: The maximum resident set size (KB) = 1188196 Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.177237 - 0: The maximum resident set size (KB) = 1201020 + 0: The total amount of wall time = 271.577904 + 0: The maximum resident set size (KB) = 1168904 Test 097 hrrr_gf_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.916635 - 0: The maximum resident set size (KB) = 1194600 + 0: The total amount of wall time = 280.320244 + 0: The maximum resident set size (KB) = 1201040 Test 098 hrrr_c3_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.860654 - 0: The maximum resident set size (KB) = 1198888 + 0: The total amount of wall time = 272.384853 + 0: The maximum resident set size (KB) = 1199072 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.404587 - 0: The maximum resident set size (KB) = 1280192 + 0: The total amount of wall time = 287.450519 + 0: The maximum resident set size (KB) = 1250492 Test 100 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.350277 - 0: The maximum resident set size (KB) = 1196504 + 0: The total amount of wall time = 279.011727 + 0: The maximum resident set size (KB) = 1194848 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel 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.685636 - 0: The maximum resident set size (KB) = 1181000 + 0: The total amount of wall time = 283.901943 + 0: The maximum resident set size (KB) = 1199404 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel 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.133836 - 0: The maximum resident set size (KB) = 1199848 + 0: The total amount of wall time = 278.978114 + 0: The maximum resident set size (KB) = 1202272 Test 103 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel 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.511189 - 0: The maximum resident set size (KB) = 1192672 + 0: The total amount of wall time = 277.215816 + 0: The maximum resident set size (KB) = 1202172 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.666867 - 0: The maximum resident set size (KB) = 1195472 + 0: The total amount of wall time = 269.153767 + 0: The maximum resident set size (KB) = 1207516 Test 105 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel 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.462426 - 0: The maximum resident set size (KB) = 1199436 + 0: The total amount of wall time = 272.593517 + 0: The maximum resident set size (KB) = 1198500 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.581971 - 0: The maximum resident set size (KB) = 1188888 + 0: The total amount of wall time = 447.151842 + 0: The maximum resident set size (KB) = 1190028 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.740968 - 0: The maximum resident set size (KB) = 1189992 + 0: The total amount of wall time = 272.581265 + 0: The maximum resident set size (KB) = 1189628 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.034881 - 0: The maximum resident set size (KB) = 1196820 + 0: The total amount of wall time = 350.186347 + 0: The maximum resident set size (KB) = 1198564 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel 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.456389 - 0: The maximum resident set size (KB) = 1203628 + 0: The total amount of wall time = 272.088415 + 0: The maximum resident set size (KB) = 1195828 Test 110 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4204,26 +4205,26 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.178149 - 0: The maximum resident set size (KB) = 1197108 + 0: The total amount of wall time = 462.556356 + 0: The maximum resident set size (KB) = 1196912 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_debug_intel Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.371786 - 0: The maximum resident set size (KB) = 506680 + 0: The total amount of wall time = 278.557135 + 0: The maximum resident set size (KB) = 521848 Test 112 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4234,14 +4235,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 218.977231 - 0: The maximum resident set size (KB) = 1147736 + 0: The total amount of wall time = 227.440380 + 0: The maximum resident set size (KB) = 1156564 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4288,14 +4289,14 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.594234 - 0: The maximum resident set size (KB) = 1068152 + 0: The total amount of wall time = 368.557787 + 0: The maximum resident set size (KB) = 1020924 Test 114 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4342,14 +4343,14 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.018393 - 0: The maximum resident set size (KB) = 980176 + 0: The total amount of wall time = 189.918061 + 0: The maximum resident set size (KB) = 969300 Test 115 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_dyn32_phy32_intel Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4396,14 +4397,14 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.306797 - 0: The maximum resident set size (KB) = 1086240 + 0: The total amount of wall time = 348.333087 + 0: The maximum resident set size (KB) = 1086104 Test 116 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_dyn32_phy32_intel Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4450,14 +4451,14 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.901882 - 0: The maximum resident set size (KB) = 957740 + 0: The total amount of wall time = 180.181859 + 0: The maximum resident set size (KB) = 965172 Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_dyn32_phy32_intel Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4504,14 +4505,14 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.411872 - 0: The maximum resident set size (KB) = 919352 + 0: The total amount of wall time = 201.785190 + 0: The maximum resident set size (KB) = 918992 Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_dyn32_phy32_intel Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4550,28 +4551,28 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.937940 - 0: The maximum resident set size (KB) = 1035684 + 0: The total amount of wall time = 277.195527 + 0: The maximum resident set size (KB) = 1030528 Test 119 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_dyn32_phy32_intel Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.811349 - 0: The maximum resident set size (KB) = 915620 + 0: The total amount of wall time = 100.013804 + 0: The maximum resident set size (KB) = 930076 Test 120 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_control_intel Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4587,40 +4588,40 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 111.059041 - 0: The maximum resident set size (KB) = 1200612 + 0: The total amount of wall time = 110.521906 + 0: The maximum resident set size (KB) = 1202840 Test 121 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_2threads_intel Checking test 122 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 44.627261 - 0: The maximum resident set size (KB) = 1112840 + 0: The total amount of wall time = 42.663129 + 0: The maximum resident set size (KB) = 1123900 Test 122 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_restart_mismatch_intel Checking test 123 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 62.712974 - 0: The maximum resident set size (KB) = 1106572 + 0: The total amount of wall time = 61.564367 + 0: The maximum resident set size (KB) = 1105368 Test 123 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4667,42 +4668,42 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.764188 - 0: The maximum resident set size (KB) = 987724 + 0: The total amount of wall time = 242.326200 + 0: The maximum resident set size (KB) = 975444 Test 124 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.302777 - 0: The maximum resident set size (KB) = 1080372 + 0: The total amount of wall time = 271.534913 + 0: The maximum resident set size (KB) = 1080528 Test 125 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.065118 - 0: The maximum resident set size (KB) = 1072100 + 0: The total amount of wall time = 262.074906 + 0: The maximum resident set size (KB) = 1074564 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_intel Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4716,14 +4717,14 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 827.833069 - 0: The maximum resident set size (KB) = 1224604 + 0: The total amount of wall time = 835.339812 + 0: The maximum resident set size (KB) = 1198160 Test 127 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_qr_intel Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4737,81 +4738,81 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 820.540790 - 0: The maximum resident set size (KB) = 909032 + 0: The total amount of wall time = 835.471252 + 0: The maximum resident set size (KB) = 917080 Test 128 conus13km_debug_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_2threads_intel Checking test 129 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 474.401614 - 0: The maximum resident set size (KB) = 1144604 + 0: The total amount of wall time = 461.971414 + 0: The maximum resident set size (KB) = 1151156 Test 129 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_radar_tten_debug_intel Checking test 130 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 823.465907 - 0: The maximum resident set size (KB) = 1280292 + 0: The total amount of wall time = 820.630781 + 0: The maximum resident set size (KB) = 1287516 Test 130 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_debug_intel Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.766020 - 0: The maximum resident set size (KB) = 1112456 + 0: The total amount of wall time = 280.692154 + 0: The maximum resident set size (KB) = 1104400 Test 131 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_intel Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.587028 - 0: The maximum resident set size (KB) = 734628 + 0: The total amount of wall time = 269.040684 + 0: The maximum resident set size (KB) = 740032 Test 132 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_thompson_gfdlsf_intel Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 336.310004 - 0: The maximum resident set size (KB) = 1117420 + 0: The total amount of wall time = 337.462528 + 0: The maximum resident set size (KB) = 1114212 Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_ocn_intel Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4820,14 +4821,14 @@ Checking test 134 hafs_regional_atm_ocn_intel 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 = 386.357137 - 0: The maximum resident set size (KB) = 832416 + 0: The total amount of wall time = 392.511413 + 0: The maximum resident set size (KB) = 833076 Test 134 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_wav_intel Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4836,14 +4837,14 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 757.707078 - 0: The maximum resident set size (KB) = 847468 + 0: The total amount of wall time = 760.911262 + 0: The maximum resident set size (KB) = 868292 Test 135 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_ocn_wav_intel Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4854,14 +4855,14 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 865.942618 - 0: The maximum resident set size (KB) = 881556 + 0: The total amount of wall time = 867.326621 + 0: The maximum resident set size (KB) = 879692 Test 136 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_1nest_atm_intel Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4878,19 +4879,19 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 306.689032 - 0: The maximum resident set size (KB) = 497748 + 0: The total amount of wall time = 305.095077 + 0: The maximum resident set size (KB) = 498508 Test 137 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_telescopic_2nests_atm_intel Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4899,14 +4900,14 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 392.559623 - 0: The maximum resident set size (KB) = 516072 + 0: The total amount of wall time = 368.217847 + 0: The maximum resident set size (KB) = 521656 Test 138 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_1nest_atm_intel Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,18 +4918,18 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -4953,14 +4954,14 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 144.247720 - 0: The maximum resident set size (KB) = 367852 + 0: The total amount of wall time = 144.019526 + 0: The maximum resident set size (KB) = 372432 Test 139 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4988,10 +4989,10 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK @@ -5002,7 +5003,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -5042,14 +5043,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 425.082140 - 0: The maximum resident set size (KB) = 461800 + 0: The total amount of wall time = 406.250890 + 0: The maximum resident set size (KB) = 475980 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_specified_moving_1nest_atm_intel Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +5059,14 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 205.734798 - 0: The maximum resident set size (KB) = 529904 + 0: The total amount of wall time = 205.913870 + 0: The maximum resident set size (KB) = 529472 Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_intel Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5087,14 +5088,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 193.275962 - 0: The maximum resident set size (KB) = 528604 + 0: The total amount of wall time = 195.540172 + 0: The maximum resident set size (KB) = 532068 Test 142 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5103,28 +5104,28 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 231.338458 - 0: The maximum resident set size (KB) = 590768 + 0: The total amount of wall time = 231.563191 + 0: The maximum resident set size (KB) = 560816 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel 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 = 61.728712 - 0: The maximum resident set size (KB) = 404768 + 0: The total amount of wall time = 64.182739 + 0: The maximum resident set size (KB) = 404656 Test 144 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_nested_intel Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5137,22 +5138,22 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK @@ -5171,28 +5172,28 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 227.274648 - 0: The maximum resident set size (KB) = 799472 + 0: The total amount of wall time = 230.086296 + 0: The maximum resident set size (KB) = 799868 Test 145 gnv1_nested_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 722.700917 - 0: The maximum resident set size (KB) = 620196 + 0: The total amount of wall time = 726.576204 + 0: The maximum resident set size (KB) = 572116 Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5203,162 +5204,197 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 494.314145 - 0: The maximum resident set size (KB) = 629408 + 0: The total amount of wall time = 497.710518 + 0: The maximum resident set size (KB) = 636284 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 496.967255 + 0: The maximum resident set size (KB) = 713496 + +Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 363.350077 + 0: The maximum resident set size (KB) = 689456 + +Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_docn_intel +Checking test 150 hafs_regional_docn_intel 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 = 360.451702 - 0: The maximum resident set size (KB) = 819900 + 0: The total amount of wall time = 385.494856 + 0: The maximum resident set size (KB) = 817532 -Test 148 hafs_regional_docn_intel PASS +Test 150 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_docn_oisst_intel +Checking test 151 hafs_regional_docn_oisst_intel 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 = 372.802738 - 0: The maximum resident set size (KB) = 810808 + 0: The total amount of wall time = 365.255275 + 0: The maximum resident set size (KB) = 807076 -Test 149 hafs_regional_docn_oisst_intel PASS +Test 151 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_datm_cdeps_intel +Checking test 152 hafs_regional_datm_cdeps_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 938.132608 - 0: The maximum resident set size (KB) = 1214144 + 0: The total amount of wall time = 957.184061 + 0: The maximum resident set size (KB) = 1207540 -Test 150 hafs_regional_datm_cdeps_intel PASS +Test 152 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_intel +Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.701592 - 0: The maximum resident set size (KB) = 1116260 + 0: The total amount of wall time = 150.680540 + 0: The maximum resident set size (KB) = 1123960 -Test 151 datm_cdeps_control_cfsr_intel PASS +Test 153 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_restart_cfsr_intel +Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 86.293080 - 0: The maximum resident set size (KB) = 1062488 + 0: The total amount of wall time = 92.600039 + 0: The maximum resident set size (KB) = 1071924 -Test 152 datm_cdeps_restart_cfsr_intel PASS +Test 154 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_gefs_intel +Checking test 155 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.292290 - 0: The maximum resident set size (KB) = 1001844 + 0: The total amount of wall time = 145.951606 + 0: The maximum resident set size (KB) = 1006268 -Test 153 datm_cdeps_control_gefs_intel PASS +Test 155 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_iau_gefs_intel +Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.973884 - 0: The maximum resident set size (KB) = 1022084 + 0: The total amount of wall time = 145.270741 + 0: The maximum resident set size (KB) = 1017980 -Test 154 datm_cdeps_iau_gefs_intel PASS +Test 156 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_stochy_gefs_intel +Checking test 157 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.814148 - 0: The maximum resident set size (KB) = 1009792 + 0: The total amount of wall time = 149.213326 + 0: The maximum resident set size (KB) = 1021072 -Test 155 datm_cdeps_stochy_gefs_intel PASS +Test 157 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_ciceC_cfsr_intel +Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.874311 - 0: The maximum resident set size (KB) = 1110376 + 0: The total amount of wall time = 147.909855 + 0: The maximum resident set size (KB) = 1114604 -Test 156 datm_cdeps_ciceC_cfsr_intel PASS +Test 158 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_bulk_cfsr_intel +Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.420535 - 0: The maximum resident set size (KB) = 1124120 + 0: The total amount of wall time = 149.461375 + 0: The maximum resident set size (KB) = 1124828 -Test 157 datm_cdeps_bulk_cfsr_intel PASS +Test 159 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_bulk_gefs_intel +Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.374800 - 0: The maximum resident set size (KB) = 1001588 + 0: The total amount of wall time = 145.594920 + 0: The maximum resident set size (KB) = 990052 -Test 158 datm_cdeps_bulk_gefs_intel PASS +Test 160 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_mx025_cfsr_intel +Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5366,15 +5402,15 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel 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 = 376.561317 - 0: The maximum resident set size (KB) = 1046812 + 0: The total amount of wall time = 367.127490 + 0: The maximum resident set size (KB) = 1072600 -Test 159 datm_cdeps_mx025_cfsr_intel PASS +Test 161 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_mx025_gefs_intel +Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5382,78 +5418,78 @@ Checking test 160 datm_cdeps_mx025_gefs_intel 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 = 375.433718 - 0: The maximum resident set size (KB) = 1030208 + 0: The total amount of wall time = 393.081171 + 0: The maximum resident set size (KB) = 1042836 -Test 160 datm_cdeps_mx025_gefs_intel PASS +Test 162 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_multiple_files_cfsr_intel +Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.032179 - 0: The maximum resident set size (KB) = 1112836 + 0: The total amount of wall time = 153.389953 + 0: The maximum resident set size (KB) = 1117624 -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS +Test 163 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_3072x1536_cfsr_intel +Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 215.767264 - 0: The maximum resident set size (KB) = 2423064 + 0: The total amount of wall time = 224.118666 + 0: The maximum resident set size (KB) = 2427208 -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS +Test 164 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_gfs_intel +Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 214.548347 - 0: The maximum resident set size (KB) = 2414960 + 0: The total amount of wall time = 225.533239 + 0: The maximum resident set size (KB) = 2435672 -Test 163 datm_cdeps_gfs_intel PASS +Test 165 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_debug_cfsr_intel +Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 351.689011 - 0: The maximum resident set size (KB) = 1053472 + 0: The total amount of wall time = 356.200975 + 0: The maximum resident set size (KB) = 1051880 -Test 164 datm_cdeps_debug_cfsr_intel PASS +Test 166 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_faster_intel +Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.861701 - 0: The maximum resident set size (KB) = 1118932 + 0: The total amount of wall time = 150.399684 + 0: The maximum resident set size (KB) = 1125588 -Test 165 datm_cdeps_control_cfsr_faster_intel PASS +Test 167 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_gswp3_intel +Checking test 168 datm_cdeps_lnd_gswp3_intel 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 @@ -5461,15 +5497,15 @@ Checking test 166 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 36.157503 - 0: The maximum resident set size (KB) = 255028 + 0: The total amount of wall time = 37.227795 + 0: The maximum resident set size (KB) = 255552 -Test 166 datm_cdeps_lnd_gswp3_intel PASS +Test 168 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_lnd_era5_intel -Checking test 167 datm_cdeps_lnd_era5_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_era5_intel +Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5477,15 +5513,15 @@ Checking test 167 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 37.253138 - 0: The maximum resident set size (KB) = 321660 + 0: The total amount of wall time = 40.486714 + 0: The maximum resident set size (KB) = 318592 -Test 167 datm_cdeps_lnd_era5_intel PASS +Test 169 datm_cdeps_lnd_era5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_lnd_era5_rst_intel -Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_era5_rst_intel +Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5493,15 +5529,15 @@ Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 21.848750 - 0: The maximum resident set size (KB) = 304104 + 0: The total amount of wall time = 21.767384 + 0: The maximum resident set size (KB) = 314644 -Test 168 datm_cdeps_lnd_era5_rst_intel PASS +Test 170 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_atmlnd_sbs_intel +Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5589,15 +5625,15 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 243.602271 - 0: The maximum resident set size (KB) = 1587288 + 0: The total amount of wall time = 248.362695 + 0: The maximum resident set size (KB) = 1567128 -Test 169 control_p8_atmlnd_sbs_intel PASS +Test 171 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_atmlnd_intel -Checking test 170 control_p8_atmlnd_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_atmlnd_intel +Checking test 172 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5685,15 +5721,15 @@ Checking test 170 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 241.619839 - 0: The maximum resident set size (KB) = 1587148 + 0: The total amount of wall time = 242.736688 + 0: The maximum resident set size (KB) = 1588544 -Test 170 control_p8_atmlnd_intel PASS +Test 172 control_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_restart_p8_atmlnd_intel -Checking test 171 control_restart_p8_atmlnd_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_p8_atmlnd_intel +Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5713,15 +5749,15 @@ Checking test 171 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 125.741520 - 0: The maximum resident set size (KB) = 890224 + 0: The total amount of wall time = 124.620666 + 0: The maximum resident set size (KB) = 892940 -Test 171 control_restart_p8_atmlnd_intel PASS +Test 173 control_restart_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmwav_control_noaero_p8_intel -Checking test 172 atmwav_control_noaero_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmwav_control_noaero_p8_intel +Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5763,15 +5799,15 @@ Checking test 172 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.027616 - 0: The maximum resident set size (KB) = 1653260 + 0: The total amount of wall time = 92.003851 + 0: The maximum resident set size (KB) = 1649056 -Test 172 atmwav_control_noaero_p8_intel PASS +Test 174 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_atmwav_intel -Checking test 173 control_atmwav_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_atmwav_intel +Checking test 175 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5814,15 +5850,15 @@ Checking test 173 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.771960 - 0: The maximum resident set size (KB) = 667356 + 0: The total amount of wall time = 87.957613 + 0: The maximum resident set size (KB) = 668764 -Test 173 control_atmwav_intel PASS +Test 175 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmaero_control_p8_intel -Checking test 174 atmaero_control_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_intel +Checking test 176 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5865,15 +5901,15 @@ Checking test 174 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.778170 - 0: The maximum resident set size (KB) = 3002208 + 0: The total amount of wall time = 224.280401 + 0: The maximum resident set size (KB) = 3004672 -Test 174 atmaero_control_p8_intel PASS +Test 176 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmaero_control_p8_rad_intel -Checking test 175 atmaero_control_p8_rad_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_rad_intel +Checking test 177 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5916,15 +5952,15 @@ Checking test 175 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 272.113141 - 0: The maximum resident set size (KB) = 3094892 + 0: The total amount of wall time = 280.339046 + 0: The maximum resident set size (KB) = 3085368 -Test 175 atmaero_control_p8_rad_intel PASS +Test 177 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/atmaero_control_p8_rad_micro_intel -Checking test 176 atmaero_control_p8_rad_micro_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_rad_micro_intel +Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5967,15 +6003,15 @@ Checking test 176 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.541096 - 0: The maximum resident set size (KB) = 3042872 + 0: The total amount of wall time = 285.678953 + 0: The maximum resident set size (KB) = 3095612 -Test 176 atmaero_control_p8_rad_micro_intel PASS +Test 178 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_atmaq_debug_intel -Checking test 177 regional_atmaq_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_atmaq_debug_intel +Checking test 179 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5986,17 +6022,17 @@ Checking test 177 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1184.392399 - 0: The maximum resident set size (KB) = 4508276 + 0: The total amount of wall time = 1195.038352 + 0: The maximum resident set size (KB) = 4508140 -Test 177 regional_atmaq_debug_intel PASS +Test 179 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_c48_gnu -Checking test 178 control_c48_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c48_gnu +Checking test 180 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6034,15 +6070,15 @@ Checking test 178 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 690.501739 -0: The maximum resident set size (KB) = 792324 +0: The total amount of wall time = 689.527241 +0: The maximum resident set size (KB) = 796248 -Test 178 control_c48_gnu PASS +Test 180 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_gnu -Checking test 179 control_stochy_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_gnu +Checking test 181 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -6052,15 +6088,15 @@ Checking test 179 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 230.748509 - 0: The maximum resident set size (KB) = 548028 + 0: The total amount of wall time = 223.236365 + 0: The maximum resident set size (KB) = 553500 -Test 179 control_stochy_gnu PASS +Test 181 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_gnu -Checking test 180 control_ras_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_gnu +Checking test 182 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6070,15 +6106,15 @@ Checking test 180 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 282.266870 - 0: The maximum resident set size (KB) = 555260 + 0: The total amount of wall time = 287.892871 + 0: The maximum resident set size (KB) = 556028 -Test 180 control_ras_gnu PASS +Test 182 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_gnu -Checking test 181 control_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_gnu +Checking test 183 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6124,15 +6160,15 @@ Checking test 181 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.758144 - 0: The maximum resident set size (KB) = 1307188 + 0: The total amount of wall time = 276.493301 + 0: The maximum resident set size (KB) = 1312608 -Test 181 control_p8_gnu PASS +Test 183 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_p8_ugwpv1_gnu -Checking test 182 control_p8_ugwpv1_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_ugwpv1_gnu +Checking test 184 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6178,15 +6214,15 @@ Checking test 182 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.348251 - 0: The maximum resident set size (KB) = 1309688 + 0: The total amount of wall time = 268.543767 + 0: The maximum resident set size (KB) = 1316832 -Test 182 control_p8_ugwpv1_gnu PASS +Test 184 control_p8_ugwpv1_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_flake_gnu -Checking test 183 control_flake_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_flake_gnu +Checking test 185 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6196,15 +6232,15 @@ Checking test 183 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 344.862100 - 0: The maximum resident set size (KB) = 599024 + 0: The total amount of wall time = 348.991180 + 0: The maximum resident set size (KB) = 598048 -Test 183 control_flake_gnu PASS +Test 185 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_gnu -Checking test 184 rap_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_gnu +Checking test 186 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6250,15 +6286,15 @@ Checking test 184 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.179083 - 0: The maximum resident set size (KB) = 897392 + 0: The total amount of wall time = 678.688624 + 0: The maximum resident set size (KB) = 895932 -Test 184 rap_control_gnu PASS +Test 186 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_decomp_gnu -Checking test 185 rap_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_decomp_gnu +Checking test 187 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6304,15 +6340,15 @@ Checking test 185 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 704.479407 - 0: The maximum resident set size (KB) = 901924 + 0: The total amount of wall time = 691.782275 + 0: The maximum resident set size (KB) = 901012 -Test 185 rap_decomp_gnu PASS +Test 187 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_gnu -Checking test 186 rap_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_gnu +Checking test 188 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6358,15 +6394,15 @@ Checking test 186 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 618.324063 - 0: The maximum resident set size (KB) = 975248 + 0: The total amount of wall time = 623.748776 + 0: The maximum resident set size (KB) = 976164 -Test 186 rap_2threads_gnu PASS +Test 188 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_gnu -Checking test 187 rap_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_gnu +Checking test 189 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6404,15 +6440,15 @@ Checking test 187 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.056805 - 0: The maximum resident set size (KB) = 622888 + 0: The total amount of wall time = 348.568778 + 0: The maximum resident set size (KB) = 625864 -Test 187 rap_restart_gnu PASS +Test 189 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_gnu -Checking test 188 rap_sfcdiff_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_gnu +Checking test 190 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6458,15 +6494,15 @@ Checking test 188 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 690.024779 - 0: The maximum resident set size (KB) = 896868 + 0: The total amount of wall time = 682.548778 + 0: The maximum resident set size (KB) = 894904 -Test 188 rap_sfcdiff_gnu PASS +Test 190 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_decomp_gnu -Checking test 189 rap_sfcdiff_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_decomp_gnu +Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6512,15 +6548,15 @@ Checking test 189 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 697.220816 - 0: The maximum resident set size (KB) = 895192 + 0: The total amount of wall time = 699.715375 + 0: The maximum resident set size (KB) = 897088 -Test 189 rap_sfcdiff_decomp_gnu PASS +Test 191 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_sfcdiff_restart_gnu -Checking test 190 rap_sfcdiff_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_restart_gnu +Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6558,15 +6594,15 @@ Checking test 190 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 512.801755 - 0: The maximum resident set size (KB) = 627740 + 0: The total amount of wall time = 510.536601 + 0: The maximum resident set size (KB) = 635292 -Test 190 rap_sfcdiff_restart_gnu PASS +Test 192 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_gnu -Checking test 191 hrrr_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_gnu +Checking test 193 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6612,15 +6648,15 @@ Checking test 191 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.501404 - 0: The maximum resident set size (KB) = 888900 + 0: The total amount of wall time = 350.261379 + 0: The maximum resident set size (KB) = 892784 -Test 191 hrrr_control_gnu PASS +Test 193 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_noqr_gnu -Checking test 192 hrrr_control_noqr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_noqr_gnu +Checking test 194 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6666,15 +6702,15 @@ Checking test 192 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 349.938599 - 0: The maximum resident set size (KB) = 884836 + 0: The total amount of wall time = 349.349602 + 0: The maximum resident set size (KB) = 879924 -Test 192 hrrr_control_noqr_gnu PASS +Test 194 hrrr_control_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_gnu -Checking test 193 hrrr_control_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_gnu +Checking test 195 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6720,15 +6756,15 @@ Checking test 193 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 303.789459 - 0: The maximum resident set size (KB) = 984000 + 0: The total amount of wall time = 304.163608 + 0: The maximum resident set size (KB) = 973356 -Test 193 hrrr_control_2threads_gnu PASS +Test 195 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_gnu -Checking test 194 hrrr_control_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_gnu +Checking test 196 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6774,43 +6810,43 @@ Checking test 194 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.542549 - 0: The maximum resident set size (KB) = 891832 + 0: The total amount of wall time = 352.008424 + 0: The maximum resident set size (KB) = 898904 -Test 194 hrrr_control_decomp_gnu PASS +Test 196 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_gnu -Checking test 195 hrrr_control_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_gnu +Checking test 197 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 206.794691 - 0: The maximum resident set size (KB) = 615660 + 0: The total amount of wall time = 182.458855 + 0: The maximum resident set size (KB) = 617740 -Test 195 hrrr_control_restart_gnu PASS +Test 197 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_noqr_gnu -Checking test 196 hrrr_control_restart_noqr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_noqr_gnu +Checking test 198 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 180.880943 - 0: The maximum resident set size (KB) = 703748 + 0: The total amount of wall time = 183.278530 + 0: The maximum resident set size (KB) = 704172 -Test 196 hrrr_control_restart_noqr_gnu PASS +Test 198 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_gnu -Checking test 197 rrfs_v1beta_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_gnu +Checking test 199 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6856,225 +6892,225 @@ Checking test 197 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 675.327665 - 0: The maximum resident set size (KB) = 897220 + 0: The total amount of wall time = 675.015539 + 0: The maximum resident set size (KB) = 894172 -Test 197 rrfs_v1beta_gnu PASS +Test 199 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_diag_debug_gnu -Checking test 198 control_diag_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_diag_debug_gnu +Checking test 200 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 85.591753 - 0: The maximum resident set size (KB) = 600112 + 0: The total amount of wall time = 85.109043 + 0: The maximum resident set size (KB) = 592152 -Test 198 control_diag_debug_gnu PASS +Test 200 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/regional_debug_gnu -Checking test 199 regional_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_debug_gnu +Checking test 201 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 436.488779 - 0: The maximum resident set size (KB) = 589412 + 0: The total amount of wall time = 442.016261 + 0: The maximum resident set size (KB) = 597928 -Test 199 regional_debug_gnu PASS +Test 201 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_gnu -Checking test 200 rap_control_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_gnu +Checking test 202 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.331064 - 0: The maximum resident set size (KB) = 917116 + 0: The total amount of wall time = 143.674214 + 0: The maximum resident set size (KB) = 909316 -Test 200 rap_control_debug_gnu PASS +Test 202 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_gnu -Checking test 201 hrrr_control_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_gnu +Checking test 203 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.765628 - 0: The maximum resident set size (KB) = 907164 + 0: The total amount of wall time = 139.978238 + 0: The maximum resident set size (KB) = 899504 -Test 201 hrrr_control_debug_gnu PASS +Test 203 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_gf_debug_gnu -Checking test 202 hrrr_gf_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_gf_debug_gnu +Checking test 204 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.486970 - 0: The maximum resident set size (KB) = 908416 + 0: The total amount of wall time = 139.895900 + 0: The maximum resident set size (KB) = 903352 -Test 202 hrrr_gf_debug_gnu PASS +Test 204 hrrr_gf_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_c3_debug_gnu -Checking test 203 hrrr_c3_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_c3_debug_gnu +Checking test 205 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.787285 - 0: The maximum resident set size (KB) = 912832 + 0: The total amount of wall time = 139.594409 + 0: The maximum resident set size (KB) = 908756 -Test 203 hrrr_c3_debug_gnu PASS +Test 205 hrrr_c3_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_diag_debug_gnu -Checking test 204 rap_diag_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_diag_debug_gnu +Checking test 206 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.845575 - 0: The maximum resident set size (KB) = 996284 + 0: The total amount of wall time = 151.553650 + 0: The maximum resident set size (KB) = 996124 -Test 204 rap_diag_debug_gnu PASS +Test 206 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 205 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.903762 - 0: The maximum resident set size (KB) = 912860 + 0: The total amount of wall time = 218.661576 + 0: The maximum resident set size (KB) = 904724 -Test 205 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_progcld_thompson_debug_gnu -Checking test 206 rap_progcld_thompson_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_progcld_thompson_debug_gnu +Checking test 208 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.529806 - 0: The maximum resident set size (KB) = 912408 + 0: The total amount of wall time = 142.369104 + 0: The maximum resident set size (KB) = 905632 -Test 206 rap_progcld_thompson_debug_gnu PASS +Test 208 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rrfs_v1beta_debug_gnu -Checking test 207 rrfs_v1beta_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_debug_gnu +Checking test 209 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.330026 - 0: The maximum resident set size (KB) = 913820 + 0: The total amount of wall time = 139.736189 + 0: The maximum resident set size (KB) = 904108 -Test 207 rrfs_v1beta_debug_gnu PASS +Test 209 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_ras_debug_gnu -Checking test 208 control_ras_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_debug_gnu +Checking test 210 control_ras_debug_gnu 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.523225 - 0: The maximum resident set size (KB) = 549840 + 0: The total amount of wall time = 79.582132 + 0: The maximum resident set size (KB) = 544808 -Test 208 control_ras_debug_gnu PASS +Test 210 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_stochy_debug_gnu -Checking test 209 control_stochy_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_debug_gnu +Checking test 211 control_stochy_debug_gnu 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.851537 - 0: The maximum resident set size (KB) = 545568 + 0: The total amount of wall time = 112.351182 + 0: The maximum resident set size (KB) = 541280 -Test 209 control_stochy_debug_gnu PASS +Test 211 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_debug_p8_gnu -Checking test 210 control_debug_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_debug_p8_gnu +Checking test 212 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 88.899344 - 0: The maximum resident set size (KB) = 1298392 + 0: The total amount of wall time = 87.395825 + 0: The maximum resident set size (KB) = 1290088 -Test 210 control_debug_p8_gnu PASS +Test 212 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_flake_debug_gnu -Checking test 211 rap_flake_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_flake_debug_gnu +Checking test 213 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.790214 - 0: The maximum resident set size (KB) = 910492 + 0: The total amount of wall time = 139.584828 + 0: The maximum resident set size (KB) = 908196 -Test 211 rap_flake_debug_gnu PASS +Test 213 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_clm_lake_debug_gnu -Checking test 212 rap_clm_lake_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_clm_lake_debug_gnu +Checking test 214 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.425588 - 0: The maximum resident set size (KB) = 914856 + 0: The total amount of wall time = 157.011734 + 0: The maximum resident set size (KB) = 909532 -Test 212 rap_clm_lake_debug_gnu PASS +Test 214 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/gnv1_c96_no_nest_debug_gnu -Checking test 213 gnv1_c96_no_nest_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_c96_no_nest_debug_gnu +Checking test 215 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7114,27 +7150,27 @@ Checking test 213 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.892709 - 0: The maximum resident set size (KB) = 925864 + 0: The total amount of wall time = 236.016272 + 0: The maximum resident set size (KB) = 912340 -Test 213 gnv1_c96_no_nest_debug_gnu PASS +Test 215 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/control_wam_debug_gnu -Checking test 214 control_wam_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_debug_gnu +Checking test 216 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 136.572735 - 0: The maximum resident set size (KB) = 238856 + 0: The total amount of wall time = 140.010691 + 0: The maximum resident set size (KB) = 246124 -Test 214 control_wam_debug_gnu PASS +Test 216 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn32_phy32_gnu -Checking test 215 rap_control_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn32_phy32_gnu +Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7180,15 +7216,15 @@ Checking test 215 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.607789 - 0: The maximum resident set size (KB) = 748096 + 0: The total amount of wall time = 697.287976 + 0: The maximum resident set size (KB) = 754972 -Test 215 rap_control_dyn32_phy32_gnu PASS +Test 217 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_dyn32_phy32_gnu -Checking test 216 hrrr_control_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_dyn32_phy32_gnu +Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7234,15 +7270,15 @@ Checking test 216 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.967375 - 0: The maximum resident set size (KB) = 745552 + 0: The total amount of wall time = 353.781436 + 0: The maximum resident set size (KB) = 748576 -Test 216 hrrr_control_dyn32_phy32_gnu PASS +Test 218 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_2threads_dyn32_phy32_gnu -Checking test 217 rap_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_dyn32_phy32_gnu +Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7288,15 +7324,15 @@ Checking test 217 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 627.363216 - 0: The maximum resident set size (KB) = 807500 + 0: The total amount of wall time = 625.738371 + 0: The maximum resident set size (KB) = 809180 -Test 217 rap_2threads_dyn32_phy32_gnu PASS +Test 219 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7342,15 +7378,15 @@ Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.677369 - 0: The maximum resident set size (KB) = 805652 + 0: The total amount of wall time = 311.187570 + 0: The maximum resident set size (KB) = 808296 -Test 218 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7396,15 +7432,15 @@ Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.498247 - 0: The maximum resident set size (KB) = 746864 + 0: The total amount of wall time = 349.523368 + 0: The maximum resident set size (KB) = 750092 -Test 219 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_restart_dyn32_phy32_gnu -Checking test 220 rap_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_dyn32_phy32_gnu +Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7442,29 +7478,29 @@ Checking test 220 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 526.010091 - 0: The maximum resident set size (KB) = 594528 + 0: The total amount of wall time = 521.143828 + 0: The maximum resident set size (KB) = 600744 -Test 220 rap_restart_dyn32_phy32_gnu PASS +Test 222 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_restart_dyn32_phy32_gnu -Checking test 221 hrrr_control_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_dyn32_phy32_gnu +Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.136403 - 0: The maximum resident set size (KB) = 579332 + 0: The total amount of wall time = 186.085246 + 0: The maximum resident set size (KB) = 588128 -Test 221 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_control_gnu -Checking test 222 conus13km_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_control_gnu +Checking test 224 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7479,41 +7515,41 @@ Checking test 222 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 242.858742 - 0: The maximum resident set size (KB) = 898544 + 0: The total amount of wall time = 241.412028 + 0: The maximum resident set size (KB) = 901540 -Test 222 conus13km_control_gnu PASS +Test 224 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_2threads_gnu -Checking test 223 conus13km_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_2threads_gnu +Checking test 225 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.977806 - 0: The maximum resident set size (KB) = 932828 + 0: The total amount of wall time = 100.102434 + 0: The maximum resident set size (KB) = 936780 -Test 223 conus13km_2threads_gnu PASS +Test 225 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_restart_mismatch_gnu -Checking test 224 conus13km_restart_mismatch_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_restart_mismatch_gnu +Checking test 226 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.585358 - 0: The maximum resident set size (KB) = 599856 + 0: The total amount of wall time = 128.578473 + 0: The maximum resident set size (KB) = 597684 -Test 224 conus13km_restart_mismatch_gnu PASS +Test 226 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_gnu -Checking test 225 rap_control_dyn64_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_gnu +Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7559,43 +7595,43 @@ Checking test 225 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.978254 - 0: The maximum resident set size (KB) = 787972 + 0: The total amount of wall time = 412.881244 + 0: The maximum resident set size (KB) = 782176 -Test 225 rap_control_dyn64_phy32_gnu PASS +Test 227 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_debug_dyn32_phy32_gnu -Checking test 226 rap_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_dyn32_phy32_gnu +Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.251377 - 0: The maximum resident set size (KB) = 766808 + 0: The total amount of wall time = 143.681795 + 0: The maximum resident set size (KB) = 769436 -Test 226 rap_control_debug_dyn32_phy32_gnu PASS +Test 228 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/hrrr_control_debug_dyn32_phy32_gnu -Checking test 227 hrrr_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_dyn32_phy32_gnu +Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.165440 - 0: The maximum resident set size (KB) = 761500 + 0: The total amount of wall time = 137.751576 + 0: The maximum resident set size (KB) = 770472 -Test 227 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_gnu -Checking test 228 conus13km_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_gnu +Checking test 230 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7608,15 +7644,15 @@ Checking test 228 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 420.828286 - 0: The maximum resident set size (KB) = 913816 + 0: The total amount of wall time = 419.093534 + 0: The maximum resident set size (KB) = 923976 -Test 228 conus13km_debug_gnu PASS +Test 230 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_qr_gnu -Checking test 229 conus13km_debug_qr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_qr_gnu +Checking test 231 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7629,57 +7665,57 @@ Checking test 229 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 416.362698 - 0: The maximum resident set size (KB) = 633804 + 0: The total amount of wall time = 413.248800 + 0: The maximum resident set size (KB) = 637896 -Test 229 conus13km_debug_qr_gnu PASS +Test 231 conus13km_debug_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_debug_2threads_gnu -Checking test 230 conus13km_debug_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_2threads_gnu +Checking test 232 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.835416 - 0: The maximum resident set size (KB) = 955348 + 0: The total amount of wall time = 249.949257 + 0: The maximum resident set size (KB) = 957152 -Test 230 conus13km_debug_2threads_gnu PASS +Test 232 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/conus13km_radar_tten_debug_gnu -Checking test 231 conus13km_radar_tten_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_radar_tten_debug_gnu +Checking test 233 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 414.091288 - 0: The maximum resident set size (KB) = 983228 + 0: The total amount of wall time = 425.920412 + 0: The maximum resident set size (KB) = 987804 -Test 231 conus13km_radar_tten_debug_gnu PASS +Test 233 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/rap_control_dyn64_phy32_debug_gnu -Checking test 232 rap_control_dyn64_phy32_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_debug_gnu +Checking test 234 rap_control_dyn64_phy32_debug_gnu 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.835480 - 0: The maximum resident set size (KB) = 793460 + 0: The total amount of wall time = 147.612416 + 0: The maximum resident set size (KB) = 795120 -Test 232 rap_control_dyn64_phy32_debug_gnu PASS +Test 234 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_p8_gnu -Checking test 233 cpld_control_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_gnu +Checking test 235 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7743,15 +7779,15 @@ Checking test 233 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 629.347814 - 0: The maximum resident set size (KB) = 1505988 + 0: The total amount of wall time = 645.579045 + 0: The maximum resident set size (KB) = 1509272 -Test 233 cpld_control_p8_gnu PASS +Test 235 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_nowave_noaero_p8_gnu -Checking test 234 cpld_control_nowave_noaero_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_nowave_noaero_p8_gnu +Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7812,15 +7848,15 @@ Checking test 234 cpld_control_nowave_noaero_p8_gnu 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 = 381.000424 - 0: The maximum resident set size (KB) = 1399652 + 0: The total amount of wall time = 379.838088 + 0: The maximum resident set size (KB) = 1408296 -Test 234 cpld_control_nowave_noaero_p8_gnu PASS +Test 236 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_p8_gnu -Checking test 235 cpld_debug_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_p8_gnu +Checking test 237 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7872,15 +7908,15 @@ Checking test 235 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.145357 - 0: The maximum resident set size (KB) = 1515704 + 0: The total amount of wall time = 353.337221 + 0: The maximum resident set size (KB) = 1523796 -Test 235 cpld_debug_p8_gnu PASS +Test 237 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_control_pdlib_p8_gnu -Checking test 236 cpld_control_pdlib_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_pdlib_p8_gnu +Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7943,15 +7979,15 @@ Checking test 236 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1309.665519 - 0: The maximum resident set size (KB) = 1377320 + 0: The total amount of wall time = 1302.771362 + 0: The maximum resident set size (KB) = 1380740 -Test 236 cpld_control_pdlib_p8_gnu PASS +Test 238 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/cpld_debug_pdlib_p8_gnu -Checking test 237 cpld_debug_pdlib_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_pdlib_p8_gnu +Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -8002,25 +8038,25 @@ Checking test 237 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 752.509817 - 0: The maximum resident set size (KB) = 1384600 + 0: The total amount of wall time = 766.871937 + 0: The maximum resident set size (KB) = 1387344 -Test 237 cpld_debug_pdlib_p8_gnu PASS +Test 239 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_14515/datm_cdeps_control_cfsr_gnu -Checking test 238 datm_cdeps_control_cfsr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_gnu +Checking test 240 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.080782 - 0: The maximum resident set size (KB) = 696560 + 0: The total amount of wall time = 173.910316 + 0: The maximum resident set size (KB) = 695216 -Test 238 datm_cdeps_control_cfsr_gnu PASS +Test 240 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 31 21:39:10 UTC 2024 -Elapsed time: 03h:29m:58s. Have a nice day! +Mon Feb 5 18:54:04 UTC 2024 +Elapsed time: 02h:49m:10s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 4645313e57..2ef3db1b71 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,75 +1,76 @@ -Wed Jan 31 14:48:57 CST 2024 +Thu Feb 1 10:00:32 PM CST 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 397 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 672 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 693 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 479 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 267 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 414 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 410 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 477 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 530 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 604 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 406 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 198 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 314 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 955 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 301 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 48 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 584 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 250 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 647 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 634 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 224 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 542 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 223 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 416 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 268 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 409 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 532 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 943 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 540 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 329 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 632 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 502 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 979 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 934 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 683 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 347 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1028 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 711 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 266 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 777 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 1125 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 631 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu 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 wam_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 440 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 358 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 281 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 278 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 282 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 380 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 529 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 603 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 594 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 212 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 337 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 853 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 372 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 611 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 632 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 226 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 634 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 608 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 544 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 949 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 569 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 719 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 402 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 303 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 401 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 987 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 758 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 388 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 174 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 265 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 869 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 960 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 368 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -134,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.076373 - 0: The maximum resident set size (KB) = 1891652 + 0: The total amount of wall time = 439.484554 + 0: The maximum resident set size (KB) = 1893456 -Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 +Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -205,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 797.084049 - 0: The maximum resident set size (KB) = 1765172 + 0: The total amount of wall time = 793.090238 + 0: The maximum resident set size (KB) = 1771848 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -258,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 835.153360 - 0: The maximum resident set size (KB) = 2189972 + 0: The total amount of wall time = 833.273875 + 0: The maximum resident set size (KB) = 2179364 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -318,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 387.471422 - 0: The maximum resident set size (KB) = 1180200 + 0: The total amount of wall time = 372.679870 + 0: The maximum resident set size (KB) = 1176428 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_mpi_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -389,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 896.751138 - 0: The maximum resident set size (KB) = 1685012 + 0: The total amount of wall time = 901.582170 + 0: The maximum resident set size (KB) = 1681304 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -448,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1212.767373 - 0: The maximum resident set size (KB) = 1725936 + 0: The total amount of wall time = 1209.196677 + 0: The maximum resident set size (KB) = 1734016 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -520,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.764221 - 0: The maximum resident set size (KB) = 2083176 + 0: The total amount of wall time = 447.598959 + 0: The maximum resident set size (KB) = 2143388 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -580,14 +581,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.372286 - 0: The maximum resident set size (KB) = 1980968 + 0: The total amount of wall time = 243.418353 + 0: The maximum resident set size (KB) = 1956644 Test 008 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -652,14 +653,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 454.457720 - 0: The maximum resident set size (KB) = 1988052 + 0: The total amount of wall time = 447.668426 + 0: The maximum resident set size (KB) = 1988964 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_qr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -712,14 +713,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.249140 - 0: The maximum resident set size (KB) = 1735208 + 0: The total amount of wall time = 246.785889 + 0: The maximum resident set size (KB) = 1733980 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -772,14 +773,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 521.841303 - 0: The maximum resident set size (KB) = 2502488 + 0: The total amount of wall time = 520.457736 + 0: The maximum resident set size (KB) = 2500948 Test 011 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -832,14 +833,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.854177 - 0: The maximum resident set size (KB) = 2059988 + 0: The total amount of wall time = 448.912275 + 0: The maximum resident set size (KB) = 2082960 -Test 012 cpld_decomp_p8_intel PASS Tries: 2 +Test 012 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_mpi_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -892,14 +893,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 408.125857 - 0: The maximum resident set size (KB) = 1900564 + 0: The total amount of wall time = 372.316380 + 0: The maximum resident set size (KB) = 1893380 -Test 013 cpld_mpi_p8_intel PASS Tries: 2 +Test 013 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -964,14 +965,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.541673 - 0: The maximum resident set size (KB) = 2078536 + 0: The total amount of wall time = 437.237906 + 0: The maximum resident set size (KB) = 2084452 -Test 014 cpld_control_ciceC_p8_intel PASS Tries: 2 +Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1024,14 +1025,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 914.200222 - 0: The maximum resident set size (KB) = 2805352 + 0: The total amount of wall time = 900.935256 + 0: The maximum resident set size (KB) = 2803012 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1084,14 +1085,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 338.460128 - 0: The maximum resident set size (KB) = 2923900 + 0: The total amount of wall time = 341.271742 + 0: The maximum resident set size (KB) = 2928692 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1139,14 +1140,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 519.021838 - 0: The maximum resident set size (KB) = 3627388 + 0: The total amount of wall time = 514.528403 + 0: The maximum resident set size (KB) = 3630092 Test 017 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_restart_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1194,14 +1195,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.137727 - 0: The maximum resident set size (KB) = 3614712 + 0: The total amount of wall time = 340.551144 + 0: The maximum resident set size (KB) = 3617288 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_s2sa_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1252,14 +1253,14 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 287.933326 - 0: The maximum resident set size (KB) = 2031440 + 0: The total amount of wall time = 286.309861 + 0: The maximum resident set size (KB) = 2057880 -Test 019 cpld_s2sa_p8_intel PASS Tries: 2 +Test 019 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1324,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.970893 - 0: The maximum resident set size (KB) = 1763084 + 0: The total amount of wall time = 404.904539 + 0: The maximum resident set size (KB) = 1784052 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_nowave_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1393,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 232.350037 - 0: The maximum resident set size (KB) = 1827540 + 0: The total amount of wall time = 226.016074 + 0: The maximum resident set size (KB) = 1822120 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1452,14 +1453,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.536000 - 0: The maximum resident set size (KB) = 2054648 + 0: The total amount of wall time = 398.678941 + 0: The maximum resident set size (KB) = 2067244 Test 022 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1512,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.208683 - 0: The maximum resident set size (KB) = 1799664 + 0: The total amount of wall time = 271.280051 + 0: The maximum resident set size (KB) = 1791540 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1580,14 +1581,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel 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 = 229.858121 - 0: The maximum resident set size (KB) = 1827756 + 0: The total amount of wall time = 228.957639 + 0: The maximum resident set size (KB) = 1812916 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1637,14 +1638,14 @@ Checking test 025 cpld_control_c48_intel 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 = 428.843639 - 0: The maximum resident set size (KB) = 2841080 + 0: The total amount of wall time = 429.186280 + 0: The maximum resident set size (KB) = 2831084 Test 025 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1709,82 +1710,215 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 477.014058 - 0: The maximum resident set size (KB) = 2094876 + 0: The total amount of wall time = 427.219562 + 0: The maximum resident set size (KB) = 2063272 -Test 026 cpld_control_p8_faster_intel PASS Tries: 2 +Test 026 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... - Comparing sfcf021.tile1.nc ............MISSING file - Comparing sfcf021.tile2.nc ............MISSING file - Comparing sfcf021.tile3.nc ............MISSING file - Comparing sfcf021.tile4.nc ............MISSING file - Comparing sfcf021.tile5.nc ............MISSING file - Comparing sfcf021.tile6.nc ............MISSING file - Comparing atmf021.tile1.nc ............MISSING file - Comparing atmf021.tile2.nc ............MISSING file - Comparing atmf021.tile3.nc ............MISSING file - Comparing atmf021.tile4.nc ............MISSING file - Comparing atmf021.tile5.nc ............MISSING file - Comparing atmf021.tile6.nc ............MISSING file - Comparing sfcf024.tile1.nc ............MISSING file - Comparing sfcf024.tile2.nc ............MISSING file - Comparing sfcf024.tile3.nc ............MISSING file - Comparing sfcf024.tile4.nc ............MISSING file - Comparing sfcf024.tile5.nc ............MISSING file - Comparing sfcf024.tile6.nc ............MISSING file - Comparing atmf024.tile1.nc ............MISSING file - Comparing atmf024.tile2.nc ............MISSING file - Comparing atmf024.tile3.nc ............MISSING file - Comparing atmf024.tile4.nc ............MISSING file - Comparing atmf024.tile5.nc ............MISSING file - Comparing atmf024.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.coupler.res ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............MISSING file - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............MISSING file - Comparing RESTART/20210323.060000.MOM.res.nc ............MISSING file - Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING file - Comparing 20210323.060000.out_pnt.ww3 ............MISSING file - Comparing 20210323.060000.out_grd.ww3 ............MISSING file - -Test 027 cpld_control_pdlib_p8_intel FAIL + 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 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 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 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 819.228529 + 0: The maximum resident set size (KB) = 1814312 + +Test 027 cpld_control_pdlib_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_pdlib_p8_intel +Checking test 028 cpld_restart_pdlib_p8_intel results .... + 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 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 388.517995 + 0: The maximum resident set size (KB) = 1279496 + +Test 028 cpld_restart_pdlib_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_pdlib_p8_intel +Checking test 029 cpld_mpi_pdlib_p8_intel results .... + 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 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 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 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 911.188061 + 0: The maximum resident set size (KB) = 1731252 + +Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1836,14 +1970,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1287.936420 - 0: The maximum resident set size (KB) = 1786016 + 0: The total amount of wall time = 1288.496839 + 0: The maximum resident set size (KB) = 1763196 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1854,14 +1988,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.658387 - 0: The maximum resident set size (KB) = 716736 + 0: The total amount of wall time = 160.558973 + 0: The maximum resident set size (KB) = 719896 -Test 031 control_flake_intel PASS Tries: 2 +Test 031 control_flake_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1888,18 +2022,18 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 115.209942 - 0: The maximum resident set size (KB) = 658928 + 0: The total amount of wall time = 115.469097 + 0: The maximum resident set size (KB) = 668352 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel 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 cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -1910,14 +2044,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 121.703668 - 0: The maximum resident set size (KB) = 674704 + 0: The total amount of wall time = 122.827407 + 0: The maximum resident set size (KB) = 671740 -Test 033 control_CubedSphereGrid_parallel_intel PASS Tries: 2 +Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1928,14 +2062,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.605991 - 0: The maximum resident set size (KB) = 666480 + 0: The total amount of wall time = 116.871995 + 0: The maximum resident set size (KB) = 672188 -Test 034 control_latlon_intel PASS Tries: 2 +Test 034 control_latlon_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1946,14 +2080,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.904135 - 0: The maximum resident set size (KB) = 667832 + 0: The total amount of wall time = 119.276726 + 0: The maximum resident set size (KB) = 675984 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1992,14 +2126,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 339.835754 -0: The maximum resident set size (KB) = 853932 +0: The total amount of wall time = 340.004592 +0: The maximum resident set size (KB) = 860596 -Test 036 control_c48_intel PASS Tries: 2 +Test 036 control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2010,14 +2144,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 461.206964 - 0: The maximum resident set size (KB) = 988552 + 0: The total amount of wall time = 461.989793 + 0: The maximum resident set size (KB) = 953072 Test 037 control_c192_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2028,14 +2162,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 541.734376 - 0: The maximum resident set size (KB) = 1447776 + 0: The total amount of wall time = 488.440029 + 0: The maximum resident set size (KB) = 1450092 -Test 038 control_c384_intel PASS Tries: 2 +Test 038 control_c384_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2078,14 +2212,14 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.325190 - 0: The maximum resident set size (KB) = 1526816 + 0: The total amount of wall time = 418.818981 + 0: The maximum resident set size (KB) = 1521588 -Test 039 control_c384gdas_intel PASS Tries: 2 +Test 039 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2096,28 +2230,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.350487 - 0: The maximum resident set size (KB) = 670048 + 0: The total amount of wall time = 76.867347 + 0: The maximum resident set size (KB) = 671016 Test 040 control_stochy_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 44.074196 - 0: The maximum resident set size (KB) = 548808 + 0: The total amount of wall time = 42.754203 + 0: The maximum resident set size (KB) = 537968 Test 041 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2128,14 +2262,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 74.531921 - 0: The maximum resident set size (KB) = 667064 + 0: The total amount of wall time = 73.127497 + 0: The maximum resident set size (KB) = 672160 -Test 042 control_lndp_intel PASS Tries: 2 +Test 042 control_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2150,14 +2284,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.342063 - 0: The maximum resident set size (KB) = 675472 + 0: The total amount of wall time = 116.744324 + 0: The maximum resident set size (KB) = 676384 Test 043 control_iovr4_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2172,14 +2306,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.458364 - 0: The maximum resident set size (KB) = 671368 + 0: The total amount of wall time = 116.860251 + 0: The maximum resident set size (KB) = 672124 Test 044 control_iovr5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2226,14 +2360,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.597150 - 0: The maximum resident set size (KB) = 1640124 + 0: The total amount of wall time = 145.061704 + 0: The maximum resident set size (KB) = 1634472 -Test 045 control_p8_intel PASS Tries: 2 +Test 045 control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2280,14 +2414,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.086114 - 0: The maximum resident set size (KB) = 1645976 + 0: The total amount of wall time = 137.661254 + 0: The maximum resident set size (KB) = 1656664 -Test 046 control_p8_ugwpv1_intel PASS Tries: 2 +Test 046 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_restart_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2326,14 +2460,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 76.727423 - 0: The maximum resident set size (KB) = 917688 + 0: The total amount of wall time = 77.130171 + 0: The maximum resident set size (KB) = 919672 Test 047 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_noqr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2380,14 +2514,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 141.223084 - 0: The maximum resident set size (KB) = 1631348 + 0: The total amount of wall time = 139.775580 + 0: The maximum resident set size (KB) = 1635156 Test 048 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_restart_noqr_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2426,14 +2560,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 74.300565 - 0: The maximum resident set size (KB) = 983800 + 0: The total amount of wall time = 74.475199 + 0: The maximum resident set size (KB) = 984860 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_decomp_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2476,14 +2610,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.930899 - 0: The maximum resident set size (KB) = 1639976 + 0: The total amount of wall time = 146.152750 + 0: The maximum resident set size (KB) = 1635436 Test 050 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_2threads_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2526,14 +2660,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 134.342971 - 0: The maximum resident set size (KB) = 1733264 + 0: The total amount of wall time = 132.556556 + 0: The maximum resident set size (KB) = 1731980 Test 051 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2552,14 +2686,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 258.237944 - 0: The maximum resident set size (KB) = 1637068 + 0: The total amount of wall time = 257.060969 + 0: The maximum resident set size (KB) = 1643248 Test 052 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2606,14 +2740,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.576495 - 0: The maximum resident set size (KB) = 1720568 + 0: The total amount of wall time = 196.168379 + 0: The maximum resident set size (KB) = 1720164 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2660,14 +2794,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.308880 - 0: The maximum resident set size (KB) = 1660080 + 0: The total amount of wall time = 144.519394 + 0: The maximum resident set size (KB) = 1647016 Test 054 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2714,14 +2848,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.290448 - 0: The maximum resident set size (KB) = 1656636 + 0: The total amount of wall time = 169.715624 + 0: The maximum resident set size (KB) = 1653872 Test 055 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2732,28 +2866,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 262.726147 - 0: The maximum resident set size (KB) = 959656 + 0: The total amount of wall time = 259.682423 + 0: The maximum resident set size (KB) = 964060 Test 056 regional_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 141.499937 - 0: The maximum resident set size (KB) = 1107916 + 0: The total amount of wall time = 139.218997 + 0: The maximum resident set size (KB) = 1110500 Test 057 regional_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2764,14 +2898,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.393541 - 0: The maximum resident set size (KB) = 953328 + 0: The total amount of wall time = 274.107719 + 0: The maximum resident set size (KB) = 947504 Test 058 regional_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2782,14 +2916,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 165.225023 - 0: The maximum resident set size (KB) = 922692 + 0: The total amount of wall time = 159.762424 + 0: The maximum resident set size (KB) = 914548 Test 059 regional_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2797,28 +2931,28 @@ Checking test 060 regional_noquilt_intel 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 = 251.330694 - 0: The maximum resident set size (KB) = 1493716 + 0: The total amount of wall time = 252.677829 + 0: The maximum resident set size (KB) = 1493136 Test 060 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 260.104307 - 0: The maximum resident set size (KB) = 963956 + 0: The total amount of wall time = 262.956978 + 0: The maximum resident set size (KB) = 961480 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_2dwrtdecomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2829,14 +2963,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 261.192835 - 0: The maximum resident set size (KB) = 955600 + 0: The total amount of wall time = 263.988556 + 0: The maximum resident set size (KB) = 959960 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2847,14 +2981,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 327.101789 - 0: The maximum resident set size (KB) = 2071620 + 0: The total amount of wall time = 324.714372 + 0: The maximum resident set size (KB) = 2092488 Test 063 regional_wofs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2901,14 +3035,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.903284 - 0: The maximum resident set size (KB) = 1213264 + 0: The total amount of wall time = 389.625947 + 0: The maximum resident set size (KB) = 1190880 Test 064 rap_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2919,14 +3053,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 208.305294 - 0: The maximum resident set size (KB) = 1413476 + 0: The total amount of wall time = 211.718328 + 0: The maximum resident set size (KB) = 1412448 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2973,14 +3107,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.682532 - 0: The maximum resident set size (KB) = 1127808 + 0: The total amount of wall time = 402.497674 + 0: The maximum resident set size (KB) = 1138468 Test 066 rap_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3027,14 +3161,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 363.557570 - 0: The maximum resident set size (KB) = 1371072 + 0: The total amount of wall time = 361.407079 + 0: The maximum resident set size (KB) = 1378812 Test 067 rap_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3073,14 +3207,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.364241 - 0: The maximum resident set size (KB) = 1134996 + 0: The total amount of wall time = 197.224144 + 0: The maximum resident set size (KB) = 1134656 Test 068 rap_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3127,14 +3261,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.516146 - 0: The maximum resident set size (KB) = 1206612 + 0: The total amount of wall time = 383.522159 + 0: The maximum resident set size (KB) = 1202664 Test 069 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3181,14 +3315,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.194509 - 0: The maximum resident set size (KB) = 1128436 + 0: The total amount of wall time = 405.592510 + 0: The maximum resident set size (KB) = 1164520 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3227,14 +3361,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.191052 - 0: The maximum resident set size (KB) = 1189684 + 0: The total amount of wall time = 286.139264 + 0: The maximum resident set size (KB) = 1193180 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3281,14 +3415,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.807382 - 0: The maximum resident set size (KB) = 1075168 + 0: The total amount of wall time = 200.555986 + 0: The maximum resident set size (KB) = 1067560 Test 072 hrrr_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3335,14 +3469,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.138737 - 0: The maximum resident set size (KB) = 1058192 + 0: The total amount of wall time = 200.294520 + 0: The maximum resident set size (KB) = 1046540 Test 073 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3389,28 +3523,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.578821 - 0: The maximum resident set size (KB) = 1122964 + 0: The total amount of wall time = 181.885566 + 0: The maximum resident set size (KB) = 1126204 Test 074 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.443347 - 0: The maximum resident set size (KB) = 1035476 + 0: The total amount of wall time = 102.846971 + 0: The maximum resident set size (KB) = 1033336 Test 075 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3457,14 +3591,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.427836 - 0: The maximum resident set size (KB) = 1200228 + 0: The total amount of wall time = 371.191837 + 0: The maximum resident set size (KB) = 1188564 Test 076 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3479,14 +3613,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 450.047371 - 0: The maximum resident set size (KB) = 2009708 + 0: The total amount of wall time = 446.802734 + 0: The maximum resident set size (KB) = 2004024 Test 077 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3501,14 +3635,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 440.724624 - 0: The maximum resident set size (KB) = 2182668 + 0: The total amount of wall time = 434.135716 + 0: The maximum resident set size (KB) = 2186512 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3519,14 +3653,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 300.082030 - 0: The maximum resident set size (KB) = 823988 + 0: The total amount of wall time = 297.044587 + 0: The maximum resident set size (KB) = 835240 Test 079 control_csawmg_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3537,14 +3671,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 294.086778 - 0: The maximum resident set size (KB) = 843556 + 0: The total amount of wall time = 291.377983 + 0: The maximum resident set size (KB) = 823612 Test 080 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3555,26 +3689,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.130203 - 0: The maximum resident set size (KB) = 808704 + 0: The total amount of wall time = 162.654382 + 0: The maximum resident set size (KB) = 815960 Test 081 control_ras_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 100.606517 - 0: The maximum resident set size (KB) = 797592 + 0: The total amount of wall time = 99.655438 + 0: The maximum resident set size (KB) = 812260 Test 082 control_wam_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3621,14 +3755,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.972396 - 0: The maximum resident set size (KB) = 1636296 + 0: The total amount of wall time = 127.181433 + 0: The maximum resident set size (KB) = 1647156 Test 083 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3639,14 +3773,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 238.558492 - 0: The maximum resident set size (KB) = 952760 + 0: The total amount of wall time = 237.880900 + 0: The maximum resident set size (KB) = 956444 Test 084 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3673,364 +3807,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 126.888170 - 0: The maximum resident set size (KB) = 830124 + 0: The total amount of wall time = 125.470245 + 0: The maximum resident set size (KB) = 814572 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 124.835124 - 0: The maximum resident set size (KB) = 835952 + 0: The total amount of wall time = 125.132941 + 0: The maximum resident set size (KB) = 823136 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.957425 - 0: The maximum resident set size (KB) = 834384 + 0: The total amount of wall time = 141.991790 + 0: The maximum resident set size (KB) = 832684 Test 087 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.340528 - 0: The maximum resident set size (KB) = 821296 + 0: The total amount of wall time = 126.966450 + 0: The maximum resident set size (KB) = 828920 Test 088 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.192196 - 0: The maximum resident set size (KB) = 884260 + 0: The total amount of wall time = 194.627451 + 0: The maximum resident set size (KB) = 866868 Test 089 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.907104 - 0: The maximum resident set size (KB) = 868600 + 0: The total amount of wall time = 190.947157 + 0: The maximum resident set size (KB) = 878232 Test 090 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_debug_intel Checking test 091 control_ras_debug_intel 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.785064 - 0: The maximum resident set size (KB) = 835496 + 0: The total amount of wall time = 130.513632 + 0: The maximum resident set size (KB) = 828404 Test 091 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.079542 - 0: The maximum resident set size (KB) = 877800 + 0: The total amount of wall time = 129.751338 + 0: The maximum resident set size (KB) = 881996 Test 092 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.337989 - 0: The maximum resident set size (KB) = 1674152 + 0: The total amount of wall time = 132.554376 + 0: The maximum resident set size (KB) = 1658420 Test 093 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 839.333055 - 0: The maximum resident set size (KB) = 900736 + 0: The total amount of wall time = 836.552612 + 0: The maximum resident set size (KB) = 890324 Test 094 regional_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.381773 - 0: The maximum resident set size (KB) = 1216324 + 0: The total amount of wall time = 233.556729 + 0: The maximum resident set size (KB) = 1216664 Test 095 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.944232 - 0: The maximum resident set size (KB) = 1219120 + 0: The total amount of wall time = 222.667200 + 0: The maximum resident set size (KB) = 1227340 Test 096 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.843397 - 0: The maximum resident set size (KB) = 1210664 + 0: The total amount of wall time = 230.969170 + 0: The maximum resident set size (KB) = 1212456 Test 097 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.161106 - 0: The maximum resident set size (KB) = 1210332 + 0: The total amount of wall time = 231.635420 + 0: The maximum resident set size (KB) = 1222004 Test 098 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_unified_drag_suite_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.745199 - 0: The maximum resident set size (KB) = 1213624 + 0: The total amount of wall time = 230.595457 + 0: The maximum resident set size (KB) = 1215076 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.468888 - 0: The maximum resident set size (KB) = 1298912 + 0: The total amount of wall time = 239.791318 + 0: The maximum resident set size (KB) = 1300716 Test 100 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.993301 - 0: The maximum resident set size (KB) = 1217228 + 0: The total amount of wall time = 235.163433 + 0: The maximum resident set size (KB) = 1219900 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_unified_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel 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.920274 - 0: The maximum resident set size (KB) = 1215824 + 0: The total amount of wall time = 236.851145 + 0: The maximum resident set size (KB) = 1209548 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.246463 - 0: The maximum resident set size (KB) = 1214152 + 0: The total amount of wall time = 231.125197 + 0: The maximum resident set size (KB) = 1222332 Test 103 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.206598 - 0: The maximum resident set size (KB) = 1212532 + 0: The total amount of wall time = 233.216756 + 0: The maximum resident set size (KB) = 1206980 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.341978 - 0: The maximum resident set size (KB) = 1224036 + 0: The total amount of wall time = 230.875726 + 0: The maximum resident set size (KB) = 1222916 Test 105 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel 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.989994 - 0: The maximum resident set size (KB) = 1216636 + 0: The total amount of wall time = 230.810219 + 0: The maximum resident set size (KB) = 1222216 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.022396 - 0: The maximum resident set size (KB) = 1213916 + 0: The total amount of wall time = 382.980955 + 0: The maximum resident set size (KB) = 1214644 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel 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.127133 - 0: The maximum resident set size (KB) = 1220928 + 0: The total amount of wall time = 230.960365 + 0: The maximum resident set size (KB) = 1207040 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.438861 - 0: The maximum resident set size (KB) = 1214000 + 0: The total amount of wall time = 279.957022 + 0: The maximum resident set size (KB) = 1216724 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.288404 - 0: The maximum resident set size (KB) = 1212436 + 0: The total amount of wall time = 231.389432 + 0: The maximum resident set size (KB) = 1218844 Test 110 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4071,14 +4205,14 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 403.085612 - 0: The maximum resident set size (KB) = 1223832 + 0: The total amount of wall time = 399.982991 + 0: The maximum resident set size (KB) = 1217272 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4089,14 +4223,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 197.607985 - 0: The maximum resident set size (KB) = 1276428 + 0: The total amount of wall time = 201.215618 + 0: The maximum resident set size (KB) = 1278060 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4143,14 +4277,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.760880 - 0: The maximum resident set size (KB) = 1131740 + 0: The total amount of wall time = 318.079420 + 0: The maximum resident set size (KB) = 1138676 Test 113 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4197,14 +4331,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.718473 - 0: The maximum resident set size (KB) = 1029100 + 0: The total amount of wall time = 168.499509 + 0: The maximum resident set size (KB) = 1029072 Test 114 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4251,14 +4385,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.707507 - 0: The maximum resident set size (KB) = 1283492 + 0: The total amount of wall time = 295.368465 + 0: The maximum resident set size (KB) = 1293040 Test 115 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4305,14 +4439,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.297684 - 0: The maximum resident set size (KB) = 1038164 + 0: The total amount of wall time = 157.814221 + 0: The maximum resident set size (KB) = 1040040 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4359,14 +4493,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.198837 - 0: The maximum resident set size (KB) = 991592 + 0: The total amount of wall time = 173.198472 + 0: The maximum resident set size (KB) = 993740 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4405,28 +4539,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.434206 - 0: The maximum resident set size (KB) = 1107128 + 0: The total amount of wall time = 240.867267 + 0: The maximum resident set size (KB) = 1099876 Test 118 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.848379 - 0: The maximum resident set size (KB) = 977196 + 0: The total amount of wall time = 85.178843 + 0: The maximum resident set size (KB) = 964632 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4442,40 +4576,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 102.169098 - 0: The maximum resident set size (KB) = 1293252 + 0: The total amount of wall time = 101.594377 + 0: The maximum resident set size (KB) = 1306864 Test 120 conus13km_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 43.568493 - 0: The maximum resident set size (KB) = 1209568 + 0: The total amount of wall time = 45.171303 + 0: The maximum resident set size (KB) = 1199820 Test 121 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 57.840616 - 0: The maximum resident set size (KB) = 1148928 + 0: The total amount of wall time = 55.999888 + 0: The maximum resident set size (KB) = 1158632 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4522,42 +4656,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.309497 - 0: The maximum resident set size (KB) = 1066912 + 0: The total amount of wall time = 213.873372 + 0: The maximum resident set size (KB) = 1091324 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.445342 - 0: The maximum resident set size (KB) = 1094156 + 0: The total amount of wall time = 229.713228 + 0: The maximum resident set size (KB) = 1095388 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.621117 - 0: The maximum resident set size (KB) = 1094760 + 0: The total amount of wall time = 221.321839 + 0: The maximum resident set size (KB) = 1095304 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4571,14 +4705,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 700.223625 - 0: The maximum resident set size (KB) = 1351836 + 0: The total amount of wall time = 714.814052 + 0: The maximum resident set size (KB) = 1349380 Test 126 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_qr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4592,81 +4726,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 710.224736 - 0: The maximum resident set size (KB) = 985456 + 0: The total amount of wall time = 703.419408 + 0: The maximum resident set size (KB) = 997992 Test 127 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_2threads_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.438495 - 0: The maximum resident set size (KB) = 1238812 + 0: The total amount of wall time = 398.636484 + 0: The maximum resident set size (KB) = 1233004 Test 128 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 697.101146 - 0: The maximum resident set size (KB) = 1413152 + 0: The total amount of wall time = 700.811067 + 0: The maximum resident set size (KB) = 1412176 Test 129 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.387083 - 0: The maximum resident set size (KB) = 1158072 + 0: The total amount of wall time = 229.167810 + 0: The maximum resident set size (KB) = 1155192 Test 130 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 318.219404 - 0: The maximum resident set size (KB) = 880756 + 0: The total amount of wall time = 324.730576 + 0: The maximum resident set size (KB) = 883568 Test 131 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 294.264579 - 0: The maximum resident set size (KB) = 1275120 + 0: The total amount of wall time = 303.203408 + 0: The maximum resident set size (KB) = 1280376 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4675,14 +4809,14 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 386.882521 - 0: The maximum resident set size (KB) = 937016 + 0: The total amount of wall time = 386.410592 + 0: The maximum resident set size (KB) = 944528 Test 133 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4691,14 +4825,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 834.985586 - 0: The maximum resident set size (KB) = 986208 + 0: The total amount of wall time = 832.722555 + 0: The maximum resident set size (KB) = 977228 Test 134 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,14 +4843,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 895.923168 - 0: The maximum resident set size (KB) = 1013300 + 0: The total amount of wall time = 905.794290 + 0: The maximum resident set size (KB) = 1003888 Test 135 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4727,25 +4861,25 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 316.310829 - 0: The maximum resident set size (KB) = 606100 + 0: The total amount of wall time = 316.953507 + 0: The maximum resident set size (KB) = 604264 Test 136 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4754,14 +4888,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 408.365739 - 0: The maximum resident set size (KB) = 618356 + 0: The total amount of wall time = 407.877105 + 0: The maximum resident set size (KB) = 619996 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4781,14 +4915,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK @@ -4797,25 +4931,25 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 166.042718 - 0: The maximum resident set size (KB) = 438292 + 0: The total amount of wall time = 156.085969 + 0: The maximum resident set size (KB) = 433736 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4835,14 +4969,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -4850,39 +4984,39 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK @@ -4897,14 +5031,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 453.332607 - 0: The maximum resident set size (KB) = 537604 + 0: The total amount of wall time = 462.226901 + 0: The maximum resident set size (KB) = 547132 Test 139 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4913,14 +5047,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 226.879802 - 0: The maximum resident set size (KB) = 620332 + 0: The total amount of wall time = 223.727900 + 0: The maximum resident set size (KB) = 616300 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4937,19 +5071,19 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 216.933118 - 0: The maximum resident set size (KB) = 619076 + 0: The total amount of wall time = 212.472712 + 0: The maximum resident set size (KB) = 620256 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4958,96 +5092,96 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 283.978888 - 0: The maximum resident set size (KB) = 679916 + 0: The total amount of wall time = 288.116317 + 0: The maximum resident set size (KB) = 676824 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 74.304153 - 0: The maximum resident set size (KB) = 452716 + 0: The total amount of wall time = 76.737288 + 0: The maximum resident set size (KB) = 451580 Test 143 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/gnv1_nested_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_nested_intel Checking test 144 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 239.021405 - 0: The maximum resident set size (KB) = 899060 - -Test 144 gnv1_nested_intel FAIL Tries: 2 + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 243.951915 + 0: The maximum resident set size (KB) = 897024 + +Test 144 gnv1_nested_intel PASS Tries: 2 baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 666.547921 - 0: The maximum resident set size (KB) = 637352 + 0: The total amount of wall time = 667.022543 + 0: The maximum resident set size (KB) = 634396 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,162 +5192,162 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 966.169377 - 0: The maximum resident set size (KB) = 740944 + 0: The total amount of wall time = 957.706181 + 0: The maximum resident set size (KB) = 848040 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_docn_intel -Checking test 147 hafs_regional_docn_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_docn_intel +Checking test 149 hafs_regional_docn_intel 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 = 326.177224 - 0: The maximum resident set size (KB) = 932164 + 0: The total amount of wall time = 323.775451 + 0: The maximum resident set size (KB) = 952092 -Test 147 hafs_regional_docn_intel PASS +Test 149 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_docn_oisst_intel -Checking test 148 hafs_regional_docn_oisst_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_docn_oisst_intel +Checking test 150 hafs_regional_docn_oisst_intel 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 = 332.027398 - 0: The maximum resident set size (KB) = 936888 + 0: The total amount of wall time = 324.844830 + 0: The maximum resident set size (KB) = 938744 -Test 148 hafs_regional_docn_oisst_intel PASS +Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hafs_regional_datm_cdeps_intel -Checking test 149 hafs_regional_datm_cdeps_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_datm_cdeps_intel +Checking test 151 hafs_regional_datm_cdeps_intel 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 = 985.430466 - 0: The maximum resident set size (KB) = 1341000 + 0: The total amount of wall time = 973.517080 + 0: The maximum resident set size (KB) = 1344836 -Test 149 hafs_regional_datm_cdeps_intel PASS +Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_control_cfsr_intel -Checking test 150 datm_cdeps_control_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_cfsr_intel +Checking test 152 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.405192 - 0: The maximum resident set size (KB) = 1146844 + 0: The total amount of wall time = 122.332679 + 0: The maximum resident set size (KB) = 1155588 -Test 150 datm_cdeps_control_cfsr_intel PASS +Test 152 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_restart_cfsr_intel -Checking test 151 datm_cdeps_restart_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_restart_cfsr_intel +Checking test 153 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 74.563422 - 0: The maximum resident set size (KB) = 1084108 + 0: The total amount of wall time = 73.180763 + 0: The maximum resident set size (KB) = 1097492 -Test 151 datm_cdeps_restart_cfsr_intel PASS +Test 153 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_control_gefs_intel -Checking test 152 datm_cdeps_control_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_gefs_intel +Checking test 154 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 116.800618 - 0: The maximum resident set size (KB) = 1003336 + 0: The total amount of wall time = 118.242790 + 0: The maximum resident set size (KB) = 1010916 -Test 152 datm_cdeps_control_gefs_intel PASS +Test 154 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_iau_gefs_intel -Checking test 153 datm_cdeps_iau_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_iau_gefs_intel +Checking test 155 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.520018 - 0: The maximum resident set size (KB) = 1005620 + 0: The total amount of wall time = 119.071605 + 0: The maximum resident set size (KB) = 1011076 -Test 153 datm_cdeps_iau_gefs_intel PASS +Test 155 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_stochy_gefs_intel -Checking test 154 datm_cdeps_stochy_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_stochy_gefs_intel +Checking test 156 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.550527 - 0: The maximum resident set size (KB) = 1015604 + 0: The total amount of wall time = 120.169395 + 0: The maximum resident set size (KB) = 1011552 -Test 154 datm_cdeps_stochy_gefs_intel PASS +Test 156 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_ciceC_cfsr_intel -Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_ciceC_cfsr_intel +Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.609648 - 0: The maximum resident set size (KB) = 1141840 + 0: The total amount of wall time = 123.276614 + 0: The maximum resident set size (KB) = 1150656 -Test 155 datm_cdeps_ciceC_cfsr_intel PASS +Test 157 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_bulk_cfsr_intel -Checking test 156 datm_cdeps_bulk_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_bulk_cfsr_intel +Checking test 158 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.662698 - 0: The maximum resident set size (KB) = 1136156 + 0: The total amount of wall time = 121.858840 + 0: The maximum resident set size (KB) = 1151816 -Test 156 datm_cdeps_bulk_cfsr_intel PASS +Test 158 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_bulk_gefs_intel -Checking test 157 datm_cdeps_bulk_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_bulk_gefs_intel +Checking test 159 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 115.934917 - 0: The maximum resident set size (KB) = 1005968 + 0: The total amount of wall time = 117.074949 + 0: The maximum resident set size (KB) = 1009032 -Test 157 datm_cdeps_bulk_gefs_intel PASS +Test 159 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_mx025_cfsr_intel -Checking test 158 datm_cdeps_mx025_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_mx025_cfsr_intel +Checking test 160 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5221,15 +5355,15 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel 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 = 283.119849 - 0: The maximum resident set size (KB) = 1149372 + 0: The total amount of wall time = 286.740938 + 0: The maximum resident set size (KB) = 1162568 -Test 158 datm_cdeps_mx025_cfsr_intel PASS +Test 160 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_mx025_gefs_intel -Checking test 159 datm_cdeps_mx025_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_mx025_gefs_intel +Checking test 161 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5237,78 +5371,78 @@ Checking test 159 datm_cdeps_mx025_gefs_intel 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 = 276.128497 - 0: The maximum resident set size (KB) = 1144856 + 0: The total amount of wall time = 284.765434 + 0: The maximum resident set size (KB) = 1158664 -Test 159 datm_cdeps_mx025_gefs_intel PASS +Test 161 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_multiple_files_cfsr_intel -Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_multiple_files_cfsr_intel +Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.498847 - 0: The maximum resident set size (KB) = 1146488 + 0: The total amount of wall time = 121.540808 + 0: The maximum resident set size (KB) = 1141104 -Test 160 datm_cdeps_multiple_files_cfsr_intel PASS +Test 162 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_3072x1536_cfsr_intel -Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_3072x1536_cfsr_intel +Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.841622 - 0: The maximum resident set size (KB) = 2406480 + 0: The total amount of wall time = 176.127626 + 0: The maximum resident set size (KB) = 2391924 -Test 161 datm_cdeps_3072x1536_cfsr_intel PASS +Test 163 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_gfs_intel -Checking test 162 datm_cdeps_gfs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_gfs_intel +Checking test 164 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 174.889112 - 0: The maximum resident set size (KB) = 2417812 + 0: The total amount of wall time = 174.362564 + 0: The maximum resident set size (KB) = 2335200 -Test 162 datm_cdeps_gfs_intel PASS +Test 164 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_debug_cfsr_intel -Checking test 163 datm_cdeps_debug_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_debug_cfsr_intel +Checking test 165 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 294.582664 - 0: The maximum resident set size (KB) = 1062116 + 0: The total amount of wall time = 302.638209 + 0: The maximum resident set size (KB) = 1058224 -Test 163 datm_cdeps_debug_cfsr_intel PASS +Test 165 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_control_cfsr_faster_intel -Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_cfsr_faster_intel +Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.149305 - 0: The maximum resident set size (KB) = 1147500 + 0: The total amount of wall time = 122.349426 + 0: The maximum resident set size (KB) = 1144892 -Test 164 datm_cdeps_control_cfsr_faster_intel PASS +Test 166 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_lnd_gswp3_intel -Checking test 165 datm_cdeps_lnd_gswp3_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_gswp3_intel +Checking test 167 datm_cdeps_lnd_gswp3_intel 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 @@ -5316,15 +5450,15 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 46.415124 - 0: The maximum resident set size (KB) = 336564 + 0: The total amount of wall time = 43.939883 + 0: The maximum resident set size (KB) = 326336 -Test 165 datm_cdeps_lnd_gswp3_intel PASS +Test 167 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_lnd_era5_intel -Checking test 166 datm_cdeps_lnd_era5_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_era5_intel +Checking test 168 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5332,15 +5466,15 @@ Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 50.697348 - 0: The maximum resident set size (KB) = 562340 + 0: The total amount of wall time = 43.386160 + 0: The maximum resident set size (KB) = 561996 -Test 166 datm_cdeps_lnd_era5_intel PASS +Test 168 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/datm_cdeps_lnd_era5_rst_intel -Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_era5_rst_intel +Checking test 169 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5348,15 +5482,15 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 29.969523 - 0: The maximum resident set size (KB) = 559460 + 0: The total amount of wall time = 27.161733 + 0: The maximum resident set size (KB) = 555864 -Test 167 datm_cdeps_lnd_era5_rst_intel PASS +Test 169 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_atmlnd_sbs_intel -Checking test 168 control_p8_atmlnd_sbs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_atmlnd_sbs_intel +Checking test 170 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5444,15 +5578,15 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 367.894193 - 0: The maximum resident set size (KB) = 1632544 + 0: The total amount of wall time = 336.232068 + 0: The maximum resident set size (KB) = 1649104 -Test 168 control_p8_atmlnd_sbs_intel PASS +Test 170 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_atmlnd_intel -Checking test 169 control_p8_atmlnd_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_atmlnd_intel +Checking test 171 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5540,15 +5674,15 @@ Checking test 169 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 361.224426 - 0: The maximum resident set size (KB) = 1659532 + 0: The total amount of wall time = 332.296084 + 0: The maximum resident set size (KB) = 1633772 -Test 169 control_p8_atmlnd_intel PASS +Test 171 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_restart_p8_atmlnd_intel -Checking test 170 control_restart_p8_atmlnd_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_p8_atmlnd_intel +Checking test 172 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5568,15 +5702,15 @@ Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 184.975986 - 0: The maximum resident set size (KB) = 951944 + 0: The total amount of wall time = 188.612905 + 0: The maximum resident set size (KB) = 934068 -Test 170 control_restart_p8_atmlnd_intel PASS +Test 172 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmwav_control_noaero_p8_intel -Checking test 171 atmwav_control_noaero_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmwav_control_noaero_p8_intel +Checking test 173 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5618,15 +5752,15 @@ Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 83.183729 - 0: The maximum resident set size (KB) = 1695132 + 0: The total amount of wall time = 81.314147 + 0: The maximum resident set size (KB) = 1695240 -Test 171 atmwav_control_noaero_p8_intel PASS +Test 173 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_atmwav_intel -Checking test 172 control_atmwav_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_atmwav_intel +Checking test 174 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5669,15 +5803,15 @@ Checking test 172 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 79.938286 - 0: The maximum resident set size (KB) = 695312 + 0: The total amount of wall time = 78.001288 + 0: The maximum resident set size (KB) = 698464 -Test 172 control_atmwav_intel PASS +Test 174 control_atmwav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmaero_control_p8_intel -Checking test 173 atmaero_control_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_intel +Checking test 175 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5720,15 +5854,15 @@ Checking test 173 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.814338 - 0: The maximum resident set size (KB) = 1801204 + 0: The total amount of wall time = 203.581790 + 0: The maximum resident set size (KB) = 1801968 -Test 173 atmaero_control_p8_intel PASS +Test 175 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmaero_control_p8_rad_intel -Checking test 174 atmaero_control_p8_rad_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_rad_intel +Checking test 176 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5771,15 +5905,15 @@ Checking test 174 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.843407 - 0: The maximum resident set size (KB) = 1812472 + 0: The total amount of wall time = 246.192215 + 0: The maximum resident set size (KB) = 1800168 -Test 174 atmaero_control_p8_rad_intel PASS +Test 176 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/atmaero_control_p8_rad_micro_intel -Checking test 175 atmaero_control_p8_rad_micro_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_rad_micro_intel +Checking test 177 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5822,15 +5956,15 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 262.772364 - 0: The maximum resident set size (KB) = 1825644 + 0: The total amount of wall time = 260.142406 + 0: The maximum resident set size (KB) = 1834644 -Test 175 atmaero_control_p8_rad_micro_intel PASS +Test 177 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_atmaq_debug_intel -Checking test 176 regional_atmaq_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_atmaq_debug_intel +Checking test 178 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5843,15 +5977,15 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 989.584118 - 0: The maximum resident set size (KB) = 4601816 + 0: The total amount of wall time = 979.546202 + 0: The maximum resident set size (KB) = 4600716 -Test 176 regional_atmaq_debug_intel PASS +Test 178 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_c48_gnu -Checking test 177 control_c48_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c48_gnu +Checking test 179 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5889,15 +6023,15 @@ Checking test 177 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 563.363008 -0: The maximum resident set size (KB) = 856940 +0: The total amount of wall time = 561.380842 +0: The maximum resident set size (KB) = 861196 -Test 177 control_c48_gnu PASS +Test 179 control_c48_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_gnu -Checking test 178 control_stochy_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_gnu +Checking test 180 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5907,15 +6041,15 @@ Checking test 178 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 127.169942 - 0: The maximum resident set size (KB) = 727048 + 0: The total amount of wall time = 132.735321 + 0: The maximum resident set size (KB) = 728368 -Test 178 control_stochy_gnu PASS +Test 180 control_stochy_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_gnu -Checking test 179 control_ras_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_gnu +Checking test 181 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5925,15 +6059,15 @@ Checking test 179 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.899428 - 0: The maximum resident set size (KB) = 729820 + 0: The total amount of wall time = 212.387051 + 0: The maximum resident set size (KB) = 732468 -Test 179 control_ras_gnu PASS +Test 181 control_ras_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_gnu -Checking test 180 control_p8_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_gnu +Checking test 182 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5979,15 +6113,15 @@ Checking test 180 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.214420 - 0: The maximum resident set size (KB) = 1510056 + 0: The total amount of wall time = 206.614920 + 0: The maximum resident set size (KB) = 1508852 -Test 180 control_p8_gnu PASS +Test 182 control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_p8_ugwpv1_gnu -Checking test 181 control_p8_ugwpv1_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_ugwpv1_gnu +Checking test 183 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6033,15 +6167,15 @@ Checking test 181 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.623402 - 0: The maximum resident set size (KB) = 1513160 + 0: The total amount of wall time = 200.602410 + 0: The maximum resident set size (KB) = 1511976 -Test 181 control_p8_ugwpv1_gnu PASS +Test 183 control_p8_ugwpv1_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_flake_gnu -Checking test 182 control_flake_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_flake_gnu +Checking test 184 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6051,15 +6185,15 @@ Checking test 182 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.239272 - 0: The maximum resident set size (KB) = 807620 + 0: The total amount of wall time = 253.272202 + 0: The maximum resident set size (KB) = 807136 -Test 182 control_flake_gnu PASS +Test 184 control_flake_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_gnu -Checking test 183 rap_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_gnu +Checking test 185 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6105,15 +6239,15 @@ Checking test 183 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.589669 - 0: The maximum resident set size (KB) = 1085004 + 0: The total amount of wall time = 452.279155 + 0: The maximum resident set size (KB) = 1093624 -Test 183 rap_control_gnu PASS +Test 185 rap_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_decomp_gnu -Checking test 184 rap_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_decomp_gnu +Checking test 186 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6159,15 +6293,15 @@ Checking test 184 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.814268 - 0: The maximum resident set size (KB) = 1084780 + 0: The total amount of wall time = 453.943202 + 0: The maximum resident set size (KB) = 1092632 -Test 184 rap_decomp_gnu PASS +Test 186 rap_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_gnu -Checking test 185 rap_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_gnu +Checking test 187 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6213,15 +6347,15 @@ Checking test 185 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 417.404534 - 0: The maximum resident set size (KB) = 1123048 + 0: The total amount of wall time = 414.089050 + 0: The maximum resident set size (KB) = 1149612 -Test 185 rap_2threads_gnu PASS +Test 187 rap_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_gnu -Checking test 186 rap_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_gnu +Checking test 188 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6259,15 +6393,15 @@ Checking test 186 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.359238 - 0: The maximum resident set size (KB) = 889836 + 0: The total amount of wall time = 228.342975 + 0: The maximum resident set size (KB) = 884352 -Test 186 rap_restart_gnu PASS +Test 188 rap_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_gnu -Checking test 187 rap_sfcdiff_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_gnu +Checking test 189 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6313,15 +6447,15 @@ Checking test 187 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.149754 - 0: The maximum resident set size (KB) = 1086356 + 0: The total amount of wall time = 446.395486 + 0: The maximum resident set size (KB) = 1088176 -Test 187 rap_sfcdiff_gnu PASS +Test 189 rap_sfcdiff_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_decomp_gnu -Checking test 188 rap_sfcdiff_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_decomp_gnu +Checking test 190 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6367,15 +6501,15 @@ Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.735775 - 0: The maximum resident set size (KB) = 1087128 + 0: The total amount of wall time = 459.881318 + 0: The maximum resident set size (KB) = 1084248 -Test 188 rap_sfcdiff_decomp_gnu PASS +Test 190 rap_sfcdiff_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_sfcdiff_restart_gnu -Checking test 189 rap_sfcdiff_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_restart_gnu +Checking test 191 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6413,15 +6547,15 @@ Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.816234 - 0: The maximum resident set size (KB) = 883520 + 0: The total amount of wall time = 332.956379 + 0: The maximum resident set size (KB) = 886932 -Test 189 rap_sfcdiff_restart_gnu PASS +Test 191 rap_sfcdiff_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_gnu -Checking test 190 hrrr_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_gnu +Checking test 192 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6467,15 +6601,15 @@ Checking test 190 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.761842 - 0: The maximum resident set size (KB) = 1070200 + 0: The total amount of wall time = 230.728674 + 0: The maximum resident set size (KB) = 1073092 -Test 190 hrrr_control_gnu PASS +Test 192 hrrr_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_noqr_gnu -Checking test 191 hrrr_control_noqr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_noqr_gnu +Checking test 193 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6521,15 +6655,15 @@ Checking test 191 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 235.102477 - 0: The maximum resident set size (KB) = 1135128 + 0: The total amount of wall time = 232.865718 + 0: The maximum resident set size (KB) = 1134184 -Test 191 hrrr_control_noqr_gnu PASS +Test 193 hrrr_control_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_gnu -Checking test 192 hrrr_control_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_gnu +Checking test 194 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6575,15 +6709,15 @@ Checking test 192 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.740428 - 0: The maximum resident set size (KB) = 1021000 + 0: The total amount of wall time = 208.331508 + 0: The maximum resident set size (KB) = 1043920 -Test 192 hrrr_control_2threads_gnu PASS +Test 194 hrrr_control_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_gnu -Checking test 193 hrrr_control_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_gnu +Checking test 195 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6629,43 +6763,43 @@ Checking test 193 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.833548 - 0: The maximum resident set size (KB) = 1072664 + 0: The total amount of wall time = 231.001047 + 0: The maximum resident set size (KB) = 1071688 -Test 193 hrrr_control_decomp_gnu PASS +Test 195 hrrr_control_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_gnu -Checking test 194 hrrr_control_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_gnu +Checking test 196 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.324844 - 0: The maximum resident set size (KB) = 883224 + 0: The total amount of wall time = 119.995498 + 0: The maximum resident set size (KB) = 880972 -Test 194 hrrr_control_restart_gnu PASS +Test 196 hrrr_control_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_noqr_gnu -Checking test 195 hrrr_control_restart_noqr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_noqr_gnu +Checking test 197 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.833400 - 0: The maximum resident set size (KB) = 932104 + 0: The total amount of wall time = 118.349497 + 0: The maximum resident set size (KB) = 933460 -Test 195 hrrr_control_restart_noqr_gnu PASS +Test 197 hrrr_control_restart_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_gnu -Checking test 196 rrfs_v1beta_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_gnu +Checking test 198 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6711,225 +6845,225 @@ Checking test 196 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.078496 - 0: The maximum resident set size (KB) = 1078552 + 0: The total amount of wall time = 450.827800 + 0: The maximum resident set size (KB) = 1079668 -Test 196 rrfs_v1beta_gnu PASS +Test 198 rrfs_v1beta_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_diag_debug_gnu -Checking test 197 control_diag_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_diag_debug_gnu +Checking test 199 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 69.728979 - 0: The maximum resident set size (KB) = 774764 + 0: The total amount of wall time = 66.889713 + 0: The maximum resident set size (KB) = 775480 -Test 197 control_diag_debug_gnu PASS +Test 199 control_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/regional_debug_gnu -Checking test 198 regional_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_debug_gnu +Checking test 200 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 373.963624 - 0: The maximum resident set size (KB) = 924724 + 0: The total amount of wall time = 381.579032 + 0: The maximum resident set size (KB) = 923492 -Test 198 regional_debug_gnu PASS +Test 200 regional_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_gnu -Checking test 199 rap_control_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_gnu +Checking test 201 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.131489 - 0: The maximum resident set size (KB) = 1094064 + 0: The total amount of wall time = 113.184094 + 0: The maximum resident set size (KB) = 1099820 -Test 199 rap_control_debug_gnu PASS +Test 201 rap_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_gnu -Checking test 200 hrrr_control_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_gnu +Checking test 202 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.117421 - 0: The maximum resident set size (KB) = 1085720 + 0: The total amount of wall time = 109.257697 + 0: The maximum resident set size (KB) = 1090168 -Test 200 hrrr_control_debug_gnu PASS +Test 202 hrrr_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_gf_debug_gnu -Checking test 201 hrrr_gf_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_gf_debug_gnu +Checking test 203 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.130499 - 0: The maximum resident set size (KB) = 1092380 + 0: The total amount of wall time = 112.621029 + 0: The maximum resident set size (KB) = 1096328 -Test 201 hrrr_gf_debug_gnu PASS +Test 203 hrrr_gf_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_c3_debug_gnu -Checking test 202 hrrr_c3_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_c3_debug_gnu +Checking test 204 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.411421 - 0: The maximum resident set size (KB) = 1095272 + 0: The total amount of wall time = 111.802900 + 0: The maximum resident set size (KB) = 1093676 -Test 202 hrrr_c3_debug_gnu PASS +Test 204 hrrr_c3_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_diag_debug_gnu -Checking test 203 rap_diag_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_diag_debug_gnu +Checking test 205 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.725097 - 0: The maximum resident set size (KB) = 1268624 + 0: The total amount of wall time = 116.729712 + 0: The maximum resident set size (KB) = 1269368 -Test 203 rap_diag_debug_gnu PASS +Test 205 rap_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 206 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.175762 - 0: The maximum resident set size (KB) = 1093948 + 0: The total amount of wall time = 179.221669 + 0: The maximum resident set size (KB) = 1095832 -Test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 206 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_progcld_thompson_debug_gnu -Checking test 205 rap_progcld_thompson_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_progcld_thompson_debug_gnu +Checking test 207 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.847477 - 0: The maximum resident set size (KB) = 1099812 + 0: The total amount of wall time = 112.601310 + 0: The maximum resident set size (KB) = 1098488 -Test 205 rap_progcld_thompson_debug_gnu PASS +Test 207 rap_progcld_thompson_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rrfs_v1beta_debug_gnu -Checking test 206 rrfs_v1beta_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_debug_gnu +Checking test 208 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.472798 - 0: The maximum resident set size (KB) = 1092056 + 0: The total amount of wall time = 111.345157 + 0: The maximum resident set size (KB) = 1095576 -Test 206 rrfs_v1beta_debug_gnu PASS +Test 208 rrfs_v1beta_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_ras_debug_gnu -Checking test 207 control_ras_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_debug_gnu +Checking test 209 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.697168 - 0: The maximum resident set size (KB) = 724584 + 0: The total amount of wall time = 63.405928 + 0: The maximum resident set size (KB) = 730436 -Test 207 control_ras_debug_gnu PASS +Test 209 control_ras_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_stochy_debug_gnu -Checking test 208 control_stochy_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_debug_gnu +Checking test 210 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 72.184677 - 0: The maximum resident set size (KB) = 720112 + 0: The total amount of wall time = 68.954082 + 0: The maximum resident set size (KB) = 722864 -Test 208 control_stochy_debug_gnu PASS +Test 210 control_stochy_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/control_debug_p8_gnu -Checking test 209 control_debug_p8_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_debug_p8_gnu +Checking test 211 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 74.029948 - 0: The maximum resident set size (KB) = 1505856 + 0: The total amount of wall time = 69.254260 + 0: The maximum resident set size (KB) = 1506216 -Test 209 control_debug_p8_gnu PASS +Test 211 control_debug_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_flake_debug_gnu -Checking test 210 rap_flake_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_flake_debug_gnu +Checking test 212 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.880336 - 0: The maximum resident set size (KB) = 1094716 + 0: The total amount of wall time = 109.219670 + 0: The maximum resident set size (KB) = 1100068 -Test 210 rap_flake_debug_gnu PASS +Test 212 rap_flake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_clm_lake_debug_gnu -Checking test 211 rap_clm_lake_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_clm_lake_debug_gnu +Checking test 213 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.509647 - 0: The maximum resident set size (KB) = 1099588 + 0: The total amount of wall time = 124.685422 + 0: The maximum resident set size (KB) = 1100840 -Test 211 rap_clm_lake_debug_gnu PASS +Test 213 rap_clm_lake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/gnv1_c96_no_nest_debug_gnu -Checking test 212 gnv1_c96_no_nest_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_c96_no_nest_debug_gnu +Checking test 214 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6969,15 +7103,15 @@ Checking test 212 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.853079 - 0: The maximum resident set size (KB) = 1102260 + 0: The total amount of wall time = 188.694786 + 0: The maximum resident set size (KB) = 1103840 -Test 212 gnv1_c96_no_nest_debug_gnu PASS +Test 214 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn32_phy32_gnu -Checking test 213 rap_control_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn32_phy32_gnu +Checking test 215 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7023,15 +7157,15 @@ Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 423.031689 - 0: The maximum resident set size (KB) = 965536 + 0: The total amount of wall time = 426.836309 + 0: The maximum resident set size (KB) = 967220 -Test 213 rap_control_dyn32_phy32_gnu PASS +Test 215 rap_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_dyn32_phy32_gnu -Checking test 214 hrrr_control_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_dyn32_phy32_gnu +Checking test 216 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7077,15 +7211,15 @@ Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.577202 - 0: The maximum resident set size (KB) = 950672 + 0: The total amount of wall time = 217.611049 + 0: The maximum resident set size (KB) = 950712 -Test 214 hrrr_control_dyn32_phy32_gnu PASS +Test 216 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_2threads_dyn32_phy32_gnu -Checking test 215 rap_2threads_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_dyn32_phy32_gnu +Checking test 217 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7131,15 +7265,15 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.803328 - 0: The maximum resident set size (KB) = 972176 + 0: The total amount of wall time = 393.866877 + 0: The maximum resident set size (KB) = 968340 -Test 215 rap_2threads_dyn32_phy32_gnu PASS +Test 217 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7185,15 +7319,15 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.065231 - 0: The maximum resident set size (KB) = 878732 + 0: The total amount of wall time = 200.335322 + 0: The maximum resident set size (KB) = 891028 -Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 218 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7239,15 +7373,15 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.874609 - 0: The maximum resident set size (KB) = 960524 + 0: The total amount of wall time = 222.967868 + 0: The maximum resident set size (KB) = 953192 -Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 219 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_restart_dyn32_phy32_gnu -Checking test 218 rap_restart_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_dyn32_phy32_gnu +Checking test 220 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7285,29 +7419,29 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.379568 - 0: The maximum resident set size (KB) = 860268 + 0: The total amount of wall time = 319.057744 + 0: The maximum resident set size (KB) = 860104 -Test 218 rap_restart_dyn32_phy32_gnu PASS +Test 220 rap_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_restart_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_dyn32_phy32_gnu +Checking test 221 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.735366 - 0: The maximum resident set size (KB) = 859816 + 0: The total amount of wall time = 114.129742 + 0: The maximum resident set size (KB) = 856484 -Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 221 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_control_gnu -Checking test 220 conus13km_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_control_gnu +Checking test 222 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7322,41 +7456,41 @@ Checking test 220 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 154.448872 - 0: The maximum resident set size (KB) = 1266768 + 0: The total amount of wall time = 144.693618 + 0: The maximum resident set size (KB) = 1269860 -Test 220 conus13km_control_gnu PASS +Test 222 conus13km_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_2threads_gnu -Checking test 221 conus13km_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_2threads_gnu +Checking test 223 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 59.416812 - 0: The maximum resident set size (KB) = 1175628 + 0: The total amount of wall time = 65.715676 + 0: The maximum resident set size (KB) = 1179528 -Test 221 conus13km_2threads_gnu PASS +Test 223 conus13km_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_restart_mismatch_gnu -Checking test 222 conus13km_restart_mismatch_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_restart_mismatch_gnu +Checking test 224 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 79.485099 - 0: The maximum resident set size (KB) = 938804 + 0: The total amount of wall time = 82.857418 + 0: The maximum resident set size (KB) = 929880 -Test 222 conus13km_restart_mismatch_gnu PASS +Test 224 conus13km_restart_mismatch_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_gnu -Checking test 223 rap_control_dyn64_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_gnu +Checking test 225 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7402,43 +7536,43 @@ Checking test 223 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.828581 - 0: The maximum resident set size (KB) = 990068 + 0: The total amount of wall time = 254.642359 + 0: The maximum resident set size (KB) = 990004 -Test 223 rap_control_dyn64_phy32_gnu PASS +Test 225 rap_control_dyn64_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_debug_dyn32_phy32_gnu -Checking test 224 rap_control_debug_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_dyn32_phy32_gnu +Checking test 226 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.566293 - 0: The maximum resident set size (KB) = 974912 + 0: The total amount of wall time = 114.376541 + 0: The maximum resident set size (KB) = 975728 -Test 224 rap_control_debug_dyn32_phy32_gnu PASS +Test 226 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/hrrr_control_debug_dyn32_phy32_gnu -Checking test 225 hrrr_control_debug_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_dyn32_phy32_gnu +Checking test 227 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.162339 - 0: The maximum resident set size (KB) = 969444 + 0: The total amount of wall time = 106.978547 + 0: The maximum resident set size (KB) = 965400 -Test 225 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 227 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_gnu -Checking test 226 conus13km_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_gnu +Checking test 228 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7451,15 +7585,15 @@ Checking test 226 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 324.177594 - 0: The maximum resident set size (KB) = 1280308 + 0: The total amount of wall time = 317.053317 + 0: The maximum resident set size (KB) = 1284968 -Test 226 conus13km_debug_gnu PASS +Test 228 conus13km_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_qr_gnu -Checking test 227 conus13km_debug_qr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_qr_gnu +Checking test 229 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7472,284 +7606,173 @@ Checking test 227 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 333.405763 - 0: The maximum resident set size (KB) = 968820 + 0: The total amount of wall time = 332.056553 + 0: The maximum resident set size (KB) = 955760 -Test 227 conus13km_debug_qr_gnu PASS +Test 229 conus13km_debug_qr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_debug_2threads_gnu -Checking test 228 conus13km_debug_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_2threads_gnu +Checking test 230 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.984855 - 0: The maximum resident set size (KB) = 1189888 + 0: The total amount of wall time = 184.939726 + 0: The maximum resident set size (KB) = 1188628 -Test 228 conus13km_debug_2threads_gnu PASS +Test 230 conus13km_debug_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/conus13km_radar_tten_debug_gnu -Checking test 229 conus13km_radar_tten_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_radar_tten_debug_gnu +Checking test 231 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 330.890413 - 0: The maximum resident set size (KB) = 1350312 + 0: The total amount of wall time = 314.765979 + 0: The maximum resident set size (KB) = 1350192 -Test 229 conus13km_radar_tten_debug_gnu PASS +Test 231 conus13km_radar_tten_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_159854/rap_control_dyn64_phy32_debug_gnu -Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_debug_gnu +Checking test 232 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.546808 - 0: The maximum resident set size (KB) = 997780 + 0: The total amount of wall time = 112.612834 + 0: The maximum resident set size (KB) = 1001428 -Test 230 rap_control_dyn64_phy32_debug_gnu PASS +Test 232 rap_control_dyn64_phy32_debug_gnu PASS FAILED TESTS: -cpld_control_pdlib_p8_intel 027 failed in run_test -144 gnv1_nested_intel failed in check_result -gnv1_nested_intel 144 failed in run_test +hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 147 failed in run_test +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 148 failed in run_test REGRESSION TEST FAILED -Thu Feb 1 00:58:03 CST 2024 -Elapsed time: 10h:09m:07s. Have a nice day! -Thu Feb 1 08:01:44 CST 2024 +Fri Feb 2 01:06:28 AM CST 2024 +Elapsed time: 03h:05m:56s. Have a nice day! +Fri Feb 2 09:10:46 AM CST 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 593 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2sw_pdlib_intel elapsed time 1106 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile hafs_mom6w_intel elapsed time 620 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 618 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1314058/cpld_control_pdlib_p8_intel -Checking test 001 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2610419/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 830.409917 - 0: The maximum resident set size (KB) = 1821180 + 0: The total amount of wall time = 611.746251 + 0: The maximum resident set size (KB) = 845960 -Test 001 cpld_control_pdlib_p8_intel PASS +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1314058/gnv1_nested_intel -Checking test 002 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 244.033190 - 0: The maximum resident set size (KB) = 894344 - -Test 002 gnv1_nested_intel FAIL +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2610419/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -FAILED TESTS: -002 gnv1_nested_intel failed in check_result + 0: The total amount of wall time = 930.155979 + 0: The maximum resident set size (KB) = 828484 -REGRESSION TEST FAILED -Thu Feb 1 08:58:55 CST 2024 -Elapsed time: 00h:57m:12s. Have a nice day! -Thu Feb 1 11:44:01 CST 2024 +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Fri Feb 2 09:50:52 AM CST 2024 +Elapsed time: 00h:40m:07s. Have a nice day! +Mon Feb 5 10:55:10 AM CST 2024 Start Regression test -Testing UFSWM Hash: 2e11465479217c0751804666044de9f1368a4649 +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 588 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 602 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2226321/gnv1_nested_intel -Checking test 001 gnv1_nested_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3123442/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 969.046192 + 0: The maximum resident set size (KB) = 847676 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3123442/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 247.443272 - 0: The maximum resident set size (KB) = 899684 + 0: The total amount of wall time = 632.299890 + 0: The maximum resident set size (KB) = 829264 -Test 001 gnv1_nested_intel PASS Tries: 2 +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 1 12:14:38 CST 2024 -Elapsed time: 00h:30m:38s. Have a nice day! +Mon Feb 5 11:26:44 AM CST 2024 +Elapsed time: 00h:31m:35s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d174eb44ac..9daf827b69 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,57 @@ -Wed Jan 31 18:10:43 UTC 2024 +Fri Feb 2 02:59:08 UTC 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 380 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1963 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1776 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1756 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1934 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1828 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1749 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1809 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 234 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 479 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 478 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 97 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1777 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1925 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2475 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1781 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 255 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1784 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1843 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1860 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 s2s_intel elapsed time 1908 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 295 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2090 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 327 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2900 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1807 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 357 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 2815 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 363 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5519 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_debug_dyn32_intel elapsed time 415 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1961 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1748 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1925 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1814 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1806 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1793 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 482 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1798 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1937 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2458 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1852 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1909 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 s2s_intel elapsed time 1843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 327 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 316 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 2717 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2117 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 340 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 3010 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5493 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 524.178126 - 0: The maximum resident set size (KB) = 1767836 + 0: The total amount of wall time = 463.520817 + 0: The maximum resident set size (KB) = 1755576 Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1364.628817 - 0: The maximum resident set size (KB) = 1638932 + 0: The total amount of wall time = 1222.635991 + 0: The maximum resident set size (KB) = 1650932 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_gfsv17_iau_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1312.160240 - 0: The maximum resident set size (KB) = 1852296 + 0: The total amount of wall time = 1259.885443 + 0: The maximum resident set size (KB) = 1853988 -Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2 +Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 591.638025 - 0: The maximum resident set size (KB) = 974452 + 0: The total amount of wall time = 581.997203 + 0: The maximum resident set size (KB) = 979364 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_mpi_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -371,14 +371,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1524.862280 - 0: The maximum resident set size (KB) = 1603048 + 0: The total amount of wall time = 1427.187177 + 0: The maximum resident set size (KB) = 1611608 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -430,14 +430,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1795.992555 - 0: The maximum resident set size (KB) = 1643380 + 0: The total amount of wall time = 1795.489020 + 0: The maximum resident set size (KB) = 1647320 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -502,14 +502,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 499.783295 - 0: The maximum resident set size (KB) = 1774752 + 0: The total amount of wall time = 469.644071 + 0: The maximum resident set size (KB) = 1810460 Test 007 cpld_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -562,14 +562,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.282771 - 0: The maximum resident set size (KB) = 1703408 + 0: The total amount of wall time = 259.039850 + 0: The maximum resident set size (KB) = 1690004 Test 008 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -634,14 +634,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.834238 - 0: The maximum resident set size (KB) = 1821296 + 0: The total amount of wall time = 460.471477 + 0: The maximum resident set size (KB) = 1819960 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_qr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -694,14 +694,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.044650 - 0: The maximum resident set size (KB) = 1711752 + 0: The total amount of wall time = 270.933835 + 0: The maximum resident set size (KB) = 1713396 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -754,14 +754,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.919723 - 0: The maximum resident set size (KB) = 2183336 + 0: The total amount of wall time = 438.262886 + 0: The maximum resident set size (KB) = 2193336 Test 011 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -814,14 +814,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 479.314873 - 0: The maximum resident set size (KB) = 1789764 + 0: The total amount of wall time = 448.656935 + 0: The maximum resident set size (KB) = 1791668 Test 012 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_mpi_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -874,14 +874,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 410.745604 - 0: The maximum resident set size (KB) = 1749696 + 0: The total amount of wall time = 385.809636 + 0: The maximum resident set size (KB) = 1753172 Test 013 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -946,14 +946,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 498.142513 - 0: The maximum resident set size (KB) = 1795776 + 0: The total amount of wall time = 443.765499 + 0: The maximum resident set size (KB) = 1797500 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_s2sa_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_s2sa_p8_intel Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1004,14 +1004,14 @@ Checking test 015 cpld_s2sa_p8_intel 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 = 528.603188 - 0: The maximum resident set size (KB) = 1776608 + 0: The total amount of wall time = 437.842078 + 0: The maximum resident set size (KB) = 1764720 Test 015 cpld_s2sa_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1075,14 +1075,14 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.327470 - 0: The maximum resident set size (KB) = 1634860 + 0: The total amount of wall time = 350.190339 + 0: The maximum resident set size (KB) = 1637648 Test 016 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_nowave_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel 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 = 363.269966 - 0: The maximum resident set size (KB) = 1692640 + 0: The total amount of wall time = 335.962766 + 0: The maximum resident set size (KB) = 1687680 Test 017 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_p8_intel Checking test 018 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1204,14 +1204,14 @@ Checking test 018 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 636.492860 - 0: The maximum resident set size (KB) = 1817748 + 0: The total amount of wall time = 627.323450 + 0: The maximum resident set size (KB) = 1817464 Test 018 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_noaero_p8_intel Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1263,14 +1263,14 @@ Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.218863 - 0: The maximum resident set size (KB) = 1649412 + 0: The total amount of wall time = 426.347638 + 0: The maximum resident set size (KB) = 1652584 Test 019 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1332,14 +1332,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel 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 = 478.659042 - 0: The maximum resident set size (KB) = 1684992 + 0: The total amount of wall time = 329.102717 + 0: The maximum resident set size (KB) = 1699500 Test 020 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1389,14 +1389,14 @@ Checking test 021 cpld_control_c48_intel 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 = 805.975811 - 0: The maximum resident set size (KB) = 2781100 + 0: The total amount of wall time = 763.556590 + 0: The maximum resident set size (KB) = 2776692 Test 021 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1461,14 +1461,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.974085 - 0: The maximum resident set size (KB) = 1796108 + 0: The total amount of wall time = 439.507124 + 0: The maximum resident set size (KB) = 1797232 Test 022 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1532,14 +1532,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1359.913008 - 0: The maximum resident set size (KB) = 1658788 + 0: The total amount of wall time = 1235.579869 + 0: The maximum resident set size (KB) = 1664632 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_restart_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 618.823749 - 0: The maximum resident set size (KB) = 1022604 + 0: The total amount of wall time = 580.964921 + 0: The maximum resident set size (KB) = 1025604 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_mpi_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1662,14 +1662,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1440.228777 - 0: The maximum resident set size (KB) = 1637148 + 0: The total amount of wall time = 1475.413872 + 0: The maximum resident set size (KB) = 1636344 -Test 025 cpld_mpi_pdlib_p8_intel PASS Tries: 2 +Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/cpld_debug_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1962.888626 - 0: The maximum resident set size (KB) = 1675420 + 0: The total amount of wall time = 2292.234248 + 0: The maximum resident set size (KB) = 1669456 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1739,14 +1739,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 296.969628 - 0: The maximum resident set size (KB) = 644176 + 0: The total amount of wall time = 276.636373 + 0: The maximum resident set size (KB) = 649344 Test 027 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1773,36 +1773,36 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 200.410002 - 0: The maximum resident set size (KB) = 599808 + 0: The total amount of wall time = 227.954957 + 0: The maximum resident set size (KB) = 598860 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.012331 - 0: The maximum resident set size (KB) = 598568 + 0: The total amount of wall time = 242.033098 + 0: The maximum resident set size (KB) = 595136 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1813,14 +1813,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.956970 - 0: The maximum resident set size (KB) = 594220 + 0: The total amount of wall time = 239.853498 + 0: The maximum resident set size (KB) = 593380 Test 030 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1831,14 +1831,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.684477 - 0: The maximum resident set size (KB) = 596448 + 0: The total amount of wall time = 232.636730 + 0: The maximum resident set size (KB) = 597008 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1877,14 +1877,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 609.259282 -0: The maximum resident set size (KB) = 844028 +0: The total amount of wall time = 603.159244 +0: The maximum resident set size (KB) = 851552 Test 032 control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1895,14 +1895,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 837.434290 - 0: The maximum resident set size (KB) = 717184 + 0: The total amount of wall time = 775.886480 + 0: The maximum resident set size (KB) = 725836 Test 033 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1913,14 +1913,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1142.377336 - 0: The maximum resident set size (KB) = 898824 + 0: The total amount of wall time = 1022.102914 + 0: The maximum resident set size (KB) = 902568 Test 034 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1932,9 +1932,9 @@ Checking test 035 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK @@ -1942,35 +1942,35 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1006.720043 - 0: The maximum resident set size (KB) = 1012984 + 0: The total amount of wall time = 834.101786 + 0: The maximum resident set size (KB) = 1005800 Test 035 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1981,28 +1981,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 128.849776 - 0: The maximum resident set size (KB) = 591444 + 0: The total amount of wall time = 154.767462 + 0: The maximum resident set size (KB) = 598532 Test 036 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_stochy_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.002312 - 0: The maximum resident set size (KB) = 430432 + 0: The total amount of wall time = 69.061126 + 0: The maximum resident set size (KB) = 428120 Test 037 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2013,14 +2013,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 130.339056 - 0: The maximum resident set size (KB) = 603752 + 0: The total amount of wall time = 158.699949 + 0: The maximum resident set size (KB) = 600412 Test 038 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2035,14 +2035,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.920799 - 0: The maximum resident set size (KB) = 601312 + 0: The total amount of wall time = 224.566423 + 0: The maximum resident set size (KB) = 593456 Test 039 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.681771 - 0: The maximum resident set size (KB) = 593032 + 0: The total amount of wall time = 226.888517 + 0: The maximum resident set size (KB) = 599000 Test 040 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2111,14 +2111,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.167329 - 0: The maximum resident set size (KB) = 1554036 + 0: The total amount of wall time = 243.717315 + 0: The maximum resident set size (KB) = 1556992 Test 041 control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_ugwpv1_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2165,14 +2165,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.417461 - 0: The maximum resident set size (KB) = 1568132 + 0: The total amount of wall time = 219.343575 + 0: The maximum resident set size (KB) = 1556072 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_restart_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2211,14 +2211,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 123.144170 - 0: The maximum resident set size (KB) = 812048 + 0: The total amount of wall time = 144.920757 + 0: The maximum resident set size (KB) = 812868 Test 043 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_noqr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2265,14 +2265,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 305.594883 - 0: The maximum resident set size (KB) = 1548004 + 0: The total amount of wall time = 227.605378 + 0: The maximum resident set size (KB) = 1548664 Test 044 control_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_restart_noqr_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2311,14 +2311,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.919621 - 0: The maximum resident set size (KB) = 831180 + 0: The total amount of wall time = 120.871166 + 0: The maximum resident set size (KB) = 834232 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_decomp_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2361,14 +2361,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 251.565850 - 0: The maximum resident set size (KB) = 1545052 + 0: The total amount of wall time = 240.469612 + 0: The maximum resident set size (KB) = 1558684 Test 046 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_2threads_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2411,14 +2411,14 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 214.793334 - 0: The maximum resident set size (KB) = 1662012 + 0: The total amount of wall time = 211.501209 + 0: The maximum resident set size (KB) = 1645216 Test 047 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2437,14 +2437,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 431.790233 - 0: The maximum resident set size (KB) = 1562500 + 0: The total amount of wall time = 409.373028 + 0: The maximum resident set size (KB) = 1561508 Test 048 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2491,14 +2491,14 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.751232 - 0: The maximum resident set size (KB) = 1618192 + 0: The total amount of wall time = 296.046370 + 0: The maximum resident set size (KB) = 1620592 Test 049 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2545,14 +2545,14 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.542776 - 0: The maximum resident set size (KB) = 1563164 + 0: The total amount of wall time = 225.563238 + 0: The maximum resident set size (KB) = 1561896 Test 050 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2599,14 +2599,14 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 269.336493 - 0: The maximum resident set size (KB) = 1566916 + 0: The total amount of wall time = 263.713364 + 0: The maximum resident set size (KB) = 1568648 Test 051 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2617,28 +2617,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 487.818511 - 0: The maximum resident set size (KB) = 755092 + 0: The total amount of wall time = 426.498804 + 0: The maximum resident set size (KB) = 751264 Test 052 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_restart_intel Checking test 053 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 309.779919 - 0: The maximum resident set size (KB) = 934456 + 0: The total amount of wall time = 227.348313 + 0: The maximum resident set size (KB) = 936360 Test 053 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2649,14 +2649,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 488.787647 - 0: The maximum resident set size (KB) = 754080 + 0: The total amount of wall time = 435.208311 + 0: The maximum resident set size (KB) = 756964 Test 054 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2667,28 +2667,28 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.676152 - 0: The maximum resident set size (KB) = 743188 + 0: The total amount of wall time = 264.133722 + 0: The maximum resident set size (KB) = 747448 -Test 055 regional_2threads_intel PASS Tries: 2 +Test 055 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_netcdf_parallel_intel Checking test 056 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 471.670093 - 0: The maximum resident set size (KB) = 757148 + 0: The total amount of wall time = 465.541618 + 0: The maximum resident set size (KB) = 753932 Test 056 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_2dwrtdecomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_2dwrtdecomp_intel Checking test 057 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2699,14 +2699,14 @@ Checking test 057 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 445.753532 - 0: The maximum resident set size (KB) = 760604 + 0: The total amount of wall time = 430.767412 + 0: The maximum resident set size (KB) = 759852 Test 057 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_intel Checking test 058 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2753,14 +2753,14 @@ Checking test 058 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 642.081718 - 0: The maximum resident set size (KB) = 972820 + 0: The total amount of wall time = 628.897293 + 0: The maximum resident set size (KB) = 966708 Test 058 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_spp_sppt_shum_skeb_intel Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2771,14 +2771,14 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 371.299872 - 0: The maximum resident set size (KB) = 1204436 + 0: The total amount of wall time = 479.220842 + 0: The maximum resident set size (KB) = 1205972 Test 059 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_decomp_intel Checking test 060 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2825,14 +2825,14 @@ Checking test 060 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 667.499037 - 0: The maximum resident set size (KB) = 979184 + 0: The total amount of wall time = 632.227708 + 0: The maximum resident set size (KB) = 958360 Test 060 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_2threads_intel Checking test 061 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2879,14 +2879,14 @@ Checking test 061 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 612.990511 - 0: The maximum resident set size (KB) = 1060076 + 0: The total amount of wall time = 601.036051 + 0: The maximum resident set size (KB) = 1064436 Test 061 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_restart_intel Checking test 062 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2925,14 +2925,14 @@ Checking test 062 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.807249 - 0: The maximum resident set size (KB) = 968588 + 0: The total amount of wall time = 316.273813 + 0: The maximum resident set size (KB) = 968740 Test 062 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_intel Checking test 063 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2979,14 +2979,14 @@ Checking test 063 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 669.035805 - 0: The maximum resident set size (KB) = 973872 + 0: The total amount of wall time = 598.769691 + 0: The maximum resident set size (KB) = 964536 Test 063 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_decomp_intel Checking test 064 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3033,14 +3033,14 @@ Checking test 064 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.063114 - 0: The maximum resident set size (KB) = 961408 + 0: The total amount of wall time = 614.927690 + 0: The maximum resident set size (KB) = 963116 Test 064 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_restart_intel Checking test 065 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3079,14 +3079,14 @@ Checking test 065 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 544.423564 - 0: The maximum resident set size (KB) = 986196 + 0: The total amount of wall time = 455.473650 + 0: The maximum resident set size (KB) = 981408 Test 065 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_intel Checking test 066 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3133,14 +3133,14 @@ Checking test 066 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.509386 - 0: The maximum resident set size (KB) = 967952 + 0: The total amount of wall time = 303.390755 + 0: The maximum resident set size (KB) = 963484 Test 066 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_decomp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3187,14 +3187,14 @@ Checking test 067 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.792117 - 0: The maximum resident set size (KB) = 958284 + 0: The total amount of wall time = 310.795916 + 0: The maximum resident set size (KB) = 952796 Test 067 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3241,28 +3241,28 @@ Checking test 068 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.981229 - 0: The maximum resident set size (KB) = 1054588 + 0: The total amount of wall time = 319.690605 + 0: The maximum resident set size (KB) = 1034104 Test 068 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_restart_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_restart_intel Checking test 069 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 176.122455 - 0: The maximum resident set size (KB) = 900592 + 0: The total amount of wall time = 156.766711 + 0: The maximum resident set size (KB) = 896724 Test 069 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1beta_intel Checking test 070 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3309,14 +3309,14 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 634.448929 - 0: The maximum resident set size (KB) = 968336 + 0: The total amount of wall time = 592.016207 + 0: The maximum resident set size (KB) = 960200 Test 070 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1nssl_intel Checking test 071 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3331,14 +3331,14 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 830.248295 - 0: The maximum resident set size (KB) = 1927060 + 0: The total amount of wall time = 750.197024 + 0: The maximum resident set size (KB) = 1924032 Test 071 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1nssl_nohailnoccn_intel Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3353,14 +3353,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 799.631816 - 0: The maximum resident set size (KB) = 1921928 + 0: The total amount of wall time = 728.458220 + 0: The maximum resident set size (KB) = 1921580 Test 072 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmg_intel Checking test 073 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3371,14 +3371,14 @@ Checking test 073 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 521.762101 - 0: The maximum resident set size (KB) = 674876 + 0: The total amount of wall time = 478.115315 + 0: The maximum resident set size (KB) = 690804 Test 073 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmgt_intel Checking test 074 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3389,14 +3389,14 @@ Checking test 074 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 551.386964 - 0: The maximum resident set size (KB) = 683308 + 0: The total amount of wall time = 465.482148 + 0: The maximum resident set size (KB) = 682656 Test 074 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_ras_intel Checking test 075 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3407,26 +3407,26 @@ Checking test 075 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 286.332268 - 0: The maximum resident set size (KB) = 655392 + 0: The total amount of wall time = 255.784614 + 0: The maximum resident set size (KB) = 656428 Test 075 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wam_intel Checking test 076 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 216.671885 - 0: The maximum resident set size (KB) = 494788 + 0: The total amount of wall time = 168.445992 + 0: The maximum resident set size (KB) = 496720 Test 076 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_faster_intel Checking test 077 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3473,14 +3473,14 @@ Checking test 077 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.052387 - 0: The maximum resident set size (KB) = 1557588 + 0: The total amount of wall time = 220.329026 + 0: The maximum resident set size (KB) = 1557880 Test 077 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_control_faster_intel Checking test 078 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3491,14 +3491,14 @@ Checking test 078 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 402.312410 - 0: The maximum resident set size (KB) = 749600 + 0: The total amount of wall time = 401.570741 + 0: The maximum resident set size (KB) = 752992 Test 078 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3525,364 +3525,364 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 200.413002 - 0: The maximum resident set size (KB) = 753400 + 0: The total amount of wall time = 192.490407 + 0: The maximum resident set size (KB) = 750844 Test 079 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.464167 - 0: The maximum resident set size (KB) = 748524 + 0: The total amount of wall time = 187.972743 + 0: The maximum resident set size (KB) = 746548 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_debug_intel Checking test 081 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 255.770767 - 0: The maximum resident set size (KB) = 756736 + 0: The total amount of wall time = 213.081972 + 0: The maximum resident set size (KB) = 757112 Test 081 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_lndp_debug_intel Checking test 082 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.530030 - 0: The maximum resident set size (KB) = 753308 + 0: The total amount of wall time = 191.783454 + 0: The maximum resident set size (KB) = 760372 Test 082 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmg_debug_intel Checking test 083 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.775474 - 0: The maximum resident set size (KB) = 799304 + 0: The total amount of wall time = 302.265998 + 0: The maximum resident set size (KB) = 800744 Test 083 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmgt_debug_intel Checking test 084 control_csawmgt_debug_intel 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.890688 - 0: The maximum resident set size (KB) = 802132 + 0: The total amount of wall time = 309.849254 + 0: The maximum resident set size (KB) = 799084 Test 084 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_ras_debug_intel Checking test 085 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.186123 - 0: The maximum resident set size (KB) = 764408 + 0: The total amount of wall time = 191.558943 + 0: The maximum resident set size (KB) = 762404 Test 085 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_diag_debug_intel Checking test 086 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.342609 - 0: The maximum resident set size (KB) = 804436 + 0: The total amount of wall time = 195.178858 + 0: The maximum resident set size (KB) = 812228 Test 086 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_debug_p8_intel Checking test 087 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.840137 - 0: The maximum resident set size (KB) = 1578064 + 0: The total amount of wall time = 202.174325 + 0: The maximum resident set size (KB) = 1577236 Test 087 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_debug_intel Checking test 088 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1319.735613 - 0: The maximum resident set size (KB) = 768040 + 0: The total amount of wall time = 1317.351066 + 0: The maximum resident set size (KB) = 767440 Test 088 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_debug_intel Checking test 089 rap_control_debug_intel 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.499161 - 0: The maximum resident set size (KB) = 1136888 + 0: The total amount of wall time = 353.102257 + 0: The maximum resident set size (KB) = 1132080 Test 089 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_debug_intel Checking test 090 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.474435 - 0: The maximum resident set size (KB) = 1131240 + 0: The total amount of wall time = 349.939740 + 0: The maximum resident set size (KB) = 1127016 Test 090 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_gf_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_gf_debug_intel Checking test 091 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.229949 - 0: The maximum resident set size (KB) = 1139892 + 0: The total amount of wall time = 351.610078 + 0: The maximum resident set size (KB) = 1132572 Test 091 hrrr_gf_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_c3_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_c3_debug_intel Checking test 092 hrrr_c3_debug_intel 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.351255 - 0: The maximum resident set size (KB) = 1133164 + 0: The total amount of wall time = 357.234398 + 0: The maximum resident set size (KB) = 1137440 Test 092 hrrr_c3_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_unified_drag_suite_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_unified_drag_suite_debug_intel Checking test 093 rap_unified_drag_suite_debug_intel 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.236828 - 0: The maximum resident set size (KB) = 1133928 + 0: The total amount of wall time = 354.950314 + 0: The maximum resident set size (KB) = 1133776 Test 093 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_diag_debug_intel Checking test 094 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.140253 - 0: The maximum resident set size (KB) = 1228580 + 0: The total amount of wall time = 377.815050 + 0: The maximum resident set size (KB) = 1217836 Test 094 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_cires_ugwp_debug_intel Checking test 095 rap_cires_ugwp_debug_intel 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.803311 - 0: The maximum resident set size (KB) = 1133104 + 0: The total amount of wall time = 358.823849 + 0: The maximum resident set size (KB) = 1144100 Test 095 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_unified_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_unified_ugwp_debug_intel Checking test 096 rap_unified_ugwp_debug_intel 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.642082 - 0: The maximum resident set size (KB) = 1129536 + 0: The total amount of wall time = 360.188224 + 0: The maximum resident set size (KB) = 1140600 Test 096 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_lndp_debug_intel Checking test 097 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.469693 - 0: The maximum resident set size (KB) = 1131952 + 0: The total amount of wall time = 356.346610 + 0: The maximum resident set size (KB) = 1143964 Test 097 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_progcld_thompson_debug_intel Checking test 098 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.203526 - 0: The maximum resident set size (KB) = 1141252 + 0: The total amount of wall time = 353.215987 + 0: The maximum resident set size (KB) = 1143608 Test 098 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_noah_debug_intel Checking test 099 rap_noah_debug_intel 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.312196 - 0: The maximum resident set size (KB) = 1132060 + 0: The total amount of wall time = 346.608019 + 0: The maximum resident set size (KB) = 1134076 Test 099 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_debug_intel Checking test 100 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.404419 - 0: The maximum resident set size (KB) = 1131944 + 0: The total amount of wall time = 359.642470 + 0: The maximum resident set size (KB) = 1135520 Test 100 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 582.942160 - 0: The maximum resident set size (KB) = 1139284 + 0: The total amount of wall time = 587.859844 + 0: The maximum resident set size (KB) = 1140564 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1beta_debug_intel Checking test 102 rrfs_v1beta_debug_intel 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.963758 - 0: The maximum resident set size (KB) = 1128964 + 0: The total amount of wall time = 350.343287 + 0: The maximum resident set size (KB) = 1128152 Test 102 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_clm_lake_debug_intel Checking test 103 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 438.618979 - 0: The maximum resident set size (KB) = 1135904 + 0: The total amount of wall time = 437.635963 + 0: The maximum resident set size (KB) = 1151172 Test 103 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_flake_debug_intel Checking test 104 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.159220 - 0: The maximum resident set size (KB) = 1140280 + 0: The total amount of wall time = 353.621826 + 0: The maximum resident set size (KB) = 1133652 Test 104 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/gnv1_c96_no_nest_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/gnv1_c96_no_nest_debug_intel Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3923,26 +3923,26 @@ Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 620.388509 - 0: The maximum resident set size (KB) = 1142764 + 0: The total amount of wall time = 630.324285 + 0: The maximum resident set size (KB) = 1147808 Test 105 gnv1_c96_no_nest_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wam_debug_intel Checking test 106 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 358.506600 - 0: The maximum resident set size (KB) = 422816 + 0: The total amount of wall time = 355.866710 + 0: The maximum resident set size (KB) = 426180 Test 106 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 321.313523 - 0: The maximum resident set size (KB) = 1079324 + 0: The total amount of wall time = 310.545600 + 0: The maximum resident set size (KB) = 1072628 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn32_phy32_intel Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4007,14 +4007,14 @@ Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.023434 - 0: The maximum resident set size (KB) = 883980 + 0: The total amount of wall time = 540.430023 + 0: The maximum resident set size (KB) = 905464 Test 108 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_dyn32_phy32_intel Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4061,14 +4061,14 @@ Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.731209 - 0: The maximum resident set size (KB) = 859092 + 0: The total amount of wall time = 276.079008 + 0: The maximum resident set size (KB) = 859340 Test 109 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_2threads_dyn32_phy32_intel Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4115,14 +4115,14 @@ Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.511933 - 0: The maximum resident set size (KB) = 925440 + 0: The total amount of wall time = 519.189753 + 0: The maximum resident set size (KB) = 926748 Test 110 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_2threads_dyn32_phy32_intel Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4169,14 +4169,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.158466 - 0: The maximum resident set size (KB) = 904252 + 0: The total amount of wall time = 252.924772 + 0: The maximum resident set size (KB) = 911056 Test 111 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_decomp_dyn32_phy32_intel Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4223,14 +4223,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.782609 - 0: The maximum resident set size (KB) = 857412 + 0: The total amount of wall time = 285.598751 + 0: The maximum resident set size (KB) = 845876 Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_restart_dyn32_phy32_intel Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4269,28 +4269,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 386.337187 - 0: The maximum resident set size (KB) = 893896 + 0: The total amount of wall time = 376.424202 + 0: The maximum resident set size (KB) = 886748 Test 113 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_restart_dyn32_phy32_intel Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 150.418786 - 0: The maximum resident set size (KB) = 843028 + 0: The total amount of wall time = 166.653642 + 0: The maximum resident set size (KB) = 829232 Test 114 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4306,40 +4306,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 166.141109 - 0: The maximum resident set size (KB) = 1089324 + 0: The total amount of wall time = 169.747631 + 0: The maximum resident set size (KB) = 1090200 Test 115 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.176876 - 0: The maximum resident set size (KB) = 1045992 + 0: The total amount of wall time = 69.614378 + 0: The maximum resident set size (KB) = 1040580 Test 116 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.965036 - 0: The maximum resident set size (KB) = 1010624 + 0: The total amount of wall time = 87.990363 + 0: The maximum resident set size (KB) = 1007572 Test 117 conus13km_restart_mismatch_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4386,42 +4386,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.521069 - 0: The maximum resident set size (KB) = 894676 + 0: The total amount of wall time = 384.000363 + 0: The maximum resident set size (KB) = 891008 Test 118 rap_control_dyn64_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.002744 - 0: The maximum resident set size (KB) = 1015792 + 0: The total amount of wall time = 347.554647 + 0: The maximum resident set size (KB) = 1023108 Test 119 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.951303 - 0: The maximum resident set size (KB) = 1014992 + 0: The total amount of wall time = 343.123992 + 0: The maximum resident set size (KB) = 1011440 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4435,14 +4435,14 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1073.252372 - 0: The maximum resident set size (KB) = 1126576 + 0: The total amount of wall time = 1076.120549 + 0: The maximum resident set size (KB) = 1133136 Test 121 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_debug_qr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_qr_intel Checking test 122 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4456,81 +4456,81 @@ Checking test 122 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1099.218709 - 0: The maximum resident set size (KB) = 835656 + 0: The total amount of wall time = 1091.667718 + 0: The maximum resident set size (KB) = 837892 Test 122 conus13km_debug_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_debug_2threads_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_2threads_intel Checking test 123 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 620.714077 - 0: The maximum resident set size (KB) = 1074336 + 0: The total amount of wall time = 619.059483 + 0: The maximum resident set size (KB) = 1075356 Test 123 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_radar_tten_debug_intel Checking test 124 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1080.558470 - 0: The maximum resident set size (KB) = 1195264 + 0: The total amount of wall time = 1074.252553 + 0: The maximum resident set size (KB) = 1199864 Test 124 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/rap_control_dyn64_phy32_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn64_phy32_debug_intel Checking test 125 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.404818 - 0: The maximum resident set size (KB) = 1051676 + 0: The total amount of wall time = 352.629945 + 0: The maximum resident set size (KB) = 1057328 Test 125 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 513.880619 - 0: The maximum resident set size (KB) = 707352 + 0: The total amount of wall time = 443.298821 + 0: The maximum resident set size (KB) = 706520 Test 126 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 478.996506 - 0: The maximum resident set size (KB) = 1072092 + 0: The total amount of wall time = 403.824865 + 0: The maximum resident set size (KB) = 1080344 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4539,14 +4539,14 @@ Checking test 128 hafs_regional_atm_ocn_intel 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 = 588.190584 - 0: The maximum resident set size (KB) = 764172 + 0: The total amount of wall time = 655.990409 + 0: The maximum resident set size (KB) = 759608 Test 128 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4555,18 +4555,32 @@ Checking test 129 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 998.566444 - 0: The maximum resident set size (KB) = 795076 + 0: The total amount of wall time = 966.545456 + 0: The maximum resident set size (KB) = 794428 Test 129 hafs_regional_atm_wav_intel PASS -Test 130 hafs_regional_atm_ocn_wav_intel FAIL -Test 130 hafs_regional_atm_ocn_wav_intel FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_ocn_wav_intel +Checking test 130 hafs_regional_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 1090.458519 + 0: The maximum resident set size (KB) = 811940 + +Test 130 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/gnv1_nested_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/gnv1_nested_intel Checking test 131 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4578,49 +4592,49 @@ Checking test 131 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 438.815285 - 0: The maximum resident set size (KB) = 766280 + 0: The total amount of wall time = 363.769047 + 0: The maximum resident set size (KB) = 764948 Test 131 gnv1_nested_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_docn_intel Checking test 132 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4628,14 +4642,14 @@ Checking test 132 hafs_regional_docn_intel 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 = 560.879494 - 0: The maximum resident set size (KB) = 763636 + 0: The total amount of wall time = 518.557268 + 0: The maximum resident set size (KB) = 762728 Test 132 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_docn_oisst_intel Checking test 133 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4643,118 +4657,118 @@ Checking test 133 hafs_regional_docn_oisst_intel 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 = 538.473851 - 0: The maximum resident set size (KB) = 751256 + 0: The total amount of wall time = 517.251897 + 0: The maximum resident set size (KB) = 754184 Test 133 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_cfsr_intel Checking test 134 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.365688 - 0: The maximum resident set size (KB) = 1030524 + 0: The total amount of wall time = 220.939666 + 0: The maximum resident set size (KB) = 1041044 Test 134 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_restart_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_restart_cfsr_intel Checking test 135 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 136.692765 - 0: The maximum resident set size (KB) = 1008164 + 0: The total amount of wall time = 125.748138 + 0: The maximum resident set size (KB) = 1010424 Test 135 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_gefs_intel Checking test 136 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.158342 - 0: The maximum resident set size (KB) = 908620 + 0: The total amount of wall time = 205.912886 + 0: The maximum resident set size (KB) = 912816 Test 136 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_iau_gefs_intel Checking test 137 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.012382 - 0: The maximum resident set size (KB) = 903036 + 0: The total amount of wall time = 211.864442 + 0: The maximum resident set size (KB) = 916024 Test 137 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_stochy_gefs_intel Checking test 138 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 218.035254 - 0: The maximum resident set size (KB) = 902884 + 0: The total amount of wall time = 215.613949 + 0: The maximum resident set size (KB) = 912072 Test 138 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_ciceC_cfsr_intel Checking test 139 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 225.782396 - 0: The maximum resident set size (KB) = 1031800 + 0: The total amount of wall time = 210.309708 + 0: The maximum resident set size (KB) = 1034352 Test 139 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_bulk_cfsr_intel Checking test 140 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.565677 - 0: The maximum resident set size (KB) = 1036904 + 0: The total amount of wall time = 209.676994 + 0: The maximum resident set size (KB) = 1040748 Test 140 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_bulk_gefs_intel Checking test 141 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.527962 - 0: The maximum resident set size (KB) = 911592 + 0: The total amount of wall time = 210.204584 + 0: The maximum resident set size (KB) = 916436 Test 141 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_mx025_cfsr_intel Checking test 142 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4763,14 +4777,14 @@ Checking test 142 datm_cdeps_mx025_cfsr_intel 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 = 480.413607 - 0: The maximum resident set size (KB) = 882800 + 0: The total amount of wall time = 483.159532 + 0: The maximum resident set size (KB) = 876200 Test 142 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_mx025_gefs_intel Checking test 143 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4779,77 +4793,77 @@ Checking test 143 datm_cdeps_mx025_gefs_intel 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 = 506.477407 - 0: The maximum resident set size (KB) = 824832 + 0: The total amount of wall time = 470.759085 + 0: The maximum resident set size (KB) = 835960 Test 143 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_multiple_files_cfsr_intel Checking test 144 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 212.276498 - 0: The maximum resident set size (KB) = 1048124 + 0: The total amount of wall time = 201.941141 + 0: The maximum resident set size (KB) = 1034344 Test 144 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_3072x1536_cfsr_intel Checking test 145 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 322.205490 - 0: The maximum resident set size (KB) = 2373096 + 0: The total amount of wall time = 286.844545 + 0: The maximum resident set size (KB) = 2342548 Test 145 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_gfs_intel Checking test 146 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 305.931874 - 0: The maximum resident set size (KB) = 2321892 + 0: The total amount of wall time = 319.705100 + 0: The maximum resident set size (KB) = 2391576 Test 146 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_debug_cfsr_intel Checking test 147 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 462.218799 - 0: The maximum resident set size (KB) = 1000440 + 0: The total amount of wall time = 468.447559 + 0: The maximum resident set size (KB) = 990680 Test 147 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_cfsr_faster_intel Checking test 148 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.632742 - 0: The maximum resident set size (KB) = 1029256 + 0: The total amount of wall time = 219.323172 + 0: The maximum resident set size (KB) = 1034180 Test 148 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_gswp3_intel Checking test 149 datm_cdeps_lnd_gswp3_intel 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 @@ -4858,14 +4872,14 @@ Checking test 149 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 151.041608 - 0: The maximum resident set size (KB) = 225252 + 0: The total amount of wall time = 90.188574 + 0: The maximum resident set size (KB) = 223740 Test 149 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_era5_intel Checking test 150 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -4874,14 +4888,14 @@ Checking test 150 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 85.477378 - 0: The maximum resident set size (KB) = 245608 + 0: The total amount of wall time = 65.236300 + 0: The maximum resident set size (KB) = 251264 Test 150 datm_cdeps_lnd_era5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/datm_cdeps_lnd_era5_rst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_era5_rst_intel Checking test 151 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -4890,14 +4904,14 @@ Checking test 151 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 50.254967 - 0: The maximum resident set size (KB) = 249200 + 0: The total amount of wall time = 36.899065 + 0: The maximum resident set size (KB) = 244708 Test 151 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_atmlnd_sbs_intel Checking test 152 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4986,14 +5000,14 @@ Checking test 152 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 842.735783 - 0: The maximum resident set size (KB) = 1574620 + 0: The total amount of wall time = 616.627105 + 0: The maximum resident set size (KB) = 1577792 Test 152 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_atmlnd_intel Checking test 153 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5082,14 +5096,14 @@ Checking test 153 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 876.946719 - 0: The maximum resident set size (KB) = 1586668 + 0: The total amount of wall time = 660.431612 + 0: The maximum resident set size (KB) = 1586640 Test 153 control_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_restart_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_p8_atmlnd_intel Checking test 154 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5110,14 +5124,14 @@ Checking test 154 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 335.395509 - 0: The maximum resident set size (KB) = 862396 + 0: The total amount of wall time = 299.971510 + 0: The maximum resident set size (KB) = 847156 Test 154 control_restart_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmwav_control_noaero_p8_intel Checking test 155 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5160,14 +5174,14 @@ Checking test 155 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 182.420972 - 0: The maximum resident set size (KB) = 1591856 + 0: The total amount of wall time = 126.897672 + 0: The maximum resident set size (KB) = 1578440 Test 155 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_atmwav_intel Checking test 156 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5211,14 +5225,14 @@ Checking test 156 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 617.078935 - 0: The maximum resident set size (KB) = 600112 + 0: The total amount of wall time = 126.754232 + 0: The maximum resident set size (KB) = 597980 Test 156 control_atmwav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_intel Checking test 157 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5262,14 +5276,14 @@ Checking test 157 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.089759 - 0: The maximum resident set size (KB) = 1663444 + 0: The total amount of wall time = 312.736648 + 0: The maximum resident set size (KB) = 1667380 Test 157 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_rad_intel Checking test 158 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5313,14 +5327,14 @@ Checking test 158 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.690836 - 0: The maximum resident set size (KB) = 1691284 + 0: The total amount of wall time = 371.562073 + 0: The maximum resident set size (KB) = 1690284 Test 158 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233613/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_rad_micro_intel Checking test 159 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5364,54 +5378,12 @@ Checking test 159 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 403.422838 - 0: The maximum resident set size (KB) = 1715216 + 0: The total amount of wall time = 393.158796 + 0: The maximum resident set size (KB) = 1709132 Test 159 atmaero_control_p8_rad_micro_intel PASS -FAILED TESTS: -hafs_regional_atm_ocn_wav_intel 130 failed in run_test - -REGRESSION TEST FAILED -Wed Jan 31 22:00:33 UTC 2024 -Elapsed time: 03h:49m:51s. Have a nice day! -Thu Feb 1 01:05:48 UTC 2024 -Start Regression test - -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-1412-g7437f73) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 1934 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_235951/hafs_regional_atm_ocn_wav_intel -Checking test 001 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1082.883641 - 0: The maximum resident set size (KB) = 804928 - -Test 001 hafs_regional_atm_ocn_wav_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Feb 1 02:01:04 UTC 2024 -Elapsed time: 00h:55m:18s. Have a nice day! +Fri Feb 2 06:43:44 UTC 2024 +Elapsed time: 03h:44m:37s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 13e99c3340..7add30c7a4 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,61 +1,62 @@ -Wed Jan 31 12:23:21 CST 2024 +Thu Feb 1 22:01:33 CST 2024 Start Regression test -Testing UFSWM Hash: 2d9959c5ab71b771c51e1d5995792df7c00e0a9c +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.4.17-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/feature/hafsv2_baseline_with_ssc) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 669 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 266 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 673 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 293 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 647 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 784 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 660 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 658 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 656 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 256 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 439 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 115 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 688 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 270 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 728 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 722 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 844 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 657 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 693 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 765 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 911 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1527 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1211 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 915 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 813 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1034 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel 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 wam_intel elapsed time 647 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 694 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 218 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 702 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 337 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 728 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 718 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 704 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 276 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 515 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 70 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 678 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 893 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 233 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 892 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 800 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 846 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 704 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 256 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 740 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 775 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 874 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 352 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1106 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 313 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 852 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 309 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 823 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1202 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -120,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.626977 - 0: The maximum resident set size (KB) = 3176072 + 0: The total amount of wall time = 294.046227 + 0: The maximum resident set size (KB) = 3176816 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -191,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 971.319060 - 0: The maximum resident set size (KB) = 1735960 + 0: The total amount of wall time = 966.565559 + 0: The maximum resident set size (KB) = 1742380 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -244,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1031.139526 - 0: The maximum resident set size (KB) = 2025660 + 0: The total amount of wall time = 1064.414508 + 0: The maximum resident set size (KB) = 2026092 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -304,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 481.301438 - 0: The maximum resident set size (KB) = 1111628 + 0: The total amount of wall time = 468.605638 + 0: The maximum resident set size (KB) = 1115996 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_mpi_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1089.109538 - 0: The maximum resident set size (KB) = 1646472 + 0: The total amount of wall time = 1091.503730 + 0: The maximum resident set size (KB) = 1636144 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -434,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1362.235892 - 0: The maximum resident set size (KB) = 1682712 + 0: The total amount of wall time = 1355.400569 + 0: The maximum resident set size (KB) = 1689140 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -506,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.542705 - 0: The maximum resident set size (KB) = 3213380 + 0: The total amount of wall time = 325.640949 + 0: The maximum resident set size (KB) = 3218128 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -566,14 +567,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.857569 - 0: The maximum resident set size (KB) = 3255464 + 0: The total amount of wall time = 188.512875 + 0: The maximum resident set size (KB) = 3259248 Test 008 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -638,14 +639,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.710053 - 0: The maximum resident set size (KB) = 3240692 + 0: The total amount of wall time = 328.929311 + 0: The maximum resident set size (KB) = 3160688 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_qr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -698,14 +699,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.769482 - 0: The maximum resident set size (KB) = 3279592 + 0: The total amount of wall time = 192.390015 + 0: The maximum resident set size (KB) = 3273800 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -758,14 +759,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.538557 - 0: The maximum resident set size (KB) = 3556716 + 0: The total amount of wall time = 353.961573 + 0: The maximum resident set size (KB) = 3554640 Test 011 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -818,14 +819,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.852703 - 0: The maximum resident set size (KB) = 3202400 + 0: The total amount of wall time = 322.932221 + 0: The maximum resident set size (KB) = 3208728 Test 012 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_mpi_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -878,14 +879,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 268.574689 - 0: The maximum resident set size (KB) = 3070116 + 0: The total amount of wall time = 271.839824 + 0: The maximum resident set size (KB) = 3074456 Test 013 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -950,14 +951,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.937528 - 0: The maximum resident set size (KB) = 3219188 + 0: The total amount of wall time = 326.524557 + 0: The maximum resident set size (KB) = 3216920 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1010,14 +1011,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 578.778650 - 0: The maximum resident set size (KB) = 3339092 + 0: The total amount of wall time = 575.326427 + 0: The maximum resident set size (KB) = 3346456 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1070,14 +1071,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 365.388201 - 0: The maximum resident set size (KB) = 3623560 + 0: The total amount of wall time = 364.745418 + 0: The maximum resident set size (KB) = 3619300 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1125,14 +1126,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 637.435051 - 0: The maximum resident set size (KB) = 4047836 + 0: The total amount of wall time = 633.792675 + 0: The maximum resident set size (KB) = 4125356 Test 017 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1180,14 +1181,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.730520 - 0: The maximum resident set size (KB) = 4289012 + 0: The total amount of wall time = 389.539242 + 0: The maximum resident set size (KB) = 4355964 Test 018 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_s2sa_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1238,14 +1239,14 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 305.594324 - 0: The maximum resident set size (KB) = 3176736 + 0: The total amount of wall time = 306.647417 + 0: The maximum resident set size (KB) = 3179640 Test 019 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1309,14 +1310,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 250.874776 - 0: The maximum resident set size (KB) = 1732176 + 0: The total amount of wall time = 252.632524 + 0: The maximum resident set size (KB) = 1733068 Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_nowave_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1378,14 +1379,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel 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 = 249.169752 - 0: The maximum resident set size (KB) = 1782292 + 0: The total amount of wall time = 249.114124 + 0: The maximum resident set size (KB) = 1785904 Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1438,14 +1439,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 511.277877 - 0: The maximum resident set size (KB) = 3250436 + 0: The total amount of wall time = 499.646961 + 0: The maximum resident set size (KB) = 3248592 Test 022 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1497,14 +1498,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.991541 - 0: The maximum resident set size (KB) = 1750476 + 0: The total amount of wall time = 338.395066 + 0: The maximum resident set size (KB) = 1756828 Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1566,14 +1567,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel 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 = 250.715414 - 0: The maximum resident set size (KB) = 1775740 + 0: The total amount of wall time = 246.734504 + 0: The maximum resident set size (KB) = 1781532 Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1623,14 +1624,14 @@ Checking test 025 cpld_control_c48_intel 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 = 476.094025 - 0: The maximum resident set size (KB) = 2833396 + 0: The total amount of wall time = 470.914637 + 0: The maximum resident set size (KB) = 2828148 Test 025 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1695,14 +1696,14 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.894706 - 0: The maximum resident set size (KB) = 3212716 + 0: The total amount of wall time = 306.059168 + 0: The maximum resident set size (KB) = 3209460 Test 026 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1766,14 +1767,14 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1118.493580 - 0: The maximum resident set size (KB) = 1765692 + 0: The total amount of wall time = 976.993130 + 0: The maximum resident set size (KB) = 1773884 Test 027 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_restart_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1825,14 +1826,14 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.119885 - 0: The maximum resident set size (KB) = 1169612 + 0: The total amount of wall time = 477.590817 + 0: The maximum resident set size (KB) = 1170924 Test 028 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_mpi_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1896,14 +1897,14 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1096.331049 - 0: The maximum resident set size (KB) = 1683580 + 0: The total amount of wall time = 1103.760909 + 0: The maximum resident set size (KB) = 1632284 Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1955,14 +1956,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1458.868537 - 0: The maximum resident set size (KB) = 1663564 + 0: The total amount of wall time = 1462.550741 + 0: The maximum resident set size (KB) = 1716116 Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1973,14 +1974,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.457228 - 0: The maximum resident set size (KB) = 700144 + 0: The total amount of wall time = 194.072155 + 0: The maximum resident set size (KB) = 701008 Test 031 control_flake_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2007,16 +2008,16 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.396718 - 0: The maximum resident set size (KB) = 644308 + 0: The total amount of wall time = 134.048445 + 0: The maximum resident set size (KB) = 647724 Test 032 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -2029,14 +2030,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.851647 - 0: The maximum resident set size (KB) = 654620 + 0: The total amount of wall time = 139.901042 + 0: The maximum resident set size (KB) = 659308 Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2047,14 +2048,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.944041 - 0: The maximum resident set size (KB) = 655520 + 0: The total amount of wall time = 136.671306 + 0: The maximum resident set size (KB) = 648088 Test 034 control_latlon_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2065,14 +2066,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.745872 - 0: The maximum resident set size (KB) = 651756 + 0: The total amount of wall time = 137.249040 + 0: The maximum resident set size (KB) = 654920 Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2111,14 +2112,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.516295 -0: The maximum resident set size (KB) = 871240 +0: The total amount of wall time = 345.978202 +0: The maximum resident set size (KB) = 877988 Test 036 control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2129,14 +2130,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.244126 - 0: The maximum resident set size (KB) = 851592 + 0: The total amount of wall time = 529.140770 + 0: The maximum resident set size (KB) = 859184 Test 037 control_c192_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2147,14 +2148,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 598.242410 - 0: The maximum resident set size (KB) = 1196176 + 0: The total amount of wall time = 590.185195 + 0: The maximum resident set size (KB) = 1199536 Test 038 control_c384_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2174,7 +2175,7 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK @@ -2197,14 +2198,14 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.299488 - 0: The maximum resident set size (KB) = 1349028 + 0: The total amount of wall time = 523.254308 + 0: The maximum resident set size (KB) = 1339444 Test 039 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2215,28 +2216,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.830377 - 0: The maximum resident set size (KB) = 655984 + 0: The total amount of wall time = 88.220532 + 0: The maximum resident set size (KB) = 659592 Test 040 control_stochy_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_stochy_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.797459 - 0: The maximum resident set size (KB) = 503004 + 0: The total amount of wall time = 51.543131 + 0: The maximum resident set size (KB) = 507940 Test 041 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2247,14 +2248,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.400975 - 0: The maximum resident set size (KB) = 656196 + 0: The total amount of wall time = 83.321342 + 0: The maximum resident set size (KB) = 658892 Test 042 control_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2269,14 +2270,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.918329 - 0: The maximum resident set size (KB) = 648468 + 0: The total amount of wall time = 135.682410 + 0: The maximum resident set size (KB) = 653460 Test 043 control_iovr4_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2291,14 +2292,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.457777 - 0: The maximum resident set size (KB) = 655896 + 0: The total amount of wall time = 135.993128 + 0: The maximum resident set size (KB) = 648396 Test 044 control_iovr5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2345,14 +2346,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.369400 - 0: The maximum resident set size (KB) = 1627988 + 0: The total amount of wall time = 167.250103 + 0: The maximum resident set size (KB) = 1633920 Test 045 control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2399,14 +2400,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.578330 - 0: The maximum resident set size (KB) = 1625272 + 0: The total amount of wall time = 159.830730 + 0: The maximum resident set size (KB) = 1633780 Test 046 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_restart_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2445,14 +2446,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.402404 - 0: The maximum resident set size (KB) = 896124 + 0: The total amount of wall time = 90.466824 + 0: The maximum resident set size (KB) = 892936 Test 047 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_noqr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2499,14 +2500,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.461826 - 0: The maximum resident set size (KB) = 1612324 + 0: The total amount of wall time = 160.565574 + 0: The maximum resident set size (KB) = 1615488 Test 048 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_restart_noqr_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2545,14 +2546,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.586101 - 0: The maximum resident set size (KB) = 931544 + 0: The total amount of wall time = 86.332897 + 0: The maximum resident set size (KB) = 928828 Test 049 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_decomp_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2595,14 +2596,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.182814 - 0: The maximum resident set size (KB) = 1618612 + 0: The total amount of wall time = 169.381256 + 0: The maximum resident set size (KB) = 1611584 Test 050 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_2threads_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2645,14 +2646,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.109479 - 0: The maximum resident set size (KB) = 1712516 + 0: The total amount of wall time = 171.854785 + 0: The maximum resident set size (KB) = 1717128 Test 051 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2671,14 +2672,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 299.122119 - 0: The maximum resident set size (KB) = 1627396 + 0: The total amount of wall time = 301.354020 + 0: The maximum resident set size (KB) = 1624044 Test 052 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2725,14 +2726,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.315831 - 0: The maximum resident set size (KB) = 1694088 + 0: The total amount of wall time = 224.184009 + 0: The maximum resident set size (KB) = 1691512 Test 053 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2779,14 +2780,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.378252 - 0: The maximum resident set size (KB) = 1629852 + 0: The total amount of wall time = 169.293915 + 0: The maximum resident set size (KB) = 1629992 Test 054 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2833,14 +2834,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.371375 - 0: The maximum resident set size (KB) = 1643516 + 0: The total amount of wall time = 197.767157 + 0: The maximum resident set size (KB) = 1631796 Test 055 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2851,28 +2852,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.215050 - 0: The maximum resident set size (KB) = 857780 + 0: The total amount of wall time = 296.059980 + 0: The maximum resident set size (KB) = 859848 Test 056 regional_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.135975 - 0: The maximum resident set size (KB) = 1022576 + 0: The total amount of wall time = 155.471064 + 0: The maximum resident set size (KB) = 988296 Test 057 regional_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2883,14 +2884,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.222100 - 0: The maximum resident set size (KB) = 852548 + 0: The total amount of wall time = 317.786850 + 0: The maximum resident set size (KB) = 852068 Test 058 regional_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2901,14 +2902,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.897970 - 0: The maximum resident set size (KB) = 845232 + 0: The total amount of wall time = 210.884786 + 0: The maximum resident set size (KB) = 864060 Test 059 regional_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2916,28 +2917,28 @@ Checking test 060 regional_noquilt_intel 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 = 292.852719 - 0: The maximum resident set size (KB) = 1363312 + 0: The total amount of wall time = 293.236074 + 0: The maximum resident set size (KB) = 1359252 Test 060 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.406831 - 0: The maximum resident set size (KB) = 853588 + 0: The total amount of wall time = 294.567591 + 0: The maximum resident set size (KB) = 855680 Test 061 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_2dwrtdecomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2948,14 +2949,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.569334 - 0: The maximum resident set size (KB) = 858260 + 0: The total amount of wall time = 298.353093 + 0: The maximum resident set size (KB) = 855364 Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2966,14 +2967,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 387.094597 - 0: The maximum resident set size (KB) = 1921068 + 0: The total amount of wall time = 387.872943 + 0: The maximum resident set size (KB) = 1919028 Test 063 regional_wofs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3021,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.340108 - 0: The maximum resident set size (KB) = 1090284 + 0: The total amount of wall time = 455.587194 + 0: The maximum resident set size (KB) = 1108696 Test 064 rap_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3038,14 +3039,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 273.380078 - 0: The maximum resident set size (KB) = 1297556 + 0: The total amount of wall time = 267.829959 + 0: The maximum resident set size (KB) = 1235240 Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3092,14 +3093,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.977116 - 0: The maximum resident set size (KB) = 1034536 + 0: The total amount of wall time = 472.746087 + 0: The maximum resident set size (KB) = 1031056 Test 066 rap_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3146,14 +3147,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.879998 - 0: The maximum resident set size (KB) = 1183428 + 0: The total amount of wall time = 460.601814 + 0: The maximum resident set size (KB) = 1186196 Test 067 rap_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3192,14 +3193,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.900910 - 0: The maximum resident set size (KB) = 1104576 + 0: The total amount of wall time = 230.904229 + 0: The maximum resident set size (KB) = 1099260 Test 068 rap_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3246,14 +3247,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.161928 - 0: The maximum resident set size (KB) = 1109108 + 0: The total amount of wall time = 450.192953 + 0: The maximum resident set size (KB) = 1103668 Test 069 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3300,14 +3301,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.436464 - 0: The maximum resident set size (KB) = 1042596 + 0: The total amount of wall time = 472.936899 + 0: The maximum resident set size (KB) = 1031172 Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3346,14 +3347,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.313974 - 0: The maximum resident set size (KB) = 1138072 + 0: The total amount of wall time = 336.538798 + 0: The maximum resident set size (KB) = 1136652 Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3400,14 +3401,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.311558 - 0: The maximum resident set size (KB) = 1033132 + 0: The total amount of wall time = 228.518541 + 0: The maximum resident set size (KB) = 1037372 Test 072 hrrr_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_decomp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3454,14 +3455,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.831398 - 0: The maximum resident set size (KB) = 1023484 + 0: The total amount of wall time = 248.592295 + 0: The maximum resident set size (KB) = 1022288 Test 073 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3508,28 +3509,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.468477 - 0: The maximum resident set size (KB) = 1108344 + 0: The total amount of wall time = 192.356244 + 0: The maximum resident set size (KB) = 1105804 Test 074 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_restart_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.777705 - 0: The maximum resident set size (KB) = 997536 + 0: The total amount of wall time = 120.874929 + 0: The maximum resident set size (KB) = 998724 Test 075 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3576,14 +3577,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.890596 - 0: The maximum resident set size (KB) = 1092620 + 0: The total amount of wall time = 444.692762 + 0: The maximum resident set size (KB) = 1095508 Test 076 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3598,14 +3599,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.901385 - 0: The maximum resident set size (KB) = 1992084 + 0: The total amount of wall time = 540.486514 + 0: The maximum resident set size (KB) = 1994968 Test 077 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3620,14 +3621,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.294802 - 0: The maximum resident set size (KB) = 2074408 + 0: The total amount of wall time = 525.511275 + 0: The maximum resident set size (KB) = 2067680 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3638,14 +3639,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.235562 - 0: The maximum resident set size (KB) = 747084 + 0: The total amount of wall time = 351.513316 + 0: The maximum resident set size (KB) = 745800 Test 079 control_csawmg_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3656,14 +3657,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.396068 - 0: The maximum resident set size (KB) = 745612 + 0: The total amount of wall time = 340.534995 + 0: The maximum resident set size (KB) = 752500 Test 080 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3674,26 +3675,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.112458 - 0: The maximum resident set size (KB) = 688272 + 0: The total amount of wall time = 188.743280 + 0: The maximum resident set size (KB) = 737752 Test 081 control_ras_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.232555 - 0: The maximum resident set size (KB) = 655348 + 0: The total amount of wall time = 118.141813 + 0: The maximum resident set size (KB) = 656728 Test 082 control_wam_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3740,14 +3741,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.492616 - 0: The maximum resident set size (KB) = 1627364 + 0: The total amount of wall time = 148.387190 + 0: The maximum resident set size (KB) = 1626136 Test 083 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3758,14 +3759,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.053802 - 0: The maximum resident set size (KB) = 853832 + 0: The total amount of wall time = 271.796542 + 0: The maximum resident set size (KB) = 853180 Test 084 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3792,364 +3793,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.667391 - 0: The maximum resident set size (KB) = 819824 + 0: The total amount of wall time = 155.193834 + 0: The maximum resident set size (KB) = 813240 Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.423654 - 0: The maximum resident set size (KB) = 812068 + 0: The total amount of wall time = 151.563773 + 0: The maximum resident set size (KB) = 813036 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel 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.198331 - 0: The maximum resident set size (KB) = 812660 + 0: The total amount of wall time = 174.802756 + 0: The maximum resident set size (KB) = 817356 Test 087 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.302088 - 0: The maximum resident set size (KB) = 817176 + 0: The total amount of wall time = 160.166029 + 0: The maximum resident set size (KB) = 817260 Test 088 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.867090 - 0: The maximum resident set size (KB) = 865272 + 0: The total amount of wall time = 237.175400 + 0: The maximum resident set size (KB) = 866804 Test 089 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.658279 - 0: The maximum resident set size (KB) = 808376 + 0: The total amount of wall time = 233.373841 + 0: The maximum resident set size (KB) = 865712 Test 090 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_ras_debug_intel Checking test 091 control_ras_debug_intel 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.002725 - 0: The maximum resident set size (KB) = 823648 + 0: The total amount of wall time = 156.913225 + 0: The maximum resident set size (KB) = 829840 Test 091 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.618970 - 0: The maximum resident set size (KB) = 870116 + 0: The total amount of wall time = 158.470835 + 0: The maximum resident set size (KB) = 871404 Test 092 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_debug_p8_intel Checking test 093 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.429458 - 0: The maximum resident set size (KB) = 1641176 + 0: The total amount of wall time = 158.843232 + 0: The maximum resident set size (KB) = 1648588 Test 093 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1038.916606 - 0: The maximum resident set size (KB) = 841036 + 0: The total amount of wall time = 1015.316758 + 0: The maximum resident set size (KB) = 840928 Test 094 regional_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.332524 - 0: The maximum resident set size (KB) = 1201996 + 0: The total amount of wall time = 282.253865 + 0: The maximum resident set size (KB) = 1203932 Test 095 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel 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.723306 - 0: The maximum resident set size (KB) = 1198828 + 0: The total amount of wall time = 276.221773 + 0: The maximum resident set size (KB) = 1199036 Test 096 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.964489 - 0: The maximum resident set size (KB) = 1198948 + 0: The total amount of wall time = 280.954394 + 0: The maximum resident set size (KB) = 1200100 Test 097 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.375580 - 0: The maximum resident set size (KB) = 1203452 + 0: The total amount of wall time = 287.281324 + 0: The maximum resident set size (KB) = 1198072 Test 098 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_unified_drag_suite_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel 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.954994 - 0: The maximum resident set size (KB) = 1180644 + 0: The total amount of wall time = 279.073560 + 0: The maximum resident set size (KB) = 1203100 Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.313189 - 0: The maximum resident set size (KB) = 1290580 + 0: The total amount of wall time = 297.623565 + 0: The maximum resident set size (KB) = 1292588 Test 100 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel 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.751034 - 0: The maximum resident set size (KB) = 1198164 + 0: The total amount of wall time = 295.169373 + 0: The maximum resident set size (KB) = 1202396 Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_unified_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel 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.948486 - 0: The maximum resident set size (KB) = 1195976 + 0: The total amount of wall time = 289.848392 + 0: The maximum resident set size (KB) = 1209412 Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel 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.895138 - 0: The maximum resident set size (KB) = 1200924 + 0: The total amount of wall time = 280.601213 + 0: The maximum resident set size (KB) = 1201944 Test 103 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.080311 - 0: The maximum resident set size (KB) = 1198768 + 0: The total amount of wall time = 285.910159 + 0: The maximum resident set size (KB) = 1203068 Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel 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.695400 - 0: The maximum resident set size (KB) = 1202400 + 0: The total amount of wall time = 281.531014 + 0: The maximum resident set size (KB) = 1202876 Test 105 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.152765 - 0: The maximum resident set size (KB) = 1199732 + 0: The total amount of wall time = 284.702054 + 0: The maximum resident set size (KB) = 1211116 Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.191425 - 0: The maximum resident set size (KB) = 1200512 + 0: The total amount of wall time = 471.891647 + 0: The maximum resident set size (KB) = 1201680 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel 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.421347 - 0: The maximum resident set size (KB) = 1205448 + 0: The total amount of wall time = 277.451865 + 0: The maximum resident set size (KB) = 1200684 Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel 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.242546 - 0: The maximum resident set size (KB) = 1190896 + 0: The total amount of wall time = 357.692709 + 0: The maximum resident set size (KB) = 1209208 Test 109 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.957975 - 0: The maximum resident set size (KB) = 1199616 + 0: The total amount of wall time = 280.392311 + 0: The maximum resident set size (KB) = 1196828 Test 110 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4190,26 +4191,26 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 501.395970 - 0: The maximum resident set size (KB) = 1205872 + 0: The total amount of wall time = 495.115111 + 0: The maximum resident set size (KB) = 1203440 Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wam_debug_intel Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 289.146668 - 0: The maximum resident set size (KB) = 511440 + 0: The total amount of wall time = 286.352549 + 0: The maximum resident set size (KB) = 529600 Test 112 control_wam_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4220,14 +4221,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 257.502604 - 0: The maximum resident set size (KB) = 1162752 + 0: The total amount of wall time = 253.608185 + 0: The maximum resident set size (KB) = 1156884 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4274,14 +4275,14 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.715750 - 0: The maximum resident set size (KB) = 1051784 + 0: The total amount of wall time = 371.644639 + 0: The maximum resident set size (KB) = 1046848 Test 114 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4328,14 +4329,14 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.077622 - 0: The maximum resident set size (KB) = 994700 + 0: The total amount of wall time = 192.236591 + 0: The maximum resident set size (KB) = 968924 Test 115 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_2threads_dyn32_phy32_intel Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4382,14 +4383,14 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.798800 - 0: The maximum resident set size (KB) = 1090956 + 0: The total amount of wall time = 389.682360 + 0: The maximum resident set size (KB) = 1091148 Test 116 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_2threads_dyn32_phy32_intel Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4436,14 +4437,14 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.800994 - 0: The maximum resident set size (KB) = 964848 + 0: The total amount of wall time = 167.957295 + 0: The maximum resident set size (KB) = 958140 Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_decomp_dyn32_phy32_intel Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4490,14 +4491,14 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.678054 - 0: The maximum resident set size (KB) = 918464 + 0: The total amount of wall time = 205.601097 + 0: The maximum resident set size (KB) = 936296 Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_restart_dyn32_phy32_intel Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4536,28 +4537,28 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.757137 - 0: The maximum resident set size (KB) = 1029236 + 0: The total amount of wall time = 278.138280 + 0: The maximum resident set size (KB) = 1029996 Test 119 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_restart_dyn32_phy32_intel Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.895453 - 0: The maximum resident set size (KB) = 930900 + 0: The total amount of wall time = 102.153701 + 0: The maximum resident set size (KB) = 936448 Test 120 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_control_intel Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4573,40 +4574,40 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.038132 - 0: The maximum resident set size (KB) = 1199816 + 0: The total amount of wall time = 116.103507 + 0: The maximum resident set size (KB) = 1203792 Test 121 conus13km_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_2threads_intel Checking test 122 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 50.623231 - 0: The maximum resident set size (KB) = 1124024 + 0: The total amount of wall time = 49.449560 + 0: The maximum resident set size (KB) = 1119732 Test 122 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_restart_mismatch_intel Checking test 123 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 64.856680 - 0: The maximum resident set size (KB) = 1111120 + 0: The total amount of wall time = 65.169105 + 0: The maximum resident set size (KB) = 1108792 Test 123 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4653,42 +4654,42 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.599426 - 0: The maximum resident set size (KB) = 993928 + 0: The total amount of wall time = 247.933551 + 0: The maximum resident set size (KB) = 990316 Test 124 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_debug_dyn32_phy32_intel Checking test 125 rap_control_debug_dyn32_phy32_intel 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.004883 - 0: The maximum resident set size (KB) = 1082328 + 0: The total amount of wall time = 282.284641 + 0: The maximum resident set size (KB) = 1081844 Test 125 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_debug_dyn32_phy32_intel Checking test 126 hrrr_control_debug_dyn32_phy32_intel 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.539748 - 0: The maximum resident set size (KB) = 1075364 + 0: The total amount of wall time = 283.973838 + 0: The maximum resident set size (KB) = 1080108 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_intel Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4702,14 +4703,14 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 857.430202 - 0: The maximum resident set size (KB) = 1226840 + 0: The total amount of wall time = 850.192416 + 0: The maximum resident set size (KB) = 1225408 Test 127 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_debug_qr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_qr_intel Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4723,81 +4724,81 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 860.401600 - 0: The maximum resident set size (KB) = 930452 + 0: The total amount of wall time = 837.995998 + 0: The maximum resident set size (KB) = 933124 Test 128 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_debug_2threads_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_2threads_intel Checking test 129 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 490.504214 - 0: The maximum resident set size (KB) = 1153100 + 0: The total amount of wall time = 491.078178 + 0: The maximum resident set size (KB) = 1155204 Test 129 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_radar_tten_debug_intel Checking test 130 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 852.722056 - 0: The maximum resident set size (KB) = 1300704 + 0: The total amount of wall time = 930.494572 + 0: The maximum resident set size (KB) = 1291772 Test 130 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/rap_control_dyn64_phy32_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn64_phy32_debug_intel Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.648213 - 0: The maximum resident set size (KB) = 1122692 + 0: The total amount of wall time = 284.137751 + 0: The maximum resident set size (KB) = 1128160 Test 131 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_intel Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 318.466608 - 0: The maximum resident set size (KB) = 740208 + 0: The total amount of wall time = 312.869667 + 0: The maximum resident set size (KB) = 739984 Test 132 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_thompson_gfdlsf_intel Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 344.718073 - 0: The maximum resident set size (KB) = 1127468 + 0: The total amount of wall time = 334.731662 + 0: The maximum resident set size (KB) = 1118808 Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_ocn_intel Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4806,14 +4807,14 @@ Checking test 134 hafs_regional_atm_ocn_intel 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 = 400.850818 - 0: The maximum resident set size (KB) = 830020 + 0: The total amount of wall time = 400.904579 + 0: The maximum resident set size (KB) = 827352 Test 134 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_wav_intel Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4822,14 +4823,14 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 766.287544 - 0: The maximum resident set size (KB) = 865280 + 0: The total amount of wall time = 763.867549 + 0: The maximum resident set size (KB) = 860584 Test 135 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_ocn_wav_intel Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4840,14 +4841,14 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 870.306811 - 0: The maximum resident set size (KB) = 878004 + 0: The total amount of wall time = 854.263696 + 0: The maximum resident set size (KB) = 880316 Test 136 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_1nest_atm_intel Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4865,18 +4866,18 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 356.126355 - 0: The maximum resident set size (KB) = 452724 + 0: The total amount of wall time = 353.724207 + 0: The maximum resident set size (KB) = 504352 Test 137 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_telescopic_2nests_atm_intel Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4885,14 +4886,14 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 448.449383 - 0: The maximum resident set size (KB) = 521036 + 0: The total amount of wall time = 433.392755 + 0: The maximum resident set size (KB) = 524856 Test 138 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_1nest_atm_intel Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4913,7 +4914,7 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -4929,7 +4930,7 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -4939,14 +4940,14 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 177.408139 - 0: The maximum resident set size (KB) = 372648 + 0: The total amount of wall time = 172.103736 + 0: The maximum resident set size (KB) = 375308 Test 139 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4978,17 +4979,17 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -5028,14 +5029,14 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 463.182505 - 0: The maximum resident set size (KB) = 472928 + 0: The total amount of wall time = 457.358617 + 0: The maximum resident set size (KB) = 481964 Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_specified_moving_1nest_atm_intel Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5044,14 +5045,14 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 240.322150 - 0: The maximum resident set size (KB) = 526944 + 0: The total amount of wall time = 237.273960 + 0: The maximum resident set size (KB) = 531680 Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_intel Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5073,14 +5074,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 229.529003 - 0: The maximum resident set size (KB) = 529948 + 0: The total amount of wall time = 222.459335 + 0: The maximum resident set size (KB) = 533628 Test 142 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5089,28 +5090,28 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 311.907787 - 0: The maximum resident set size (KB) = 590076 + 0: The total amount of wall time = 305.071769 + 0: The maximum resident set size (KB) = 537344 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_storm_following_1nest_atm_intel Checking test 144 hafs_global_storm_following_1nest_atm_intel 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 = 74.421079 - 0: The maximum resident set size (KB) = 399540 + 0: The total amount of wall time = 73.083308 + 0: The maximum resident set size (KB) = 402184 Test 144 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/gnv1_nested_intel Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5120,18 +5121,18 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -5140,14 +5141,14 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5157,28 +5158,28 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 264.103963 - 0: The maximum resident set size (KB) = 808564 + 0: The total amount of wall time = 257.256221 + 0: The maximum resident set size (KB) = 803116 Test 145 gnv1_nested_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 775.282837 - 0: The maximum resident set size (KB) = 570496 + 0: The total amount of wall time = 766.036949 + 0: The maximum resident set size (KB) = 573372 Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5189,162 +5190,162 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 556.425168 - 0: The maximum resident set size (KB) = 664396 + 0: The total amount of wall time = 556.049326 + 0: The maximum resident set size (KB) = 674728 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_docn_intel +Checking test 150 hafs_regional_docn_intel 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 = 373.450358 - 0: The maximum resident set size (KB) = 830384 + 0: The total amount of wall time = 360.745329 + 0: The maximum resident set size (KB) = 828192 -Test 148 hafs_regional_docn_intel PASS +Test 150 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_docn_oisst_intel +Checking test 151 hafs_regional_docn_oisst_intel 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 = 374.018485 - 0: The maximum resident set size (KB) = 815584 + 0: The total amount of wall time = 364.519175 + 0: The maximum resident set size (KB) = 812092 -Test 149 hafs_regional_docn_oisst_intel PASS +Test 151 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_datm_cdeps_intel +Checking test 152 hafs_regional_datm_cdeps_intel 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 = 944.415548 - 0: The maximum resident set size (KB) = 1209776 + 0: The total amount of wall time = 953.146730 + 0: The maximum resident set size (KB) = 1211268 -Test 150 hafs_regional_datm_cdeps_intel PASS +Test 152 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_cfsr_intel +Checking test 153 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.162227 - 0: The maximum resident set size (KB) = 1123328 + 0: The total amount of wall time = 146.431118 + 0: The maximum resident set size (KB) = 1130160 -Test 151 datm_cdeps_control_cfsr_intel PASS +Test 153 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_restart_cfsr_intel +Checking test 154 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.053508 - 0: The maximum resident set size (KB) = 1078516 + 0: The total amount of wall time = 89.944488 + 0: The maximum resident set size (KB) = 1091800 -Test 152 datm_cdeps_restart_cfsr_intel PASS +Test 154 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_gefs_intel +Checking test 155 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.279443 - 0: The maximum resident set size (KB) = 1014224 + 0: The total amount of wall time = 143.493663 + 0: The maximum resident set size (KB) = 1013004 -Test 153 datm_cdeps_control_gefs_intel PASS +Test 155 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_iau_gefs_intel +Checking test 156 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.893383 - 0: The maximum resident set size (KB) = 1011360 + 0: The total amount of wall time = 148.580964 + 0: The maximum resident set size (KB) = 1009740 -Test 154 datm_cdeps_iau_gefs_intel PASS +Test 156 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_stochy_gefs_intel +Checking test 157 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.717302 - 0: The maximum resident set size (KB) = 1009324 + 0: The total amount of wall time = 149.264839 + 0: The maximum resident set size (KB) = 1015556 -Test 155 datm_cdeps_stochy_gefs_intel PASS +Test 157 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_ciceC_cfsr_intel +Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.906373 - 0: The maximum resident set size (KB) = 1131996 + 0: The total amount of wall time = 147.843649 + 0: The maximum resident set size (KB) = 1130784 -Test 156 datm_cdeps_ciceC_cfsr_intel PASS +Test 158 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_bulk_cfsr_intel +Checking test 159 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.976233 - 0: The maximum resident set size (KB) = 1119908 + 0: The total amount of wall time = 151.428024 + 0: The maximum resident set size (KB) = 1119756 -Test 157 datm_cdeps_bulk_cfsr_intel PASS +Test 159 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_bulk_gefs_intel +Checking test 160 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.229346 - 0: The maximum resident set size (KB) = 1013676 + 0: The total amount of wall time = 143.124314 + 0: The maximum resident set size (KB) = 1012792 -Test 158 datm_cdeps_bulk_gefs_intel PASS +Test 160 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_mx025_cfsr_intel +Checking test 161 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5352,15 +5353,15 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel 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 = 341.331136 - 0: The maximum resident set size (KB) = 1051452 + 0: The total amount of wall time = 342.329502 + 0: The maximum resident set size (KB) = 1062936 -Test 159 datm_cdeps_mx025_cfsr_intel PASS +Test 161 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_mx025_gefs_intel +Checking test 162 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5368,78 +5369,78 @@ Checking test 160 datm_cdeps_mx025_gefs_intel 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 = 336.710529 - 0: The maximum resident set size (KB) = 1039284 + 0: The total amount of wall time = 333.524588 + 0: The maximum resident set size (KB) = 1040412 -Test 160 datm_cdeps_mx025_gefs_intel PASS +Test 162 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_multiple_files_cfsr_intel +Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.428743 - 0: The maximum resident set size (KB) = 1126664 + 0: The total amount of wall time = 146.279752 + 0: The maximum resident set size (KB) = 1125476 -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS +Test 163 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_3072x1536_cfsr_intel +Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.373275 - 0: The maximum resident set size (KB) = 2413568 + 0: The total amount of wall time = 202.880101 + 0: The maximum resident set size (KB) = 2439448 -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS +Test 164 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_gfs_intel +Checking test 165 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 207.730143 - 0: The maximum resident set size (KB) = 2486028 + 0: The total amount of wall time = 213.231501 + 0: The maximum resident set size (KB) = 2454844 -Test 163 datm_cdeps_gfs_intel PASS +Test 165 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_debug_cfsr_intel +Checking test 166 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 368.109796 - 0: The maximum resident set size (KB) = 1052592 + 0: The total amount of wall time = 355.357397 + 0: The maximum resident set size (KB) = 1045600 -Test 164 datm_cdeps_debug_cfsr_intel PASS +Test 166 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_cfsr_faster_intel +Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.254012 - 0: The maximum resident set size (KB) = 1125856 + 0: The total amount of wall time = 146.589452 + 0: The maximum resident set size (KB) = 1139220 -Test 165 datm_cdeps_control_cfsr_faster_intel PASS +Test 167 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_gswp3_intel +Checking test 168 datm_cdeps_lnd_gswp3_intel 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 @@ -5447,15 +5448,15 @@ Checking test 166 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 39.369739 - 0: The maximum resident set size (KB) = 251696 + 0: The total amount of wall time = 38.604186 + 0: The maximum resident set size (KB) = 262260 -Test 166 datm_cdeps_lnd_gswp3_intel PASS +Test 168 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_lnd_era5_intel -Checking test 167 datm_cdeps_lnd_era5_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_era5_intel +Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5463,15 +5464,15 @@ Checking test 167 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 39.585880 - 0: The maximum resident set size (KB) = 323980 + 0: The total amount of wall time = 39.558001 + 0: The maximum resident set size (KB) = 326640 -Test 167 datm_cdeps_lnd_era5_intel PASS +Test 169 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/datm_cdeps_lnd_era5_rst_intel -Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_era5_rst_intel +Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5479,15 +5480,15 @@ Checking test 168 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 23.235294 - 0: The maximum resident set size (KB) = 327276 + 0: The total amount of wall time = 21.244567 + 0: The maximum resident set size (KB) = 321412 -Test 168 datm_cdeps_lnd_era5_rst_intel PASS +Test 170 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_atmlnd_sbs_intel -Checking test 169 control_p8_atmlnd_sbs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_atmlnd_sbs_intel +Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5575,15 +5576,15 @@ Checking test 169 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 245.802205 - 0: The maximum resident set size (KB) = 1609324 + 0: The total amount of wall time = 243.719275 + 0: The maximum resident set size (KB) = 1608580 -Test 169 control_p8_atmlnd_sbs_intel PASS +Test 171 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_p8_atmlnd_intel -Checking test 170 control_p8_atmlnd_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_atmlnd_intel +Checking test 172 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5671,15 +5672,15 @@ Checking test 170 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 244.222441 - 0: The maximum resident set size (KB) = 1601188 + 0: The total amount of wall time = 242.390820 + 0: The maximum resident set size (KB) = 1598724 -Test 170 control_p8_atmlnd_intel PASS +Test 172 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_restart_p8_atmlnd_intel -Checking test 171 control_restart_p8_atmlnd_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_p8_atmlnd_intel +Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5699,15 +5700,15 @@ Checking test 171 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 128.446274 - 0: The maximum resident set size (KB) = 895152 + 0: The total amount of wall time = 126.452301 + 0: The maximum resident set size (KB) = 900380 -Test 171 control_restart_p8_atmlnd_intel PASS +Test 173 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmwav_control_noaero_p8_intel -Checking test 172 atmwav_control_noaero_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmwav_control_noaero_p8_intel +Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5749,15 +5750,15 @@ Checking test 172 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.639479 - 0: The maximum resident set size (KB) = 1670564 + 0: The total amount of wall time = 93.223030 + 0: The maximum resident set size (KB) = 1667612 -Test 172 atmwav_control_noaero_p8_intel PASS +Test 174 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/control_atmwav_intel -Checking test 173 control_atmwav_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_atmwav_intel +Checking test 175 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5800,15 +5801,15 @@ Checking test 173 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.509031 - 0: The maximum resident set size (KB) = 619160 + 0: The total amount of wall time = 88.561386 + 0: The maximum resident set size (KB) = 675648 -Test 173 control_atmwav_intel PASS +Test 175 control_atmwav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmaero_control_p8_intel -Checking test 174 atmaero_control_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_intel +Checking test 176 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5851,15 +5852,15 @@ Checking test 174 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.094352 - 0: The maximum resident set size (KB) = 3025384 + 0: The total amount of wall time = 224.873739 + 0: The maximum resident set size (KB) = 3028680 -Test 174 atmaero_control_p8_intel PASS +Test 176 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmaero_control_p8_rad_intel -Checking test 175 atmaero_control_p8_rad_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_rad_intel +Checking test 177 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5902,15 +5903,15 @@ Checking test 175 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.007531 - 0: The maximum resident set size (KB) = 3089444 + 0: The total amount of wall time = 274.747097 + 0: The maximum resident set size (KB) = 3091436 -Test 175 atmaero_control_p8_rad_intel PASS +Test 177 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/atmaero_control_p8_rad_micro_intel -Checking test 176 atmaero_control_p8_rad_micro_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_rad_micro_intel +Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5953,33 +5954,152 @@ Checking test 176 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.307274 - 0: The maximum resident set size (KB) = 3111312 + 0: The total amount of wall time = 287.152060 + 0: The maximum resident set size (KB) = 3109360 -Test 176 atmaero_control_p8_rad_micro_intel PASS +Test 178 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14031/regional_atmaq_debug_intel -Checking test 177 regional_atmaq_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_atmaq_debug_intel +Checking test 179 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1252.410677 - 0: The maximum resident set size (KB) = 4390364 + 0: The total amount of wall time = 1191.414389 + 0: The maximum resident set size (KB) = 4584744 + +Test 179 regional_atmaq_debug_intel PASS + +FAILED TESTS: +hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 148 failed in run_test +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 149 failed in run_test + +REGRESSION TEST FAILED +Thu Feb 1 23:30:49 CST 2024 +Elapsed time: 01h:29m:19s. Have a nice day! +Fri Feb 2 09:10:24 CST 2024 +Start Regression test + +Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 756 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 775 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_368563/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 412.473254 + 0: The maximum resident set size (KB) = 750244 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_368563/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 569.198920 + 0: The maximum resident set size (KB) = 751644 + +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Fri Feb 2 09:37:47 CST 2024 +Elapsed time: 00h:27m:25s. Have a nice day! +Mon Feb 5 10:54:15 CST 2024 +Start Regression test + +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 793 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_faster_intel elapsed time 854 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_267683/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 574.416959 + 0: The maximum resident set size (KB) = 751768 + +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_267683/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 418.021390 + 0: The maximum resident set size (KB) = 726436 -Test 177 regional_atmaq_debug_intel PASS +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 31 14:34:24 CST 2024 -Elapsed time: 02h:11m:04s. Have a nice day! +Mon Feb 5 11:23:29 CST 2024 +Elapsed time: 00h:29m:16s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index d97d945e40..4a15cb7f33 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,53 +1,54 @@ -Thu Feb 1 13:51:03 UTC 2024 +Mon Feb 5 16:07:22 UTC 2024 Start Regression test -Testing UFSWM Hash: 290f403d11b3d80a53037659000cc4c0d09e1e89 +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 89603d16f39675624fc8518da50d9515cd5f18c6 CDEPS-interface/CDEPS (cdeps0.3.11-39-g89603d1) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 7437f73df4b43e8924b6493c5067544af097ad78 CMEPS-interface/CMEPS (cmeps_v0.4.1-2305-g7437f73) ++eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b7587dfeacd95f43da0595dee42b78a2d78653e9 FV3 (remotes/origin/develop-159-gb7587df) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 537 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 336 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 915 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1150 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1031 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 957 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 887 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 873 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 351 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 974 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 1023 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 601 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 830 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 507 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 601 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1375 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1852 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 282 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 711 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1689 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1556 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 639 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 539 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 733 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 1204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 881 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 646 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 751 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 275 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 987 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 1095 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 573 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 1000 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 404 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 960 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 860 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 772 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 2480 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1924 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1303 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 717 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1321 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 636 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 1665 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 984 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -112,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.790136 -The maximum resident set size (KB) = 2979036 +The total amount of wall time = 324.531120 +The maximum resident set size (KB) = 2975832 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -183,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 913.132658 -The maximum resident set size (KB) = 1588808 +The total amount of wall time = 920.432397 +The maximum resident set size (KB) = 1585660 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -236,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 993.102335 -The maximum resident set size (KB) = 1717168 +The total amount of wall time = 973.324188 +The maximum resident set size (KB) = 1715464 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -296,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 463.777971 -The maximum resident set size (KB) = 846348 +The total amount of wall time = 455.931854 +The maximum resident set size (KB) = 848976 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -367,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1064.665368 -The maximum resident set size (KB) = 1576076 +The total amount of wall time = 1069.396702 +The maximum resident set size (KB) = 1569336 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -426,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1407.269946 -The maximum resident set size (KB) = 1604152 +The total amount of wall time = 1402.962355 +The maximum resident set size (KB) = 1606776 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -498,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.408417 -The maximum resident set size (KB) = 3003140 +The total amount of wall time = 367.435897 +The maximum resident set size (KB) = 3001572 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -558,14 +559,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.915891 -The maximum resident set size (KB) = 3061036 +The total amount of wall time = 217.728306 +The maximum resident set size (KB) = 3061588 Test 008 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -630,14 +631,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.928234 -The maximum resident set size (KB) = 3026616 +The total amount of wall time = 369.622916 +The maximum resident set size (KB) = 3026808 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -690,14 +691,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 219.804688 -The maximum resident set size (KB) = 3079252 +The total amount of wall time = 220.554849 +The maximum resident set size (KB) = 3080264 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -750,14 +751,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.941228 -The maximum resident set size (KB) = 3316512 +The total amount of wall time = 328.454132 +The maximum resident set size (KB) = 3316180 Test 011 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -810,14 +811,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.048301 -The maximum resident set size (KB) = 3002580 +The total amount of wall time = 365.313035 +The maximum resident set size (KB) = 3002192 Test 012 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -870,14 +871,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 311.253227 -The maximum resident set size (KB) = 2930308 +The total amount of wall time = 306.564132 +The maximum resident set size (KB) = 2926876 Test 013 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -942,14 +943,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 371.099554 -The maximum resident set size (KB) = 3004608 +The total amount of wall time = 371.473340 +The maximum resident set size (KB) = 3002648 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_bmark_p8_intel Checking test 015 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -997,14 +998,14 @@ Checking test 015 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 762.483197 -The maximum resident set size (KB) = 3952848 +The total amount of wall time = 768.743799 +The maximum resident set size (KB) = 3949748 Test 015 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_bmark_p8_intel Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1052,14 +1053,14 @@ Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 522.310377 -The maximum resident set size (KB) = 4250760 +The total amount of wall time = 520.684958 +The maximum resident set size (KB) = 4254932 Test 016 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_s2sa_p8_intel Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1110,14 +1111,14 @@ Checking test 017 cpld_s2sa_p8_intel 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 = 354.031878 -The maximum resident set size (KB) = 2967928 +The total amount of wall time = 348.368067 +The maximum resident set size (KB) = 2967884 Test 017 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_noaero_p8_intel Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1181,14 +1182,14 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 277.458046 -The maximum resident set size (KB) = 1589452 +The total amount of wall time = 274.274643 +The maximum resident set size (KB) = 1586468 Test 018 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_nowave_noaero_p8_intel Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1250,14 +1251,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel 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 = 279.010749 -The maximum resident set size (KB) = 1635252 +The total amount of wall time = 280.304986 +The maximum resident set size (KB) = 1638168 Test 019 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1319,14 +1320,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel 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 = 276.360071 -The maximum resident set size (KB) = 1632648 +The total amount of wall time = 274.602689 +The maximum resident set size (KB) = 1631304 Test 020 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1376,14 +1377,14 @@ Checking test 021 cpld_control_c48_intel 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 = 410.458973 -The maximum resident set size (KB) = 2648468 +The total amount of wall time = 406.995202 +The maximum resident set size (KB) = 2652852 Test 021 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1448,14 +1449,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 358.813314 -The maximum resident set size (KB) = 3009744 +The total amount of wall time = 356.723515 +The maximum resident set size (KB) = 3007744 Test 022 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1519,14 +1520,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 921.953871 -The maximum resident set size (KB) = 1605796 +The total amount of wall time = 945.265745 +The maximum resident set size (KB) = 1597352 Test 023 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1578,14 +1579,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 472.090861 -The maximum resident set size (KB) = 899508 +The total amount of wall time = 457.259131 +The maximum resident set size (KB) = 899448 Test 024 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1649,14 +1650,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1077.520946 -The maximum resident set size (KB) = 1570472 +The total amount of wall time = 1070.053788 +The maximum resident set size (KB) = 1573160 Test 025 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1708,14 +1709,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1491.249713 -The maximum resident set size (KB) = 1608728 +The total amount of wall time = 1483.886447 +The maximum resident set size (KB) = 1616296 Test 026 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1726,14 +1727,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.021765 -The maximum resident set size (KB) = 576464 +The total amount of wall time = 212.739480 +The maximum resident set size (KB) = 577216 Test 027 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1760,14 +1761,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.572601 -The maximum resident set size (KB) = 524528 +The total amount of wall time = 130.493146 +The maximum resident set size (KB) = 523340 Test 028 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1782,14 +1783,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.652585 -The maximum resident set size (KB) = 529704 +The total amount of wall time = 136.971074 +The maximum resident set size (KB) = 527072 Test 029 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,14 +1801,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.477481 -The maximum resident set size (KB) = 522980 +The total amount of wall time = 132.160319 +The maximum resident set size (KB) = 525568 Test 030 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1818,14 +1819,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.954011 -The maximum resident set size (KB) = 523776 +The total amount of wall time = 135.306465 +The maximum resident set size (KB) = 523124 Test 031 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1864,14 +1865,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.395703 -The maximum resident set size (KB) = 716092 +The total amount of wall time = 333.559212 +The maximum resident set size (KB) = 715244 Test 032 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1882,14 +1883,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.531235 -The maximum resident set size (KB) = 641444 +The total amount of wall time = 531.142068 +The maximum resident set size (KB) = 638316 Test 033 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1900,14 +1901,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 584.739315 -The maximum resident set size (KB) = 954420 +The total amount of wall time = 580.192842 +The maximum resident set size (KB) = 956628 Test 034 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1950,14 +1951,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 518.089367 -The maximum resident set size (KB) = 1093888 +The total amount of wall time = 513.190043 +The maximum resident set size (KB) = 1093284 Test 035 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1968,28 +1969,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.333050 -The maximum resident set size (KB) = 528620 +The total amount of wall time = 88.059489 +The maximum resident set size (KB) = 532384 Test 036 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.544529 -The maximum resident set size (KB) = 501908 +The total amount of wall time = 49.076882 +The maximum resident set size (KB) = 330860 Test 037 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2000,14 +2001,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.560500 -The maximum resident set size (KB) = 527448 +The total amount of wall time = 83.033124 +The maximum resident set size (KB) = 532064 Test 038 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2023,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.720522 -The maximum resident set size (KB) = 521864 +The total amount of wall time = 132.536992 +The maximum resident set size (KB) = 522024 Test 039 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2044,14 +2045,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.292771 -The maximum resident set size (KB) = 521040 +The total amount of wall time = 133.281043 +The maximum resident set size (KB) = 524716 Test 040 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2098,14 +2099,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.509338 -The maximum resident set size (KB) = 1506336 +The total amount of wall time = 164.709643 +The maximum resident set size (KB) = 1506200 Test 041 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2152,14 +2153,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 168.113964 -The maximum resident set size (KB) = 1501464 +The total amount of wall time = 161.959802 +The maximum resident set size (KB) = 1496736 Test 042 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2198,14 +2199,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 90.954477 -The maximum resident set size (KB) = 689956 +The total amount of wall time = 89.329328 +The maximum resident set size (KB) = 695132 Test 043 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2252,14 +2253,14 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 167.482215 -The maximum resident set size (KB) = 1493164 +The total amount of wall time = 166.190133 +The maximum resident set size (KB) = 1489644 Test 044 control_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2298,14 +2299,14 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 88.259952 -The maximum resident set size (KB) = 692688 +The total amount of wall time = 87.827060 +The maximum resident set size (KB) = 697692 Test 045 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2348,14 +2349,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 173.764975 -The maximum resident set size (KB) = 1499732 +The total amount of wall time = 168.582876 +The maximum resident set size (KB) = 1499680 Test 046 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2398,14 +2399,14 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 151.123204 -The maximum resident set size (KB) = 1592956 +The total amount of wall time = 143.196509 +The maximum resident set size (KB) = 1592128 Test 047 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2425,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 296.191318 -The maximum resident set size (KB) = 1509224 +The total amount of wall time = 294.485642 +The maximum resident set size (KB) = 1511100 Test 048 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2479,14 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 222.536285 -The maximum resident set size (KB) = 1554760 +The total amount of wall time = 220.833191 +The maximum resident set size (KB) = 1552416 Test 049 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2533,14 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.921166 -The maximum resident set size (KB) = 1504776 +The total amount of wall time = 170.471675 +The maximum resident set size (KB) = 1507612 Test 050 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2587,14 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.391724 -The maximum resident set size (KB) = 1515296 +The total amount of wall time = 199.283476 +The maximum resident set size (KB) = 1510912 Test 051 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2604,28 +2605,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.614675 -The maximum resident set size (KB) = 607356 +The total amount of wall time = 288.582760 +The maximum resident set size (KB) = 606580 Test 052 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_restart_intel Checking test 053 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.931943 -The maximum resident set size (KB) = 779668 +The total amount of wall time = 155.745832 +The maximum resident set size (KB) = 778412 Test 053 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2636,14 +2637,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 305.261860 -The maximum resident set size (KB) = 606192 +The total amount of wall time = 304.228303 +The maximum resident set size (KB) = 606120 Test 054 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2654,14 +2655,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 174.841366 -The maximum resident set size (KB) = 665760 +The total amount of wall time = 174.474582 +The maximum resident set size (KB) = 661500 Test 055 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2669,28 +2670,28 @@ Checking test 056 regional_noquilt_intel 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 = 281.185375 -The maximum resident set size (KB) = 1146052 +The total amount of wall time = 289.664966 +The maximum resident set size (KB) = 1143328 Test 056 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.655718 -The maximum resident set size (KB) = 609536 +The total amount of wall time = 288.424861 +The maximum resident set size (KB) = 606996 Test 057 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2701,14 +2702,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.828585 -The maximum resident set size (KB) = 606396 +The total amount of wall time = 286.973982 +The maximum resident set size (KB) = 606532 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2719,14 +2720,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 379.563765 -The maximum resident set size (KB) = 1578432 +The total amount of wall time = 379.950826 +The maximum resident set size (KB) = 1577728 Test 059 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2773,14 +2774,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.097626 -The maximum resident set size (KB) = 919328 +The total amount of wall time = 406.201296 +The maximum resident set size (KB) = 919068 Test 060 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2791,14 +2792,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.291600 -The maximum resident set size (KB) = 1093072 +The total amount of wall time = 237.505090 +The maximum resident set size (KB) = 1092060 Test 061 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2845,14 +2846,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.776399 -The maximum resident set size (KB) = 916020 +The total amount of wall time = 421.852131 +The maximum resident set size (KB) = 918852 Test 062 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2899,14 +2900,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.795938 -The maximum resident set size (KB) = 1005980 +The total amount of wall time = 368.891787 +The maximum resident set size (KB) = 1012080 Test 063 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2945,14 +2946,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.437299 -The maximum resident set size (KB) = 786056 +The total amount of wall time = 208.562685 +The maximum resident set size (KB) = 784396 Test 064 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2999,14 +3000,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.820077 -The maximum resident set size (KB) = 909880 +The total amount of wall time = 404.366350 +The maximum resident set size (KB) = 910340 Test 065 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3053,14 +3054,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.510278 -The maximum resident set size (KB) = 911160 +The total amount of wall time = 421.837315 +The maximum resident set size (KB) = 911400 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3099,14 +3100,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.690314 -The maximum resident set size (KB) = 787400 +The total amount of wall time = 303.213651 +The maximum resident set size (KB) = 783836 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3153,14 +3154,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.986896 -The maximum resident set size (KB) = 906948 +The total amount of wall time = 206.895673 +The maximum resident set size (KB) = 907236 Test 068 hrrr_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3207,14 +3208,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.535074 -The maximum resident set size (KB) = 904060 +The total amount of wall time = 212.040487 +The maximum resident set size (KB) = 906928 Test 069 hrrr_control_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3261,28 +3262,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.750587 -The maximum resident set size (KB) = 990224 +The total amount of wall time = 184.370333 +The maximum resident set size (KB) = 991688 Test 070 hrrr_control_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.052025 -The maximum resident set size (KB) = 743648 +The total amount of wall time = 109.149755 +The maximum resident set size (KB) = 741740 Test 071 hrrr_control_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3329,14 +3330,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 398.345396 -The maximum resident set size (KB) = 904260 +The total amount of wall time = 395.981669 +The maximum resident set size (KB) = 911496 Test 072 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3351,14 +3352,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 486.134694 -The maximum resident set size (KB) = 1873476 +The total amount of wall time = 487.387565 +The maximum resident set size (KB) = 1876984 Test 073 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3373,14 +3374,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 473.096316 -The maximum resident set size (KB) = 1860224 +The total amount of wall time = 470.299762 +The maximum resident set size (KB) = 1860748 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3391,14 +3392,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 338.625597 -The maximum resident set size (KB) = 599792 +The total amount of wall time = 336.332951 +The maximum resident set size (KB) = 600148 Test 075 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3409,14 +3410,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 333.347020 -The maximum resident set size (KB) = 596804 +The total amount of wall time = 337.610265 +The maximum resident set size (KB) = 595504 Test 076 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3427,26 +3428,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.973376 -The maximum resident set size (KB) = 561188 +The total amount of wall time = 183.522390 +The maximum resident set size (KB) = 562056 Test 077 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.104348 -The maximum resident set size (KB) = 270776 +The total amount of wall time = 119.125073 +The maximum resident set size (KB) = 272952 Test 078 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3493,14 +3494,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.409869 -The maximum resident set size (KB) = 1515620 +The total amount of wall time = 158.897364 +The maximum resident set size (KB) = 1515500 Test 079 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3511,14 +3512,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 277.043327 -The maximum resident set size (KB) = 610612 +The total amount of wall time = 278.367088 +The maximum resident set size (KB) = 610868 Test 080 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3545,364 +3546,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 162.114249 -The maximum resident set size (KB) = 685464 +The total amount of wall time = 159.307595 +The maximum resident set size (KB) = 684092 Test 081 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.547046 -The maximum resident set size (KB) = 689108 +The total amount of wall time = 157.225124 +The maximum resident set size (KB) = 688684 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.546177 -The maximum resident set size (KB) = 689176 +The total amount of wall time = 178.523581 +The maximum resident set size (KB) = 687552 Test 083 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.247890 -The maximum resident set size (KB) = 691712 +The total amount of wall time = 161.454490 +The maximum resident set size (KB) = 692740 Test 084 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.038093 -The maximum resident set size (KB) = 732412 +The total amount of wall time = 251.645733 +The maximum resident set size (KB) = 730760 Test 085 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.750727 -The maximum resident set size (KB) = 733372 +The total amount of wall time = 247.237055 +The maximum resident set size (KB) = 731308 Test 086 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.603610 -The maximum resident set size (KB) = 702188 +The total amount of wall time = 162.745336 +The maximum resident set size (KB) = 702880 Test 087 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.230089 -The maximum resident set size (KB) = 745016 +The total amount of wall time = 163.175829 +The maximum resident set size (KB) = 745480 Test 088 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.464786 -The maximum resident set size (KB) = 1519068 +The total amount of wall time = 166.738007 +The maximum resident set size (KB) = 1519212 Test 089 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1051.791511 -The maximum resident set size (KB) = 631620 +The total amount of wall time = 1050.898220 +The maximum resident set size (KB) = 631156 Test 090 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.612679 -The maximum resident set size (KB) = 1075364 +The total amount of wall time = 298.930615 +The maximum resident set size (KB) = 1073204 Test 091 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.192352 -The maximum resident set size (KB) = 1071232 +The total amount of wall time = 291.395457 +The maximum resident set size (KB) = 1066920 Test 092 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.927442 -The maximum resident set size (KB) = 1074508 +The total amount of wall time = 298.771736 +The maximum resident set size (KB) = 1071292 Test 093 hrrr_gf_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.354572 -The maximum resident set size (KB) = 1073164 +The total amount of wall time = 301.330531 +The maximum resident set size (KB) = 1070692 Test 094 hrrr_c3_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.173545 -The maximum resident set size (KB) = 1074464 +The total amount of wall time = 299.274538 +The maximum resident set size (KB) = 1077480 Test 095 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.811192 -The maximum resident set size (KB) = 1160344 +The total amount of wall time = 309.657542 +The maximum resident set size (KB) = 1160732 Test 096 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.553078 -The maximum resident set size (KB) = 1076580 +The total amount of wall time = 305.079269 +The maximum resident set size (KB) = 1076312 Test 097 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.915380 -The maximum resident set size (KB) = 1072040 +The total amount of wall time = 305.845273 +The maximum resident set size (KB) = 1074432 Test 098 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.928247 -The maximum resident set size (KB) = 1078588 +The total amount of wall time = 301.152046 +The maximum resident set size (KB) = 1078748 Test 099 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.765109 -The maximum resident set size (KB) = 1075364 +The total amount of wall time = 300.216265 +The maximum resident set size (KB) = 1073368 Test 100 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.968723 -The maximum resident set size (KB) = 1074828 +The total amount of wall time = 293.228902 +The maximum resident set size (KB) = 1073772 Test 101 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.678890 -The maximum resident set size (KB) = 1075368 +The total amount of wall time = 299.705212 +The maximum resident set size (KB) = 1072312 Test 102 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 490.897199 -The maximum resident set size (KB) = 1068384 +The total amount of wall time = 488.357145 +The maximum resident set size (KB) = 1075784 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.049035 -The maximum resident set size (KB) = 1067548 +The total amount of wall time = 293.997889 +The maximum resident set size (KB) = 1068416 Test 104 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.623436 -The maximum resident set size (KB) = 1077500 +The total amount of wall time = 349.048860 +The maximum resident set size (KB) = 1074340 Test 105 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.835251 -The maximum resident set size (KB) = 1077172 +The total amount of wall time = 299.340182 +The maximum resident set size (KB) = 1077224 Test 106 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3943,26 +3944,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 525.827395 -The maximum resident set size (KB) = 1081004 +The total amount of wall time = 520.242913 +The maximum resident set size (KB) = 1080840 Test 107 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 300.413904 -The maximum resident set size (KB) = 300452 +The total amount of wall time = 299.991489 +The maximum resident set size (KB) = 300996 Test 108 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3973,14 +3974,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 234.690606 -The maximum resident set size (KB) = 950776 +The total amount of wall time = 227.332747 +The maximum resident set size (KB) = 956524 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4027,14 +4028,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 338.150578 -The maximum resident set size (KB) = 789232 +The total amount of wall time = 334.676524 +The maximum resident set size (KB) = 791828 Test 110 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4081,14 +4082,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 179.303988 -The maximum resident set size (KB) = 785908 +The total amount of wall time = 176.551392 +The maximum resident set size (KB) = 787428 Test 111 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4135,14 +4136,14 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.690667 -The maximum resident set size (KB) = 854980 +The total amount of wall time = 305.771117 +The maximum resident set size (KB) = 852816 Test 112 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4189,14 +4190,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.238756 -The maximum resident set size (KB) = 837540 +The total amount of wall time = 158.676030 +The maximum resident set size (KB) = 838136 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4243,14 +4244,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.824332 -The maximum resident set size (KB) = 787348 +The total amount of wall time = 183.629075 +The maximum resident set size (KB) = 788732 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4289,28 +4290,28 @@ Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.371692 -The maximum resident set size (KB) = 688020 +The total amount of wall time = 255.912089 +The maximum resident set size (KB) = 688512 Test 115 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_restart_dyn32_phy32_intel Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 95.220404 -The maximum resident set size (KB) = 666576 +The total amount of wall time = 92.752287 +The maximum resident set size (KB) = 666736 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_control_intel Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4326,40 +4327,40 @@ Checking test 117 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 125.783127 -The maximum resident set size (KB) = 1001856 +The total amount of wall time = 115.843466 +The maximum resident set size (KB) = 1004228 Test 117 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_2threads_intel Checking test 118 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 59.864257 -The maximum resident set size (KB) = 1007384 +The total amount of wall time = 56.767403 +The maximum resident set size (KB) = 1006864 Test 118 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_restart_mismatch_intel Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.668382 -The maximum resident set size (KB) = 881776 +The total amount of wall time = 68.721775 +The maximum resident set size (KB) = 881900 Test 119 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn64_phy32_intel Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4406,42 +4407,42 @@ Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 231.815075 -The maximum resident set size (KB) = 812964 +The total amount of wall time = 228.930174 +The maximum resident set size (KB) = 810388 Test 120 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_debug_dyn32_phy32_intel Checking test 121 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.656256 -The maximum resident set size (KB) = 948404 +The total amount of wall time = 291.269752 +The maximum resident set size (KB) = 955036 Test 121 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_debug_dyn32_phy32_intel Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.510551 -The maximum resident set size (KB) = 951548 +The total amount of wall time = 284.224786 +The maximum resident set size (KB) = 949900 Test 122 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_intel Checking test 123 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4455,14 +4456,14 @@ Checking test 123 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 882.572643 -The maximum resident set size (KB) = 1032616 +The total amount of wall time = 881.116654 +The maximum resident set size (KB) = 1034364 Test 123 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_qr_intel Checking test 124 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4476,81 +4477,81 @@ Checking test 124 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 889.407704 -The maximum resident set size (KB) = 706188 +The total amount of wall time = 888.680290 +The maximum resident set size (KB) = 708944 Test 124 conus13km_debug_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_2threads_intel Checking test 125 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 511.235548 -The maximum resident set size (KB) = 1035192 +The total amount of wall time = 506.045127 +The maximum resident set size (KB) = 1036624 Test 125 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_radar_tten_debug_intel Checking test 126 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 883.743895 -The maximum resident set size (KB) = 1098756 +The total amount of wall time = 889.250940 +The maximum resident set size (KB) = 1098100 Test 126 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.189433 -The maximum resident set size (KB) = 981764 +The total amount of wall time = 296.226676 +The maximum resident set size (KB) = 980808 Test 127 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 345.716656 -The maximum resident set size (KB) = 620756 +The total amount of wall time = 339.341882 +The maximum resident set size (KB) = 617048 Test 128 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 318.985423 -The maximum resident set size (KB) = 974648 +The total amount of wall time = 312.115118 +The maximum resident set size (KB) = 970992 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4559,14 +4560,14 @@ Checking test 130 hafs_regional_atm_ocn_intel 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 = 419.553824 -The maximum resident set size (KB) = 665860 +The total amount of wall time = 418.317307 +The maximum resident set size (KB) = 664064 Test 130 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4575,14 +4576,14 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 751.513807 -The maximum resident set size (KB) = 688704 +The total amount of wall time = 736.308195 +The maximum resident set size (KB) = 691680 Test 131 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4593,14 +4594,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 958.176150 -The maximum resident set size (KB) = 708204 +The total amount of wall time = 928.951865 +The maximum resident set size (KB) = 704136 Test 132 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4623,14 @@ Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 320.821287 -The maximum resident set size (KB) = 390580 +The total amount of wall time = 318.175712 +The maximum resident set size (KB) = 390872 Test 133 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_telescopic_2nests_atm_intel Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4638,14 +4639,14 @@ Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 410.683457 -The maximum resident set size (KB) = 407604 +The total amount of wall time = 404.594728 +The maximum resident set size (KB) = 405600 Test 134 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_1nest_atm_intel Checking test 135 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4692,14 +4693,14 @@ Checking test 135 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 172.872031 -The maximum resident set size (KB) = 284960 +The total amount of wall time = 170.923854 +The maximum resident set size (KB) = 285956 Test 135 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_multiple_4nests_atm_intel Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4781,14 +4782,14 @@ Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 492.603473 -The maximum resident set size (KB) = 373692 +The total amount of wall time = 486.827132 +The maximum resident set size (KB) = 372212 Test 136 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_specified_moving_1nest_atm_intel Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4797,14 +4798,14 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 223.302563 -The maximum resident set size (KB) = 415864 +The total amount of wall time = 225.810505 +The maximum resident set size (KB) = 415816 Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_intel Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4826,14 +4827,14 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 208.338511 -The maximum resident set size (KB) = 414764 +The total amount of wall time = 210.271454 +The maximum resident set size (KB) = 412356 Test 138 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4842,96 +4843,96 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 270.573345 -The maximum resident set size (KB) = 487500 +The total amount of wall time = 263.960036 +The maximum resident set size (KB) = 497732 Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_storm_following_1nest_atm_intel Checking test 140 hafs_global_storm_following_1nest_atm_intel 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 = 92.088624 -The maximum resident set size (KB) = 320404 +The total amount of wall time = 92.326270 +The maximum resident set size (KB) = 311016 Test 140 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/gnv1_nested_intel Checking test 141 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 242.998540 -The maximum resident set size (KB) = 677384 - -Test 141 gnv1_nested_intel PASS Tries: 2 + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK + +The total amount of wall time = 240.946793 +The maximum resident set size (KB) = 673928 + +Test 141 gnv1_nested_intel FAIL Tries: 2 baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 824.459872 -The maximum resident set size (KB) = 502788 +The total amount of wall time = 820.727904 +The maximum resident set size (KB) = 500736 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4942,58 +4943,93 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 517.508159 -The maximum resident set size (KB) = 530984 +The total amount of wall time = 523.263300 +The maximum resident set size (KB) = 535496 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + +The total amount of wall time = 523.704740 +The maximum resident set size (KB) = 709988 + +Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + +The total amount of wall time = 386.995791 +The maximum resident set size (KB) = 729736 + +Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS + + baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_docn_intel -Checking test 144 hafs_regional_docn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_docn_intel +Checking test 146 hafs_regional_docn_intel 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 -The total amount of wall time = 389.191727 -The maximum resident set size (KB) = 660232 +The total amount of wall time = 388.195384 +The maximum resident set size (KB) = 652408 -Test 144 hafs_regional_docn_intel PASS +Test 146 hafs_regional_docn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_docn_oisst_intel -Checking test 145 hafs_regional_docn_oisst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_docn_oisst_intel +Checking test 147 hafs_regional_docn_oisst_intel 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 -The total amount of wall time = 394.441681 -The maximum resident set size (KB) = 636852 +The total amount of wall time = 389.395813 +The maximum resident set size (KB) = 640260 -Test 145 hafs_regional_docn_oisst_intel PASS +Test 147 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/hafs_regional_datm_cdeps_intel -Checking test 146 hafs_regional_datm_cdeps_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_datm_cdeps_intel +Checking test 148 hafs_regional_datm_cdeps_intel 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 = 948.811592 -The maximum resident set size (KB) = 880640 +The total amount of wall time = 946.433480 +The maximum resident set size (KB) = 881108 -Test 146 hafs_regional_datm_cdeps_intel PASS +Test 148 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_atmlnd_sbs_intel -Checking test 147 control_p8_atmlnd_sbs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_atmlnd_sbs_intel +Checking test 149 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5081,15 +5117,15 @@ Checking test 147 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 275.706709 -The maximum resident set size (KB) = 1550112 +The total amount of wall time = 275.283497 +The maximum resident set size (KB) = 1547052 -Test 147 control_p8_atmlnd_sbs_intel PASS +Test 149 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_p8_atmlnd_intel -Checking test 148 control_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_atmlnd_intel +Checking test 150 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5177,15 +5213,15 @@ Checking test 148 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 282.969272 -The maximum resident set size (KB) = 1539696 +The total amount of wall time = 275.056041 +The maximum resident set size (KB) = 1551752 -Test 148 control_p8_atmlnd_intel PASS +Test 150 control_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/control_restart_p8_atmlnd_intel -Checking test 149 control_restart_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_p8_atmlnd_intel +Checking test 151 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5205,15 +5241,15 @@ Checking test 149 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 154.656555 -The maximum resident set size (KB) = 742028 +The total amount of wall time = 151.401036 +The maximum resident set size (KB) = 744728 -Test 149 control_restart_p8_atmlnd_intel PASS +Test 151 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/atmaero_control_p8_intel -Checking test 150 atmaero_control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_intel +Checking test 152 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5256,15 +5292,15 @@ Checking test 150 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 240.650404 -The maximum resident set size (KB) = 2853980 +The total amount of wall time = 237.752937 +The maximum resident set size (KB) = 2849540 -Test 150 atmaero_control_p8_intel PASS +Test 152 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/atmaero_control_p8_rad_intel -Checking test 151 atmaero_control_p8_rad_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_rad_intel +Checking test 153 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5307,15 +5343,15 @@ Checking test 151 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 278.098925 -The maximum resident set size (KB) = 2912204 +The total amount of wall time = 276.436664 +The maximum resident set size (KB) = 2911808 -Test 151 atmaero_control_p8_rad_intel PASS +Test 153 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/atmaero_control_p8_rad_micro_intel -Checking test 152 atmaero_control_p8_rad_micro_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_rad_micro_intel +Checking test 154 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5358,15 +5394,15 @@ Checking test 152 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.396822 -The maximum resident set size (KB) = 2927128 +The total amount of wall time = 291.421303 +The maximum resident set size (KB) = 2927188 -Test 152 atmaero_control_p8_rad_micro_intel PASS +Test 154 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_79416/regional_atmaq_debug_intel -Checking test 153 regional_atmaq_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_atmaq_debug_intel +Checking test 155 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5379,12 +5415,91 @@ Checking test 153 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1313.878240 -The maximum resident set size (KB) = 4435852 +The total amount of wall time = 1318.771189 +The maximum resident set size (KB) = 4442336 + +Test 155 regional_atmaq_debug_intel PASS + +FAILED TESTS: +141 gnv1_nested_intel failed in check_result +gnv1_nested_intel 141 failed in run_test + +REGRESSION TEST FAILED +Mon Feb 5 17:23:32 UTC 2024 +Elapsed time: 01h:16m:11s. Have a nice day! +Mon Feb 5 17:33:53 UTC 2024 +Start Regression test + +Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) ++eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafsw_intel elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178233/gnv1_nested_intel +Checking test 001 gnv1_nested_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 240.528010 +The maximum resident set size (KB) = 677600 -Test 153 regional_atmaq_debug_intel PASS +Test 001 gnv1_nested_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 1 15:09:09 UTC 2024 -Elapsed time: 01h:18m:07s. Have a nice day! +Mon Feb 5 17:50:03 UTC 2024 +Elapsed time: 00h:16m:11s. Have a nice day! diff --git a/tests/parm/MOM6_data_table_hafs b/tests/parm/MOM6_data_table_hafs new file mode 100644 index 0000000000..89905df3a7 --- /dev/null +++ b/tests/parm/MOM6_data_table_hafs @@ -0,0 +1,2 @@ +"OCN", "runoff", "liq_runoff", "./INPUT/ocean_runoff_monthly.nc", "bilinear", 1.0 +"OCN", "SSS_restore", "s_an", "./INPUT/ocean_salt_restore.nc", "bilinear", 1.0 diff --git a/tests/parm/MOM_input_hafs b/tests/parm/MOM_input_hafs new file mode 100644 index 0000000000..1eddf0054f --- /dev/null +++ b/tests/parm/MOM_input_hafs @@ -0,0 +1,976 @@ + +! Where appropriate, parameters use usually given in MKS units. + +! This particular file is for the example in ice_ocean_SIS2/Baltic_OM4_025. + +! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. +! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file +! which is generated by the model at run-time. + + +! === module MOM_domains === +REENTRANT_X = False ! [Boolean] default = True + ! If true, the domain is zonally reentrant. +!SYMMETRIC_MEMORY_ = True +!STATIC_MEMORY_ = False + +NIGLOBAL = 1135 ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = 633 ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +!NIHALO = 4 ! default = 4 + ! The number of halo points on each side in the x-direction. With + ! STATIC_MEMORY_ this is set as NIHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NIHALO_ in MOM_memory.h (if defined) or 2. +!NJHALO = 4 ! default = 4 + ! The number of halo points on each side in the y-direction. With + ! STATIC_MEMORY_ this is set as NJHALO_ in MOM_memory.h at compile time; without + ! STATIC_MEMORY_ the default is NJHALO_ in MOM_memory.h (if defined) or 2. +! LAYOUT = 4, 4 ! + ! The processor layout that was actually used. +! IO_LAYOUT = 1, 1 ! default = 1 + ! The processor layout to be used, or 0,0 to automatically set the io_layout to + ! be the same as the layout. + +! === module MOM === +DIABATIC_FIRST = False ! [Boolean] default = False + ! If true, apply diabatic and thermodynamic processes, including buoyancy + ! forcing and mass gain or loss, before stepping the dynamics forward. +USE_REGRIDDING = True ! [Boolean] default = False + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. +THICKNESSDIFFUSE = True ! [Boolean] default = False + ! If true, interface heights are diffused with a coefficient of KHTH. +THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. +DT = 360.0 ! [s] + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) +DT_THERM = 360.0 ! [s] default = 3600.0 + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = True ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. +USE_PSURF_IN_EOS = False ! [Boolean] default = False + ! If true, always include the surface pressure contributions in equation of + ! state calculations. +FRAZIL = True ! [Boolean] default = False + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if + ! ENABLE_THERMODYNAMICS is true. +DO_GEOTHERMAL = True ! [Boolean] default = False + ! If true, apply geothermal heating. +BOUND_SALINITY = True ! [Boolean] default = False + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) +MIN_SALINITY = 0.01 ! [PPT] default = 0.01 + ! The minimum value of salinity when BOUND_SALINITY=True. The default is 0.01 + ! for backward compatibility but ideally should be 0. +C_P = 3925.0 !3992.0 ! [J kg-1 K-1] default = 3991.86795711963 + ! The heat capacity of sea water, approximated as a constant. This is only used + ! if ENABLE_THERMODYNAMICS is true. The default value is from the TEOS-10 + ! definition of conservative temperature. +CHECK_BAD_SURFACE_VALS = True ! [Boolean] default = False + ! If true, check the surface state for ridiculous values. +BAD_VAL_SSH_MAX = 50.0 ! [m] default = 20.0 + ! The value of SSH above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SSS_MAX = 75.0 ! [PPT] default = 45.0 + ! The value of SSS above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MAX = 55.0 ! [deg C] default = 45.0 + ! The value of SST above which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +BAD_VAL_SST_MIN = -3.0 ! [deg C] default = -2.1 + ! The value of SST below which a bad value message is triggered, if + ! CHECK_BAD_SURFACE_VALS is true. +DEFAULT_2018_ANSWERS = False !True ! [Boolean] default = True + ! This sets the default value for the various _2018_ANSWERS parameters. +WRITE_GEOM = 0 ! default = 1 + ! If =0, never write the geometry and vertical grid files. If =1, write the + ! geometry and vertical grid files only for a new simulation. If =2, always + ! write the geometry and vertical grid files. Other values are invalid. +SAVE_INITIAL_CONDS = True ! [Boolean] default = False + ! If true, write the initial conditions to a file given by IC_OUTPUT_FILE. +IC_OUTPUT_FILE = "MOM_IC" ! default = "MOM_IC" + ! The file into which to write the initial conditions. + +! === module MOM_hor_index === +! Sets the horizontal array index types. + +! === module MOM_fixed_initialization === +INPUTDIR = "INPUT" ! default = "." + ! The directory in which input files are found. + +! === module MOM_grid_init === +GRID_CONFIG = "mosaic" ! + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: + ! mosaic - read the grid from a mosaic (supergrid) + ! file set by GRID_FILE. + ! cartesian - use a (flat) Cartesian grid. + ! spherical - use a simple spherical grid. + ! mercator - use a Mercator spherical grid. +GRID_FILE = "ocean_hgrid.nc" ! + ! Name of the file from which to read horizontal grid data. +TOPO_CONFIG = "file" ! + ! This specifies how bathymetry is specified: + ! file - read bathymetric information from the file + ! specified by (TOPO_FILE). + ! flat - flat bottom set to MAXIMUM_DEPTH. + ! bowl - an analytically specified bowl-shaped basin + ! ranging between MAXIMUM_DEPTH and MINIMUM_DEPTH. + ! spoon - a similar shape to 'bowl', but with an vertical + ! wall at the southern face. + ! halfpipe - a zonally uniform channel with a half-sine + ! profile in the meridional direction. + ! benchmark - use the benchmark test case topography. + ! Neverland - use the Neverland test case topography. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a slope and channel configuration for the + ! ISOMIP test case. + ! DOME2D - use a shelf and slope configuration for the + ! DOME2D gravity current/overflow test case. + ! Kelvin - flat but with rotated land mask. + ! seamount - Gaussian bump for spontaneous motion test case. + ! dumbbell - Sloshing channel with reservoirs on both ends. + ! shelfwave - exponential slope for shelfwave test case. + ! Phillips - ACC-like idealized topography used in the Phillips config. + ! dense - Denmark Strait-like dense water formation and overflow. + ! USER - call a user modified routine. +TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" + ! The file from which the bathymetry is read. +MAXIMUM_DEPTH = 6500.0 ! [m] + ! The maximum depth of the ocean. +MINIMUM_DEPTH = 5.0 !9.5 ! [m] default = 0.0 + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. + +! === module MOM_open_boundary === +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. +! khs_testMASKING_DEPTH = 1.0 ! [m] default = -9999.0 +MASKING_DEPTH = 5.0 ! [m] default = -9999.0 + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. +CHANNEL_CONFIG = "none" ! default = "none" + ! A parameter that determines which set of channels are + ! restricted to specific widths. Options are: + ! none - All channels have the grid width. + ! global_1deg - Sets 16 specific channels appropriate + ! for a 1-degree model, as used in CM2G. + ! list - Read the channel locations and widths from a + ! text file, like MOM_channel_list in the MOM_SIS + ! test case. + ! file - Read open face widths everywhere from a + ! NetCDF file on the model grid. +!CHANNEL_LIST_FILE = "MOM_channels_global_025" ! default = "MOM_channel_list" + ! The file from which the list of narrowed channels is read. +OBC_NUMBER_OF_SEGMENTS = 4 ! default = 0 + ! The number of open boundary segments. +OBC_FREESLIP_VORTICITY = True ! [Boolean] default = True + ! If true, sets the normal gradient of tangential velocity to zero in the + ! relative vorticity on open boundaries. This cannot be true if another + ! OBC_XXX_VORTICITY option is True. +OBC_COMPUTED_VORTICITY = False ! [Boolean] default = False + ! If true, uses the external values of tangential velocity in the relative + ! vorticity on open boundaries. This cannot be true if another OBC_XXX_VORTICITY + ! option is True. +OBC_ZERO_BIHARMONIC = False ! [Boolean] default = False + ! If true, zeros the Laplacian of flow on open boundaries in the biharmonic + ! viscosity term. +OBC_FREESLIP_STRAIN = False ! [Boolean] default = True +OBC_COMPUTED_STRAIN = True ! [Boolean] default = False +OBC_SEGMENT_001 = "J=N,I=N:0,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! north +OBC_SEGMENT_002 = "J=0,I=0:N,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! south +OBC_SEGMENT_003 = "I=N,J=0:N,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! east +OBC_SEGMENT_004 = "I=0,J=N:0,FLATHER,ORLANSKI,NUDGED,ORLANSKI_TAN,NUDGED_TAN" ! west + ! Documentation needs to be dynamic????? +OBC_SEGMENT_001_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. + ! Documentation needs to be dynamic????? +OBC_SEGMENT_002_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. +OBC_SEGMENT_003_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 !3, 3600.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. + ! Documentation needs to be dynamic????? +OBC_SEGMENT_004_VELOCITY_NUDGING_TIMESCALES = 3, 360.0 !3, 360.0 !0.3, 360.0 !3, 3600.0 !0.3, 360.0 !3, 3600.0 ! [days] default = 0.0 + ! Timescales in days for nudging along a segment, for inflow, then outflow. + ! Setting both to zero should behave like SIMPLE obcs for the baroclinic + ! velocities. + ! Documentation needs to be dynamic????? +BRUSHCUTTER_MODE = True ! [Boolean] default = False + ! If true, read external OBC data on the supergrid. +OBC_SEGMENT_001_DATA = "U=file:ocean_uv_obc_north.nc(u),V=file:ocean_uv_obc_north.nc(v),SSH=file:ocean_ssh_obc_north.nc(ssh),TEMP=file:ocean_ts_obc_north.nc(temp),SALT=file:ocean_ts_obc_north.nc(salt)" ! +OBC_SEGMENT_002_DATA = "U=file:ocean_uv_obc_south.nc(u),V=file:ocean_uv_obc_south.nc(v),SSH=file:ocean_ssh_obc_south.nc(ssh),TEMP=file:ocean_ts_obc_south.nc(temp),SALT=file:ocean_ts_obc_south.nc(salt)" ! +OBC_SEGMENT_003_DATA = "U=file:ocean_uv_obc_east.nc(u),V=file:ocean_uv_obc_east.nc(v),SSH=file:ocean_ssh_obc_east.nc(ssh),TEMP=file:ocean_ts_obc_east.nc(temp),SALT=file:ocean_ts_obc_east.nc(salt)" ! +OBC_SEGMENT_004_DATA = "U=file:ocean_uv_obc_west.nc(u),V=file:ocean_uv_obc_west.nc(v),SSH=file:ocean_ssh_obc_west.nc(ssh),TEMP=file:ocean_ts_obc_west.nc(temp),SALT=file:ocean_ts_obc_west.nc(salt)" ! +OBC_TRACER_RESERVOIR_LENGTH_SCALE_OUT = 3000.0 !0.0 !3000.0 ! [m] default = 0.0 + ! An effective length scale for restoring the tracer concentration at the + ! boundaries to externally imposed values when the flow is exiting the domain. +OBC_TRACER_RESERVOIR_LENGTH_SCALE_IN = 3.0E+04 !0.0 !3.0E+04 ! [m] default = 0.0 + ! An effective length scale for restoring the tracer concentration at the + ! boundaries to values from the interior when the flow is entering the domain. +RAMP_OBCS = False ! default = False +OBC_RAMP_TIMESCALE = 2.0 ! [days] default = 1.0 +OBC_RADIATION_MAX = 1.0 ! [nondim] default = 1.0 + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 55 ! [nondim] + ! The number of model layers. + +! === module MOM_tracer_registry === + +! === module MOM_EOS === +DTFREEZE_DP = -7.75E-08 ! [deg C Pa-1] default = 0.0 + ! When TFREEZE_FORM=LINEAR, this is the derivative of the freezing potential + ! temperature with pressure. + +! === module MOM_restart === +PARALLEL_RESTARTFILES = False ! [Boolean] default = False + ! If true, each processor writes its own restart file, otherwise a single + ! restart file is generated +RESTART_CHECKSUMS_REQUIRED = False + +! === module MOM_tracer_flow_control === +USE_IDEAL_AGE_TRACER = True ! [Boolean] default = False + ! If true, use the ideal_age_example tracer package. + +! === module ideal_age_example === + +! === module MOM_coord_initialization === +COORD_CONFIG = "gprime" !"file" ! default = "none" + ! This specifies how layers are to be defined: + ! ALE or none - used to avoid defining layers in ALE mode + ! file - read coordinate information from the file + ! specified by (COORD_FILE). + ! BFB - Custom coords for buoyancy-forced basin case + ! based on SST_S, T_BOT and DRHO_DT. + ! linear - linear based on interfaces not layers + ! layer_ref - linear based on layer densities + ! ts_ref - use reference temperature and salinity + ! ts_range - use range of temperature and salinity + ! (T_REF and S_REF) to determine surface density + ! and GINT calculate internal densities. + ! gprime - use reference density (RHO_0) for surface + ! density and GINT calculate internal densities. + ! ts_profile - use temperature and salinity profiles + ! (read from COORD_FILE) to set layer densities. + ! USER - call a user modified routine. +GINT = 0.0098 ! [m s-2] +!COORD_FILE = "layer_coord.nc" ! + ! The file from which the coordinate densities are read. +REMAP_UV_USING_OLD_ALG = True ! [Boolean] default = True + ! If true, uses the old remapping-via-a-delta-z method for remapping u and v. If + ! false, uses the new method that remaps between grids described by an old and + ! new thickness. +REGRIDDING_COORDINATE_MODE = "Z*" !"HYCOM1" ! default = "LAYER" + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf + ! SIGMA - terrain following coordinates + ! RHO - continuous isopycnal + ! HYCOM1 - HyCOM-like hybrid coordinate + ! SLIGHT - stretched coordinates above continuous isopycnal + ! ADAPTIVE - optimize for smooth neutral density surfaces +BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. +ALE_COORDINATE_CONFIG = "FILE:ocean_vgrid.nc,dz" !"HYBRID:hycom1_75_800m.nc,sigma2,FNC1:2,4000,4.5,.01" ! default = "UNIFORM" + ! Determines how to specify the coordinate resolution. Valid options are: + ! PARAM - use the vector-parameter ALE_RESOLUTION + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!ALE_RESOLUTION = 7*2.0, 2*2.01, 2.02, 2.03, 2.05, 2.08, 2.11, 2.15, 2.21, 2.2800000000000002, 2.37, 2.48, 2.61, 2.77, 2.95, 3.17, 3.4299999999999997, 3.74, 4.09, 4.49, 4.95, 5.48, 6.07, 6.74, 7.5, 8.34, 9.280000000000001, 10.33, 11.49, 12.77, 14.19, 15.74, 17.450000000000003, 19.31, 21.35, 23.56, 25.97, 28.580000000000002, 31.41, 34.47, 37.77, 41.32, 45.14, 49.25, 53.65, 58.370000000000005, 63.42, 68.81, 74.56, 80.68, 87.21000000000001, 94.14, 101.51, 109.33, 117.62, 126.4, 135.68, 145.5, 155.87, 166.81, 178.35, 190.51, 203.31, 216.78, 230.93, 245.8, 261.42, 277.83 ! [m] + ! The distribution of vertical resolution for the target + ! grid used for Eulerian-like coordinates. For example, + ! in z-coordinate mode, the parameter is a list of level + ! thicknesses (in m). In sigma-coordinate mode, the list + ! is of non-dimensional fractions of the water column. +!TARGET_DENSITIES = 1010.0, 1014.3034, 1017.8088, 1020.843, 1023.5566, 1025.813, 1027.0275, 1027.9114, 1028.6422, 1029.2795, 1029.852, 1030.3762, 1030.8626, 1031.3183, 1031.7486, 1032.1572, 1032.5471, 1032.9207, 1033.2798, 1033.6261, 1033.9608, 1034.2519, 1034.4817, 1034.6774, 1034.8508, 1035.0082, 1035.1533, 1035.2886, 1035.4159, 1035.5364, 1035.6511, 1035.7608, 1035.8661, 1035.9675, 1036.0645, 1036.1554, 1036.2411, 1036.3223, 1036.3998, 1036.4739, 1036.5451, 1036.6137, 1036.68, 1036.7441, 1036.8062, 1036.8526, 1036.8874, 1036.9164, 1036.9418, 1036.9647, 1036.9857, 1037.0052, 1037.0236, 1037.0409, 1037.0574, 1037.0738, 1037.0902, 1037.1066, 1037.123, 1037.1394, 1037.1558, 1037.1722, 1037.1887, 1037.206, 1037.2241, 1037.2435, 1037.2642, 1037.2866, 1037.3112, 1037.3389, 1037.3713, 1037.4118, 1037.475, 1037.6332, 1037.8104, 1038.0 ! [m] + ! HYBRID target densities for interfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [nondim] default = 0.0 + ! When interpolating potential density profiles we can add some artificial + ! compressibility solely to make homogeneous regions appear stratified. +MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.01" ! default = "NONE" + ! Determines how to specify the maximum interface depths. + ! Valid options are: + ! NONE - there are no maximum interface depths + ! PARAM - use the vector-parameter MAXIMUM_INTERFACE_DEPTHS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAXIMUM_INT_DEPTHS = 0.0, 5.0, 12.75, 23.25, 36.49, 52.480000000000004, 71.22, 92.71000000000001, 116.94000000000001, 143.92000000000002, 173.65, 206.13, 241.36, 279.33000000000004, 320.05000000000007, 363.5200000000001, 409.7400000000001, 458.7000000000001, 510.4100000000001, 564.8700000000001, 622.0800000000002, 682.0300000000002, 744.7300000000002, 810.1800000000003, 878.3800000000003, 949.3300000000004, 1023.0200000000004, 1099.4600000000005, 1178.6500000000005, 1260.5900000000006, 1345.2700000000007, 1432.7000000000007, 1522.8800000000008, 1615.8100000000009, 1711.490000000001, 1809.910000000001, 1911.080000000001, 2015.0000000000011, 2121.670000000001, 2231.080000000001, 2343.2400000000007, 2458.1500000000005, 2575.8100000000004, 2696.2200000000003, 2819.3700000000003, 2945.2700000000004, 3073.9200000000005, 3205.3200000000006, 3339.4600000000005, 3476.3500000000004, 3615.9900000000002, 3758.38, 3903.52, 4051.4, 4202.03, 4355.41, 4511.54, 4670.41, 4832.03, 4996.4, 5163.5199999999995, 5333.379999999999, 5505.989999999999, 5681.3499999999985, 5859.459999999998, 6040.319999999998, 6223.919999999998, 6410.269999999999, 6599.369999999999, 6791.219999999999, 6985.8099999999995, 7183.15, 7383.24, 7586.08, 7791.67, 8000.0 + ! The list of maximum depths for each interface. +MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" + ! Determines how to specify the maximum layer thicknesses. + ! Valid options are: + ! NONE - there are no maximum layer thicknesses + ! PARAM - use the vector-parameter MAX_LAYER_THICKNESS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAX_LAYER_THICKNESS = 400.0, 409.63, 410.32, 410.75, 411.07, 411.32, 411.52, 411.7, 411.86, 412.0, 412.13, 412.24, 412.35, 412.45, 412.54, 412.63, 412.71, 412.79, 412.86, 412.93, 413.0, 413.06, 413.12, 413.18, 413.24, 413.29, 413.34, 413.39, 413.44, 413.49, 413.54, 413.58, 413.62, 413.67, 413.71, 413.75, 413.78, 413.82, 413.86, 413.9, 413.93, 413.97, 414.0, 414.03, 414.06, 414.1, 414.13, 414.16, 414.19, 414.22, 414.24, 414.27, 414.3, 414.33, 414.35, 414.38, 414.41, 414.43, 414.46, 414.48, 414.51, 414.53, 414.55, 414.58, 414.6, 414.62, 414.65, 414.67, 414.69, 414.71, 414.73, 414.75, 414.77, 414.79, 414.83 ! [m] + ! The list of maximum thickness for each layer. +REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) + ! PLM (2nd-order accurate) + ! PPM_H4 (3rd-order accurate) + ! PPM_IH4 (3rd-order accurate) + ! PQM_IH4IH3 (4th-order accurate) + ! PQM_IH6IH5 (5th-order accurate) + +! === module MOM_grid === +! Parameters providing information about the lateral grid. + +! === module MOM_state_initialization === +TS_CONFIG = "file" ! + ! A string that determines how the initial tempertures and salinities are + ! specified for a new run: + ! file - read velocities from the file specified + ! by (TS_FILE). + ! fit - find the temperatures that are consistent with + ! the layer densities and salinity S_REF. + ! TS_profile - use temperature and salinity profiles + ! (read from TS_FILE) to set layer densities. + ! benchmark - use the benchmark test case T & S. + ! linear - linear in logical layer space. + ! DOME2D - 2D DOME initialization. + ! ISOMIP - ISOMIP initialization. + ! adjustment2d - 2d lock exchange T/S ICs. + ! sloshing - sloshing mode T/S ICs. + ! seamount - no motion test with seamount ICs. + ! dumbbell - sloshing channel ICs. + ! rossby_front - a mixed layer front in thermal wind balance. + ! SCM_CVMix_tests - used in the SCM CVMix tests. + ! USER - call a user modified routine. +TS_FILE = "ocean_ts_ic.nc" ! + ! The initial condition file for temperature. + +INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. + + +! === module MOM_initialize_layers_from_Z === +TEMP_SALT_Z_INIT_FILE = "ocean_ts_ic.nc" ! default = "temp_salt_z.nc" + ! The name of the z-space input file used to initialize temperatures (T) and + ! salinities (S). If T and S are not in the same file, TEMP_Z_INIT_FILE and + ! SALT_Z_INIT_FILE must be set. +!TEMP_Z_INIT_FILE = "" ! default = "" + ! The name of the z-space input file used to initialize temperatures, only. +!SALT_Z_INIT_FILE = "" ! default = "" + ! The name of the z-space input file used to initialize temperatures, only. +Z_INIT_FILE_PTEMP_VAR = "Temp" ! default = "ptemp" + ! The name of the potential temperature variable in TEMP_Z_INIT_FILE. +Z_INIT_FILE_SALT_VAR = "Salt" ! default = "salt" + ! The name of the salinity variable in SALT_Z_INIT_FILE. +Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False + ! If True, then remap straight to model coordinate from file. +Z_INIT_REMAP_OLD_ALG = True ! [Boolean] default = True + ! If false, uses the preferred remapping algorithm for initialization. If true, + ! use an older, less robust algorithm for remapping. +Z_INIT_REMAP_GENERAL = True ! [Boolean] default = False + ! If false, only initializes to z* coordinates. + ! If true, allows initialization directly to general coordinates. +Z_INIT_REMAP_FULL_COLUMN = True ! [Boolean] default = True + ! If false, only reconstructs profiles for valid data points. + ! If true, inserts vanished layers below the valid data. +DEPRESS_INITIAL_SURFACE = True ! [Boolean] default = False + ! If true, depress the initial surface to avoid huge tsunamis when a large + ! surface pressure is applied. +SURFACE_HEIGHT_IC_FILE = "ocean_ssh_ic.nc" ! + ! The initial condition file for the surface height. +SURFACE_HEIGHT_IC_VAR = "ave_ssh" ! default = "SSH" + ! The initial condition variable for the surface height +VELOCITY_CONFIG = "file" +VELOCITY_FILE = "ocean_uv_ic.nc" + +! === module MOM_diag_mediator === +NUM_DIAG_COORDS = 2 ! default = 1 + ! The number of diagnostic vertical coordinates to use. For each coordinate, an + ! entry in DIAG_COORDS must be provided. +DIAG_COORDS = "z Z ZSTAR", "rho2 RHO2 RHO" ! + ! A list of string tuples associating diag_table modules to a coordinate + ! definition used for diagnostics. Each string is of the form + ! "MODULE_SUFFIX,PARAMETER_SUFFIX,COORDINATE_NAME". +DIAG_COORD_DEF_RHO2 = "RFNC1:35,999.5,1028,1028.5,8.,1038.,0.0078125" ! default = "WOA09" + ! Determines how to specify the coordinate resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +DIAG_COORD_DEF_Z = "FILE:ocean_vgrid.nc,interfaces=zw" ! default = "WOA09" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter DIAG_COORD_RES_RHO2 + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz + +! === module MOM_MEKE === +USE_MEKE = True ! [Boolean] default = False + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. +MEKE_GMCOEFF = 1.0 ! [nondim] default = -1.0 + ! The efficiency of the conversion of potential energy into MEKE by the + ! thickness mixing parameterization. If MEKE_GMCOEFF is negative, this + ! conversion is not used or calculated. +MEKE_BGSRC = 1.0E-13 ! [W kg-1] default = 0.0 + ! A background energy source for MEKE. +MEKE_KHMEKE_FAC = 1.0 ! [nondim] default = 0.0 + ! A factor that maps MEKE%Kh to Kh for MEKE itself. +MEKE_ALPHA_RHINES = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Rhines scale in the expression for + ! mixing length used in MEKE-derived diffusivity. +MEKE_ALPHA_EADY = 0.15 ! [nondim] default = 0.05 + ! If positive, is a coefficient weighting the Eady length scale in the + ! expression for mixing length used in MEKE-derived diffusivity. + +! === module MOM_lateral_mixing_coeffs === +USE_VARIABLE_MIXING = True ! [Boolean] default = False + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. +RESOLN_SCALED_KH = True ! [Boolean] default = False + ! If true, the Laplacian lateral viscosity is scaled away when the first + ! baroclinic deformation radius is well resolved. +RESOLN_SCALED_KHTH = True ! [Boolean] default = False + ! If true, the interface depth diffusivity is scaled away when the first + ! baroclinic deformation radius is well resolved. +KHTR_SLOPE_CFF = 0.25 ! [nondim] default = 0.0 + ! The nondimensional coefficient in the Visbeck formula for the epipycnal tracer + ! diffusivity +USE_STORED_SLOPES = True ! [Boolean] default = False + ! If true, the isopycnal slopes are calculated once and stored for re-use. This + ! uses more memory but avoids calling the equation of state more times than + ! should be necessary. +INTERPOLATE_RES_FN = False ! [Boolean] default = True + ! If true, interpolate the resolution function to the velocity points from the + ! thickness points; otherwise interpolate the wave speed and calculate the + ! resolution function independently at each point. +GILL_EQUATORIAL_LD = True ! [Boolean] default = False + ! If true, uses Gill's definition of the baroclinic equatorial deformation + ! radius, otherwise, if false, use Pedlosky's definition. These definitions + ! differ by a factor of 2 in front of the beta term in the denominator. Gill's + ! is the more appropriate definition. + +! === module MOM_set_visc === +CHANNEL_DRAG = True ! [Boolean] default = False + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. +PRANDTL_TURB = 1.25 ! [nondim] default = 1.0 + ! The turbulent Prandtl number applied to shear instability. +HBBL = 10.0 ! [m] + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. +DRAG_BG_VEL = 0.01 ! [m s-1] default = 0.0 + ! DRAG_BG_VEL is either the assumed bottom velocity (with LINEAR_DRAG) or an + ! unresolved velocity that is combined with the resolved velocity to estimate + ! the velocity magnitude. DRAG_BG_VEL is only used when BOTTOMDRAGLAW is + ! defined. +BBL_USE_EOS = True ! [Boolean] default = False + ! If true, use the equation of state in determining the properties of the bottom + ! boundary layer. Otherwise use the layer target potential densities. +BBL_THICK_MIN = 0.1 ! [m] default = 0.0 + ! The minimum bottom boundary layer thickness that can be used with + ! BOTTOMDRAGLAW. This might be Kv/(cdrag*drag_bg_vel) to give Kv as the minimum + ! near-bottom viscosity. +KV = 1.0E-06 ! [m2 s-1] + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. +KV_BBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the bottom boundary layer. +KV_TBL_MIN = 0.0 ! [m2 s-1] default = 1.0E-04 + ! The minimum viscosities in the top boundary layer. + +! === module MOM_thickness_diffuse === +KHTH_MAX_CFL = 0.1 ! [nondimensional] default = 0.8 + ! The maximum value of the local diffusive CFL ratio that is permitted for the + ! thickness diffusivity. 1.0 is the marginally unstable value in a pure layered + ! model, but much smaller numbers (e.g. 0.1) seem to work better for ALE-based + ! models. +USE_GM_WORK_BUG = True ! [Boolean] default = True + ! If true, compute the top-layer work tendency on the u-grid with the incorrect + ! sign, for legacy reproducibility. + +! === module MOM_continuity === + +! === module MOM_continuity_PPM === +ETA_TOLERANCE = 1.0E-06 ! [m] default = 3.75E-09 + ! The tolerance for the differences between the barotropic and baroclinic + ! estimates of the sea surface height due to the fluxes through each face. The + ! total tolerance for SSH is 4 times this value. The default is + ! 0.5*NK*ANGSTROM, and this should not be set less than about + ! 10^-15*MAXIMUM_DEPTH. +ETA_TOLERANCE_AUX = 0.001 ! [m] default = 1.0E-06 + ! The tolerance for free-surface height discrepancies between the barotropic + ! solution and the sum of the layer thicknesses when calculating the auxiliary + ! corrected velocities. By default, this is the same as ETA_TOLERANCE, but can + ! be made larger for efficiency. + +! === module MOM_CoriolisAdv === +CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: + ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. + ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 + ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. + ! ARAKAWA_LAMB81 - Arakawa & Lamb, 1981; En. + Enst. + ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with + ! Arakawa & Hsu and Sadourny energy +BOUND_CORIOLIS = True ! [Boolean] default = False + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. + +! === module MOM_PressureForce === + +! === module MOM_PressureForce_AFV === +MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. + +! === module MOM_hor_visc === +LAPLACIAN = True ! [Boolean] default = False + ! If true, use a Laplacian horizontal viscosity. +AH_VEL_SCALE = 0.005 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. +SMAGORINSKY_AH = False ! [Boolean] default = False + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. +SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False + ! If true, use Use the land mask for the computation of thicknesses at velocity + ! locations. This eliminates the dependence on arbitrary values over land or + ! outside of the domain. Default is False in order to maintain answers with + ! legacy experiments but should be changed to True for new experiments. + +! === module MOM_vert_friction === +HMIX_FIXED = 0.5 ! [m] + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. +! khs_testMAXVEL = 6.0 ! [m s-1] default = 3.0E+08 +MAXVEL = 3.0E+08 ! [m s-1] default = 3.0E+08 + ! The maximum velocity allowed before the velocity components are truncated. + +! === module MOM_PointAccel === +U_TRUNC_FILE = "U_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to zonal + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. +V_TRUNC_FILE = "V_velocity_truncations" ! default = "" + ! The absolute path to a file into which the accelerations leading to meridional + ! velocity truncations are written. Undefine this for efficiency if this + ! diagnostic is not needed. + +! === module MOM_barotropic === +BOUND_BT_CORRECTION = True ! [Boolean] default = False + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. +BT_PROJECT_VELOCITY = True ! [Boolean] default = False + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. +DYNAMIC_SURFACE_PRESSURE = True ! [Boolean] default = False + ! If true, add a dynamic pressure due to a viscous ice shelf, for instance. +DT_BT_FILTER = 360 ! [sec or nondim] default = -0.25 + ! A time-scale over which the barotropic mode solutions are filtered, in seconds + ! if positive, or as a fraction of DT if negative. When used this can never be + ! take to be longer than 2*dt. Set this to 0 to apply no filtering. +BEBT = 0.2 ! [nondim] default = 0.1 + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. +DTBT = -0.9 ! [s or nondim] default = -0.98 + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. +BT_USE_OLD_CORIOLIS_BRACKET_BUG = True ! [Boolean] default = False + ! If True, use an order of operations that is not bitwise rotationally symmetric + ! in the meridional Coriolis term of the barotropic solver. + +! === module MOM_mixed_layer_restrat === +MIXEDLAYER_RESTRAT = True ! [Boolean] default = False + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. +! FOX_KEMPER_ML_RESTRAT_COEF = 1.0 ! [nondim] default = 0.0 + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) +MLE_FRONT_LENGTH = 500.0 ! [m] default = 0.0 + ! If non-zero, is the frontal-length scale used to calculate the upscaling of + ! buoyancy gradients that is otherwise represented by the parameter + ! FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is non-zero, it is recommended + ! to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. +MLE_USE_PBL_MLD = True ! [Boolean] default = False + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. +MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. + +! === module MOM_diabatic_driver === +! The following parameters are used for diabatic processes. +ENERGETICS_SFC_PBL = True ! [Boolean] default = False + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. +EPBL_IS_ADDITIVE = False ! [Boolean] default = True + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. + +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ + +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization +INT_TIDE_DISSIPATION = True ! [Boolean] default = False + ! If true, use an internal tidal dissipation scheme to drive diapycnal mixing, + ! along the lines of St. Laurent et al. (2002) and Simmons et al. (2004). +INT_TIDE_PROFILE = "POLZIN_09" ! default = "STLAURENT_02" + ! INT_TIDE_PROFILE selects the vertical profile of energy dissipation with + ! INT_TIDE_DISSIPATION. Valid values are: + ! STLAURENT_02 - Use the St. Laurent et al exponential + ! decay profile. + ! POLZIN_09 - Use the Polzin WKB-stretched algebraic + ! decay profile. +INT_TIDE_DECAY_SCALE = 300.3003003003003 ! [m] default = 500.0 + ! The decay scale away from the bottom for tidal TKE with the new coding when + ! INT_TIDE_DISSIPATION is used. +KAPPA_ITIDES = 6.28319E-04 ! [m-1] default = 6.283185307179586E-04 + ! A topographic wavenumber used with INT_TIDE_DISSIPATION. The default is 2pi/10 + ! km, as in St.Laurent et al. 2002. +KAPPA_H2_FACTOR = 0.84 ! [nondim] default = 1.0 + ! A scaling factor for the roughness amplitude with INT_TIDE_DISSIPATION. +TKE_ITIDE_MAX = 0.1 ! [W m-2] default = 1000.0 + ! The maximum internal tide energy source available to mix above the bottom + ! boundary layer with INT_TIDE_DISSIPATION. +READ_TIDEAMP = True ! [Boolean] default = False + ! If true, read a file (given by TIDEAMP_FILE) containing the tidal amplitude + ! with INT_TIDE_DISSIPATION. +TIDEAMP_FILE = "ocean_tidal_amplitude.nc" ! default = "tideamp.nc" + ! The path to the file containing the spatially varying tidal amplitudes with + ! INT_TIDE_DISSIPATION. +H2_FILE = "ocean_topog.nc" ! + ! The path to the file containing the sub-grid-scale topographic roughness + ! amplitude with INT_TIDE_DISSIPATION. + +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix + +! === module MOM_geothermal === +GEOTHERMAL_SCALE = 1.0 ! [W m-2 or various] default = 0.0 + ! The constant geothermal heat flux, a rescaling factor for the heat flux read + ! from GEOTHERMAL_FILE, or 0 to disable the geothermal heating. +GEOTHERMAL_FILE = "ocean_geothermal.nc" ! default = "" + ! The file from which the geothermal heating is to be read, or blank to use a + ! constant heating rate. +GEOTHERMAL_VARNAME = "geothermal_hf" ! default = "geo_heat" + ! The name of the geothermal heating variable in GEOTHERMAL_FILE. + +! === module MOM_set_diffusivity === +BBL_MIXING_AS_MAX = False ! [Boolean] default = True + ! If true, take the maximum of the diffusivity from the BBL mixing and the other + ! diffusivities. Otherwise, diffusivity from the BBL_mixing is simply added. +USE_LOTW_BBL_DIFFUSIVITY = True ! [Boolean] default = False + ! If true, uses a simple, imprecise but non-coordinate dependent, model of BBL + ! mixing diffusivity based on Law of the Wall. Otherwise, uses the original BBL + ! scheme. +SIMPLE_TKE_TO_KD = True ! [Boolean] default = False + ! If true, uses a simple estimate of Kd/TKE that will work for arbitrary + ! vertical coordinates. If false, calculates Kd/TKE and bounds based on exact + ! energetics for an isopycnal layer-formulation. + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients +KD = 1.5E-05 ! [m2 s-1] + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. +KD_MIN = 2.0E-06 ! [m2 s-1] default = 1.5E-07 + ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. +KD_MAX = 0.1 ! [m2 s-1] default = -1.0 + ! The maximum permitted increment for the diapycnal diffusivity from TKE-based + ! parameterizations, or a negative value for no limit. + +! === module MOM_kappa_shear === +! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 +USE_JACKSON_PARAM = True ! [Boolean] default = False + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. +MAX_RINO_IT = 25 ! [nondim] default = 50 + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. +KAPPA_SHEAR_ITER_BUG = True ! [Boolean] default = True + ! If true, use an older, dimensionally inconsistent estimate of the derivative + ! of diffusivity with energy in the Newton's method iteration. The bug causes + ! undercorrections when dz > 1 m. +KAPPA_SHEAR_ALL_LAYER_TKE_BUG = True ! [Boolean] default = True + ! If true, report back the latest estimate of TKE instead of the time average + ! TKE when there is mass in all layers. Otherwise always report the time + ! averaged TKE, as is currently done when there are some massless layers. + +! === module MOM_CVMix_shear === +! Parameterization of shear-driven turbulence via CVMix (various options) + +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + +! === module MOM_diabatic_aux === +! The following parameters are used for auxiliary diabatic processes. +PRESSURE_DEPENDENT_FRAZIL = True ! [Boolean] default = False + ! If true, use a pressure dependent freezing temperature when making frazil. The + ! default is false, which will be faster but is inappropriate with ice-shelf + ! cavities. +VAR_PEN_SW = True ! [Boolean] default = False + ! If true, use one of the CHL_A schemes specified by OPACITY_SCHEME to determine + ! the e-folding depth of incoming short wave radiation. +CHL_FILE = "ocean_chla.nc" ! + ! CHL_FILE is the file containing chl_a concentrations in the variable CHL_A. It + ! is used when VAR_PEN_SW and CHL_FROM_FILE are true. + +EPBL_VEL_SCALE_FACTOR = 0.5 ! [nondim] default = 1.0 + ! An overall nondimensional scaling factor for wT. Making this larger increases + ! the PBL diffusivity. + +! === module MOM_energetic_PBL === +ML_OMEGA_FRAC = 0.001 ! [nondim] default = 0.0 + ! When setting the decay scale for turbulence, use this fraction of the absolute + ! rotation rate blended with the local value of f, as sqrt((1-of)*f^2 + + ! of*4*omega^2). +TKE_DECAY = 0.01 ! [nondim] default = 2.5 + ! TKE_DECAY relates the vertical rate of decay of the TKE available for + ! mechanical entrainment to the natural Ekman depth. +EPBL_MSTAR_SCHEME = "OM4" ! default = "CONSTANT" + ! EPBL_MSTAR_SCHEME selects the method for setting mstar. Valid values are: + ! CONSTANT - Use a fixed mstar given by MSTAR + ! OM4 - Use L_Ekman/L_Obukhov in the sabilizing limit, as in OM4 + ! REICHL_H18 - Use the scheme documented in Reichl & Hallberg, 2018. +MSTAR_CAP = 10.0 ! [nondim] default = -1.0 + ! If this value is positive, it sets the maximum value of mstar allowed in ePBL. + ! (This is not used if EPBL_MSTAR_SCHEME = CONSTANT). +MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 + ! Coefficient in computing mstar when rotation and stabilizing effects are both + ! important (used if EPBL_MSTAR_SCHEME = OM4). +MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 + ! Coefficient in computing mstar when only rotation limits the total mixing + ! (used if EPBL_MSTAR_SCHEME = OM4) +NSTAR = 0.06 ! [nondim] default = 0.2 + ! The portion of the buoyant potential energy imparted by surface fluxes that is + ! available to drive entrainment at the base of mixed layer when that energy is + ! positive. +MSTAR_CONV_ADJ = 0.667 ! [nondim] default = 0.0 + ! Coefficient used for reducing mstar during convection due to reduction of + ! stable density gradient. +USE_MLD_ITERATION = True ! [Boolean] default = False + ! A logical that specifies whether or not to use the distance to the bottom of + ! the actively turbulent boundary layer to help set the EPBL length scale. +EPBL_TRANSITION_SCALE = 0.01 ! [nondim] default = 0.1 + ! A scale for the mixing length in the transition layer at the edge of the + ! boundary layer as a fraction of the boundary layer thickness. +MIX_LEN_EXPONENT = 1.0 ! [nondim] default = 2.0 + ! The exponent applied to the ratio of the distance to the MLD and the MLD depth + ! which determines the shape of the mixing length. This is only used if + ! USE_MLD_ITERATION is True. +USE_LA_LI2016 = True ! [nondim] default = False + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. +EPBL_LANGMUIR_SCHEME = "ADDITIVE" ! default = "NONE" + ! EPBL_LANGMUIR_SCHEME selects the method for including Langmuir turbulence. + ! Valid values are: + ! NONE - Do not do any extra mixing due to Langmuir turbulence + ! RESCALE - Use a multiplicative rescaling of mstar to account for Langmuir + ! turbulence + ! ADDITIVE - Add a Langmuir turblence contribution to mstar to other + ! contributions +LT_ENHANCE_COEF = 0.044 ! [nondim] default = 0.447 + ! Coefficient for Langmuir enhancement of mstar +LT_ENHANCE_EXP = -1.5 ! [nondim] default = -1.33 + ! Exponent for Langmuir enhancementt of mstar +LT_MOD_LAC1 = 0.0 ! [nondim] default = -0.87 + ! Coefficient for modification of Langmuir number due to MLD approaching Ekman + ! depth. +LT_MOD_LAC4 = 0.0 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! stable Obukhov depth. +LT_MOD_LAC5 = 0.22 ! [nondim] default = 0.95 + ! Coefficient for modification of Langmuir number due to ratio of Ekman to + ! unstable Obukhov depth. + +! === module MOM_regularize_layers === + +! === module MOM_opacity === +PEN_SW_NBANDS = 3 ! default = 1 + ! The number of bands of penetrating shortwave radiation. + +! === module MOM_tracer_advect === +TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" + ! The horizontal transport scheme for tracers: + ! PLM - Piecewise Linear Method + ! PPM:H3 - Piecewise Parabolic Method (Huyhn 3rd order) + ! PPM - Piecewise Parabolic Method (Colella-Woodward) + +! === module MOM_tracer_hor_diff === +CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. + +! === module MOM_neutral_diffusion === +! This module implements neutral diffusion of tracers + +! === module MOM_lateral_boundary_diffusion === +! This module implements lateral diffusion of tracers near boundaries + +! === module MOM_sum_output === +MAXTRUNC = 100000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. +ENERGYSAVEDAYS = 0.25 ! [days] default = 1.0 + ! The interval in units of TIMEUNIT between saves of the energies of the run and + ! other globally summed diagnostics. + +! === module ocean_model_init === + +! === module MOM_surface_forcing === +BUOY_CONFIG = "data_override" ! default = "zero" + ! The character string that indicates how buoyancy forcing is specified. Valid + ! options include (file), (zero), (linear), (USER), (BFB) and (NONE). +ARCHAIC_OMIP_FORCING_FILE = False ! [Boolean] default = True + ! If true, use the forcing variable decomposition from the old German OMIP + ! prescription that predated CORE. If false, use the variable groupings + ! available from MOM output diagnostics of forcing variables. +MAX_P_SURF = 0.0 ! [Pa] default = -1.0 + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. +CD_TIDES = 0.0018 ! [nondim] default = 1.0E-04 + ! The drag coefficient that applies to the tides. +WIND_CONFIG = "data_override" ! default = "zero" + ! The character string that indicates how wind forcing is specified. Valid + ! options include (file), (2gyre), (1gyre), (gyres), (zero), and (USER). +RESTOREBUOY = True ! [Boolean] default = False + ! If true, the buoyancy fluxes drive the model back toward some specified + ! surface state with a rate given by FLUXCONST. +LATENT_HEAT_FUSION = 3.34E+05 ! [J/kg] default = 3.34E+05 + ! The latent heat of fusion. +LATENT_HEAT_VAPORIZATION = 2.5E+06 ! [J/kg] default = 2.5E+06 + ! The latent heat of fusion. +!FLUXCONST = 0.5 ! [m day-1] default = 0.0 + ! The constant that relates the restoring surface fluxes to the relative surface + ! anomalies (akin to a piston velocity). Note the non-MKS units. +!FLUXCONST_T = 0.5 ! [m day-1] default = 0.5 + ! The constant that relates the restoring surface temperature flux to the + ! relative surface anomaly (akin to a piston velocity). Note the non-MKS units. +!FLUXCONST_S = 0.5 ! [m day-1] default = 0.5 + ! The constant that relates the restoring surface salinity flux to the relative + ! surface anomaly (akin to a piston velocity). Note the non-MKS units. +GUST_CONST = 0.0 ! [Pa] default = 0.0 + ! The background gustiness in the winds. +FIX_USTAR_GUSTLESS_BUG = True ! [Boolean] default = True + ! If true correct a bug in the time-averaging of the gustless wind friction + ! velocity + +! These parameters are used in CORE mode but should not be used in +! the coupled model (CM4). +RESTORE_SALINITY = False ! [Boolean] default = False + ! If true, the coupled driver will add a globally-balanced + ! fresh-water flux that drives sea-surface salinity + ! toward specified values. +ADJUST_NET_FRESH_WATER_TO_ZERO = True ! [Boolean] default = False + ! If true, adjusts the net fresh-water forcing seen + ! by the ocean (including restoring) to zero. +FLUXCONST = 0.1667 !0.500 !0.1667 ! [m day-1] + ! The constant that relates the restoring surface fluxes + ! to the relative surface anomalies (akin to a piston + ! velocity). Note the non-MKS units. +SALT_RESTORE_FILE = "ocean_salt_restore.nc" !"salt_restore_correct.nc" ! default = "salt_restore.nc" + ! A file in which to find the surface salinity to use for restoring. +SALT_RESTORE_VARIABLE = "SALT" +SRESTORE_AS_SFLUX = True ! [Boolean] default = False + ! If true, the restoring of salinity is applied as a salt + ! flux instead of as a freshwater flux. +MAX_DELTA_SRESTORE = 5.0 ! [PSU or g kg-1] default = 999.0 + ! The maximum salinity difference used in restoring terms. +USE_NET_FW_ADJUSTMENT_SIGN_BUG = False ! [Boolean] default = True + ! If true, use the wrong sign for the adjustment to + ! the net fresh-water. + +! === module MOM_restart === + +! === module MOM_file_parser === diff --git a/tests/parm/datm.streams.era5.IN b/tests/parm/datm.streams.era5.IN index 2f1b7c8b38..04e8050617 100644 --- a/tests/parm/datm.streams.era5.IN +++ b/tests/parm/datm.streams.era5.IN @@ -8,6 +8,7 @@ stream_offset01: 3600 yearFirst01: @[SDATE] yearLast01: @[EDATE] yearAlign01: @[SDATE] +stream_vectors01: null stream_mesh_file01: "INPUT/@[MESH_ATM_DATA]" stream_lev_dimname01: null stream_data_files01: @[DATA_ATM01] diff --git a/tests/parm/diag_table/diag_table_hafs_template b/tests/parm/diag_table/diag_table_hafs_template index 802adbdc4b..d3ad4afbb5 100644 --- a/tests/parm/diag_table/diag_table_hafs_template +++ b/tests/parm/diag_table/diag_table_hafs_template @@ -13,6 +13,63 @@ ufs.hafs #"maxmin2D", 1, "hours", 1, "hours", "time" # +###################### +"ocn%4yr%2mo%2dy%2hr", 3, "hours", 1, "hours", "time", 3, "hours" +#"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +#"ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +#"ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 +#"ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 +#"ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + +# save daily SST +#"ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 +#"ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 +#"ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 +#"ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 #======================= # ATMOSPHERE DIAGNOSTICS #======================= diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 7e909d98a1..3fdf8e7d5e 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -364,3 +364,11 @@ @[HIDE_UGWPV1] knob_ugwp_palaunch = @[KNOB_UGWP_PALAUNCH] @[HIDE_UGWPV1] knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] / + + &MOM_input_nml + output_directory = 'OUTPUT', + input_filename = 'n' + restart_input_dir = 'INPUT', + restart_output_dir = 'RESTART', + parameter_filename = 'MOM_input' +/ diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index 16499d73de..d88db070ef 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -366,3 +366,11 @@ knob_ugwp_version = 0 launch_level = 25 / + + &MOM_input_nml + output_directory = 'OUTPUT', + input_filename = 'n' + restart_input_dir = 'INPUT', + restart_output_dir = 'RESTART', + parameter_filename = 'MOM_input' +/ diff --git a/tests/parm/stream.config_hycom.IN b/tests/parm/stream.config_hycom.IN new file mode 100644 index 0000000000..f548739bcc --- /dev/null +++ b/tests/parm/stream.config_hycom.IN @@ -0,0 +1,32 @@ +stream_info: stream01 stream02 + +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.5 +stream_offset01: @[STREAM_OFFSET] +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: null +stream_mesh_file01: @[INLINE_MESH_OCN] +stream_lev_dimname01: null +stream_data_files01: @[INLINE_STREAM_FILES_OCN] +stream_data_variables01: "TMP_surface So_t" +stream_dst_mask01: 1 + +taxmode02: limit +mapalgo02: bilinear +tInterpAlgo02: linear +readMode02: single +dtlimit02: 1.5 +stream_offset02: @[STREAM_OFFSET] +yearFirst02: @[SYEAR] +yearLast02: @[SYEAR] +yearAlign02: @[SYEAR] +stream_vectors02: null +stream_mesh_file02: @[INLINE_MESH_ATM] +stream_lev_dimname02: null +stream_data_files02: @[INLINE_STREAM_FILES_ATM] +stream_data_variables02: "UFLX_surface Faxa_taux" "VFLX_surface Faxa_tauy" "PRATE_surface Faxa_rain" "NETSW_surface Faxa_swnet" "NETLW_surface Faxa_lwnet" "SHTFL_surface Faxa_sen" "LHTFL_surface Faxa_lat" "PRES_surface Sa_pslv" "UGRD_10maboveground Sa_u10m" "VGRD_10maboveground Sa_v10m" diff --git a/tests/parm/stream.config_mom6.IN b/tests/parm/stream.config_mom6.IN new file mode 100644 index 0000000000..f03563fe3c --- /dev/null +++ b/tests/parm/stream.config_mom6.IN @@ -0,0 +1,32 @@ +stream_info: stream01 stream02 + +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.5 +stream_offset01: @[STREAM_OFFSET] +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: null +stream_mesh_file01: @[INLINE_MESH_OCN] +stream_lev_dimname01: null +stream_data_files01: @[INLINE_STREAM_FILES_OCN] +stream_data_variables01: "TMP_surface So_t" +stream_dst_mask01: 1 + +taxmode02: limit +mapalgo02: bilinear +tInterpAlgo02: linear +readMode02: single +dtlimit02: 1.5 +stream_offset02: @[STREAM_OFFSET] +yearFirst02: @[SYEAR] +yearLast02: @[SYEAR] +yearAlign02: @[SYEAR] +stream_vectors02: null +stream_mesh_file02: @[INLINE_MESH_ATM] +stream_lev_dimname02: null +stream_data_files02: @[INLINE_STREAM_FILES_ATM] +stream_data_variables02: "SWVDR_surface Faxa_swvdr" "SWVDF_surface Faxa_swvdf" "SWNDR_surface Faxa_swndr" "SWNDF_surface Faxa_swndf" "NETLW_surface Faxa_lwnet" "SHTFL_surface Faxa_sen" "EVAP_surface Faxa_evap" "PRATE_surface Faxa_rain" "UFLX_surface Faxa_taux" "VFLX_surface Faxa_tauy" "PRES_surface Sa_pslv" "UGRD_10maboveground Sa_u10m" "VGRD_10maboveground Sa_v10m" diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN new file mode 100644 index 0000000000..894f510fb1 --- /dev/null +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -0,0 +1,167 @@ +############################################## +##### UFS Run-Time Configuration File ###### +############################################## + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +MED_attributes:: + Verbosity = 0 + Diagnostic = 0 + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + normalization = none + merge_type = copy + pio_rearranger = @[pio_rearranger] + ocn_use_data_first_import = .true. + wav_use_data_first_import = .true. +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 + mesh_atm = @[MESH_ATM] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + write_restart_at_endofrun = .true. +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + Diagnostic = 0 + cdf_impexp_freq = 3 + cpl_hour = 0 + cpl_min = 0 + cpl_sec = @[coupling_interval_sec] + base_dtg = @[SYEAR]@[SMONTH]@[SDAY]@[SHOUR] + merge_import = .false. + skip_first_import = .false. + hycom_arche_output = .false. + hyc_esmf_exp_output = .true. + hyc_esmf_imp_output = .true. + import_diagnostics = .false. + import_setting = flexible + hyc_impexp_file = ufs.configure + espc_show_impexp_minmax = .true. + ocean_start_dtg = @[OCEAN_START_DTG] + start_hour = 0 + start_min = 0 + start_sec = 0 + end_hour = @[FHMAX] + end_min = 0 + end_sec = 0 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + Diagnostic = 0 + OverwriteSlice = false + merge_import = .false. + mesh_wav = @[MESH_WAV] + user_sets_restname = true +:: + +# Run Sequence # +runSeq:: +@@[coupling_interval_sec] + MED med_phases_cdeps_run + MED med_phases_prep_atm + MED med_phases_prep_ocn_accum + MED med_phases_prep_ocn_avg + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> OCN :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM + OCN + WAV + ATM -> MED :remapMethod=redist + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_atm + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxNextSwCday = 3 + ScalarFieldName = cpl_scalars + start_type = startup + case_name = ufs.hafs + restart_n = 6 + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + mediator_present = true + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: + +ocn_export_fields:: + 'sst' 'sea_surface_temperature' 'K' + 'mask' 'ocean_mask' '1' + 'cpl_scalars' 'cpl_scalars' '1' +:: + +ocn_import_fields:: + 'taux10' 'inst_zonal_moment_flx_atm' 'N_m-2' + 'tauy10' 'inst_merid_moment_flx_atm' 'N_m-2' + 'prcp' 'inst_prec_rate' 'kg_m-2_s-1' + 'swflxd' 'inst_net_sw_flx' 'W_m-2' + 'lwflxd' 'inst_net_lw_flx' 'W_m-2' + 'mslprs' 'inst_pres_height_surface' 'Pa' + 'sensflx' 'inst_sensi_heat_flx' 'W_m-2' + 'latflx' 'inst_laten_heat_flx' 'W_m-2' +:: diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN new file mode 100644 index 0000000000..1ca0848395 --- /dev/null +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -0,0 +1,136 @@ +############################################## +##### UFS Run-Time Configuration File ###### +############################################## + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +MED_attributes:: + Verbosity = 0 + Diagnostic = 0 + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + history_n = 3 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + normalization = none + merge_type = copy + pio_rearranger = @[pio_rearranger] + ocn_use_data_first_import = .true. + wav_use_data_first_import = .true. +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 + mesh_atm = @[MESH_ATM] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + write_restart_at_endofrun = .true. +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + Diagnostic = 0 + history_n = 3 + history_option = nhours + merge_import = .false. + skip_first_import = .false. #.true. + use_mommesh = true + eps_imesh = 2.5e-1 + mesh_ocn = @[MESH_OCN] +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + Diagnostic = 0 + OverwriteSlice = false + merge_import = .false. + mesh_wav = @[MESH_WAV] + user_sets_restname = true +:: + +# Run Sequence # +runSeq:: +@@[coupling_interval_sec] + MED med_phases_cdeps_run + MED med_phases_prep_atm + MED med_phases_ocnalb_run + MED med_phases_prep_ocn_accum + MED med_phases_prep_ocn_avg + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> OCN :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM + OCN + WAV + ATM -> MED :remapMethod=redist + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_atm + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + MED_model = cmeps + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = startup + case_name = ufs.hafs + restart_n = 3 + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + mediator_present = true + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/rt.conf b/tests/rt.conf index 0cf29878ad..332ffe1b73 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -245,8 +245,12 @@ RUN | gnv1_nested | - s4 noaacloud COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | -COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | -jet noaacloud s4 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | +COMPILE | hafsw_faster | intel | -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet s4 noaacloud | baseline | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_inline | - jet s4 noaacloud | baseline | + +COMPILE | hafs_mom6w | intel| -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON | -jet noaacloud s4 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 | - jet s4 noaacloud | baseline | COMPILE | hafs_all | intel | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - noaacloud | fv3 | RUN | hafs_regional_docn | - noaacloud | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index e165b8096a..1819833aa8 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -359,7 +359,7 @@ elif [[ $MACHINE_ID = orion ]]; then module load gcc/10.2.0 module load python/3.9.2 - module load contrib rocoto/1.3.1 + module load contrib rocoto ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) @@ -381,7 +381,7 @@ elif [[ $MACHINE_ID = orion ]]; then elif [[ $MACHINE_ID = hercules ]]; then - module load contrib rocoto/1.3.5 + module load contrib rocoto ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) @@ -405,7 +405,7 @@ elif [[ $MACHINE_ID = hercules ]]; then elif [[ $MACHINE_ID = jet ]]; then - module load rocoto/1.3.6 + module load rocoto ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) diff --git a/tests/run_test.sh b/tests/run_test.sh index 2b9e3ebf9d..a94d089c78 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -289,6 +289,10 @@ if [[ $DOCN_CDEPS = 'true' ]]; then atparse < ${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN} > docn.streams fi +if [[ $CDEPS_INLINE = 'true' ]]; then + atparse < ${PATHRT}/parm/${CDEPS_INLINE_CONFIGURE:-stream.config.IN} > stream.config +fi + TPN=$(( TPN / THRD )) if (( TASKS < TPN )); then TPN=${TASKS} diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline new file mode 100644 index 0000000000..796c165057 --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_inline @@ -0,0 +1,153 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled with HYCOM and WW3 through CMEPS with inline CDEPS +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave cmeps_inline_cdeps coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav_inline + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + archv.2020_238_18.a \ + archs.2020_238_18.a \ + 20200825.180000.out_grd.ww3 \ + 20200825.180000.out_pnt.ww3" + +export_fv3 +export_hafs +export_hafs_regional + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export DT_ATMOS=180 +export IDEFLATE=1 +export OUTPUT_FH='3 -1' +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.3 +export CEN_LAT_2=23.3 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=0,0,0,0,0 +export CPLFLX=.true. +export CPLOCN2ATM=.true. +export CPLWAV=.true. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.true. + +# ufs.configure +export med_model=cmeps +export CAP_DBUG_FLAG=0 +export RESTART_N=${FHMAX} +export CPLMODE=hafs +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false +export OCEAN_START_DTG=43702.50000 + +export atm_model=fv3 +export ocn_model=hycom +export wav_model=ww3 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) +OCN_tasks=60 +WAV_tasks=60 + +export atm_omp_num_threads=2 +export med_omp_num_threads=2 +export ocn_omp_num_threads=2 +export wav_omp_num_threads=2 + +export coupling_interval_sec=360 +export MESH_ATM=unset + +export CDEPS_INLINE=true +export INLINE_MESH_ATM="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_ATM="INPUT/gfs_forcings.nc" +export INLINE_MESH_OCN="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_OCN="INPUT/gfs_forcings.nc" +export STREAM_OFFSET=0 + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav_inline.IN +export CDEPS_INLINE_CONFIGURE=stream.config_hycom.IN +export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 new file mode 100644 index 0000000000..60ce05b605 --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -0,0 +1,152 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave coupled with MOM6 and WW3 +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and fv3-mom6-ww3 coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 + +export LIST_FILES="atmf003.nc \ + sfcf003.nc \ + atm.nest02.f003.nc \ + sfc.nest02.f003.nc \ + ocn_2020_08_25_15.nc \ + 20200825.150000.out_grd.ww3 \ + 20200825.150000.out_pnt.ww3" + +export_fv3 +export_hafs +export_hafs_regional + +export HAFS=true +export FHMAX=3 +export RESTART_N=${FHMAX} +export DT_ATMOS=180 +export IDEFLATE=1 +export OUTPUT_FH='3 -1' +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.3 +export CEN_LAT_2=23.3 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE=FV3_HAFS_v1_gfdlmp_tedmf_nonsst +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=0,0,0,0,0 +export CPLFLX=.true. +export CPLOCN2ATM=.true. +export CPLWAV=.true. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.true. + +# ufs.configure +export med_model=cmeps +export CAP_DBUG_FLAG=0 +export RESTART_N=${FHMAX} +export CPLMODE=hafs.mom6 +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false + +export atm_model=fv3 +export ocn_model=mom6 +export wav_model=ww3 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) +OCN_tasks=60 +WAV_tasks=60 + +export atm_omp_num_threads=2 +export med_omp_num_threads=2 +export ocn_omp_num_threads=2 +export wav_omp_num_threads=2 + +export coupling_interval_sec=360 +export MESH_ATM=unset +export MESH_OCN=INPUT/mom6_mesh.nc + +export CDEPS_INLINE=true +export INLINE_MESH_ATM="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_ATM="INPUT/gfs_forcings.nc" +export INLINE_MESH_OCN="INPUT/gfs_mesh.nc" +export INLINE_STREAM_FILES_OCN="INPUT/gfs_forcings.nc" +export STREAM_OFFSET=0 + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE=model_configure_hafs.IN +export UFS_CONFIGURE=ufs.configure.hafs_atm_ocn_wav_mom6.IN +export CDEPS_INLINE_CONFIGURE=stream.config_mom6.IN +export FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN" From 02ecf10df013f8d8922480b1da4ba417efc94dbf Mon Sep 17 00:00:00 2001 From: GeorgeGayno-NOAA <52789452+GeorgeGayno-NOAA@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:30:17 -0500 Subject: [PATCH 02/10] New regression tests for V2 surface coldstart files (#2005) - Add three new regression tests for version 2 of the surface coldstart file. (Closes #1977) --- FV3 | 2 +- tests/fv3_conf/control_run.IN | 7 +- tests/fv3_conf/cpld_control_run.IN | 8 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 2014 ++++++------ tests/logs/RegressionTests_hera.log | 2702 ++++++++-------- tests/logs/RegressionTests_hercules.log | 2873 +++++++++-------- tests/logs/RegressionTests_jet.log | 2096 ++++++------ tests/logs/RegressionTests_orion.log | 2306 +++++++------ tests/logs/RegressionTests_wcoss2.log | 1915 ++++++----- tests/rt.conf | 5 +- tests/tests/control_c48.v2.sfc | 84 + tests/tests/control_p8.v2.sfc | 181 ++ tests/tests/cpld_control_p8.v2.sfc | 88 + 16 files changed, 7933 insertions(+), 6444 deletions(-) create mode 100644 tests/tests/control_c48.v2.sfc create mode 100644 tests/tests/control_p8.v2.sfc create mode 100644 tests/tests/cpld_control_p8.v2.sfc diff --git a/FV3 b/FV3 index 8db821cb94..b8f7b0f33d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 8db821cb944f5a6f2586a42926434cca91fcac94 +Subproject commit b8f7b0f33df6dc712f241dcd6818c9ec27134e26 diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index a0dfe69b2c..30634250d8 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -13,10 +13,15 @@ fi echo "inputdir=$inputdir,NPX=$NPX" OPNREQ_TEST=${OPNREQ_TEST:-false} +V2_SFC_FILE=${V2_SFC_FILE:-false} SUFFIX=${RT_SUFFIX} if [ $WARM_START = .false. ]; then mkdir INPUT RESTART - cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. + if [ "$V2_SFC_FILE" = "true" ]; then + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127_v2_sfc/* ./INPUT/. + else + cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT_L127/* ./INPUT/. + fi else mkdir INPUT RESTART diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 9d5534e371..d497771d0b 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -15,6 +15,8 @@ fi ICERES=${OCNRES:0:1}.${OCNRES:1} +V2_SFC_FILE=${V2_SFC_FILE:-false} + if [[ $BMIC == .true. ]]; then FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/@[FV3BMIC]/@[ATMRES]_L@[NPZ]/INPUT MOM_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da @@ -25,7 +27,11 @@ else MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC/${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR} ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR} else - FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} + if [ "$V2_SFC_FILE" = "true" ]; then + FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES}_v2_sfc + else + FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} + fi MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES} fi diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index c7ce9c7b36..bd09967f84 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Feb 2 02:17:07 UTC 2024 +Wed Feb 7 15:21:44 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.516405 - 0: The maximum resident set size (KB) = 1307816 + 0: The total amount of wall time = 279.101386 + 0: The maximum resident set size (KB) = 1303960 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 915.713491 - 0: The maximum resident set size (KB) = 1292056 + 0: The total amount of wall time = 909.113285 + 0: The maximum resident set size (KB) = 1288940 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.429761 - 0: The maximum resident set size (KB) = 1278592 + 0: The total amount of wall time = 247.389257 + 0: The maximum resident set size (KB) = 1282176 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.829038 - 0: The maximum resident set size (KB) = 1281948 + 0: The total amount of wall time = 248.494145 + 0: The maximum resident set size (KB) = 1285116 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.474906 - 0: The maximum resident set size (KB) = 1285948 + 0: The total amount of wall time = 250.300567 + 0: The maximum resident set size (KB) = 1282776 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 258.712522 - 0: The maximum resident set size (KB) = 1281208 + 0: The total amount of wall time = 251.844583 + 0: The maximum resident set size (KB) = 1279596 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_7057/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.574949 - 0: The maximum resident set size (KB) = 1279744 + 0: The total amount of wall time = 247.282302 + 0: The maximum resident set size (KB) = 1282532 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 2 12:53:19 UTC 2024 -Elapsed time: 10h:36m:13s. Have a nice day! +Wed Feb 7 17:37:17 UTC 2024 +Elapsed time: 02h:15m:34s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index c24923152c..c37f181b6e 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Feb 2 14:02:45 UTC 2024 +Wed Feb 7 18:45:23 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_101366/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1251.653326 - 0: The maximum resident set size (KB) = 1407584 + 0: The total amount of wall time = 1238.891075 + 0: The maximum resident set size (KB) = 1412672 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_101366/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu 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 = 377.186122 - 0: The maximum resident set size (KB) = 1394572 + 0: The total amount of wall time = 390.905866 + 0: The maximum resident set size (KB) = 1402368 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_250216/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_101366/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 380.074651 - 0: The maximum resident set size (KB) = 1407552 + 0: The total amount of wall time = 380.815768 + 0: The maximum resident set size (KB) = 1404516 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 2 15:19:23 UTC 2024 -Elapsed time: 01h:16m:38s. Have a nice day! +Wed Feb 7 21:01:45 UTC 2024 +Elapsed time: 02h:16m:23s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 096a4d9125..5526a04f5c 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Feb 2 15:30:30 UTC 2024 +Wed Feb 7 17:48:14 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18410/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 511.454957 - 0: The maximum resident set size (KB) = 591204 + 0: The total amount of wall time = 514.965169 + 0: The maximum resident set size (KB) = 589908 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18410/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 517.871253 - 0: The maximum resident set size (KB) = 594916 + 0: The total amount of wall time = 513.938502 + 0: The maximum resident set size (KB) = 589468 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_234117/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18410/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 521.291672 - 0: The maximum resident set size (KB) = 592712 + 0: The total amount of wall time = 515.645515 + 0: The maximum resident set size (KB) = 592364 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 2 16:42:10 UTC 2024 -Elapsed time: 01h:11m:40s. Have a nice day! +Wed Feb 7 18:44:38 UTC 2024 +Elapsed time: 00h:56m:24s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 1ca75c30fb..82a83a8a2e 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,60 +1,60 @@ -Fri Feb 2 14:53:04 UTC 2024 +Wed Feb 7 16:36:54 UTC 2024 Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop-35-g8db821c) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 490 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 491 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 521 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_debug_dyn32_intel elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 533 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 493 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 501 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 519 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 502 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 42 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 513 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 554 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 191 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 547 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 537 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 599 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 477 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 531 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 612 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 596 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 940 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 917 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 576 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 578 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 215 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_dyn32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 571 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 526 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 522 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 539 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 523 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 572 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 205 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 563 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 624 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 555 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 567 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 620 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 936 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 887 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 620 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 585 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 989 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.318412 -The maximum resident set size (KB) = 2977196 +The total amount of wall time = 321.686386 +The maximum resident set size (KB) = 2977080 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 904.301031 -The maximum resident set size (KB) = 1598124 +The total amount of wall time = 901.686286 +The maximum resident set size (KB) = 1596316 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 967.797684 -The maximum resident set size (KB) = 1725560 +The total amount of wall time = 967.884252 +The maximum resident set size (KB) = 1721860 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 450.269818 -The maximum resident set size (KB) = 850424 +The total amount of wall time = 448.765437 +The maximum resident set size (KB) = 846996 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1058.830894 -The maximum resident set size (KB) = 1574172 +The total amount of wall time = 1053.915349 +The maximum resident set size (KB) = 1579004 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1418.322768 -The maximum resident set size (KB) = 1601436 +The total amount of wall time = 1411.799276 +The maximum resident set size (KB) = 1601784 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,15 +505,87 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 362.583734 -The maximum resident set size (KB) = 3001144 +The total amount of wall time = 363.512521 +The maximum resident set size (KB) = 3003684 Test 007 cpld_control_p8_intel PASS +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 361.538293 +The maximum resident set size (KB) = 3001180 + +Test 008 cpld_control_p8.v2.sfc_intel PASS + + baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -565,15 +637,15 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.311337 -The maximum resident set size (KB) = 3059776 +The total amount of wall time = 213.363471 +The maximum resident set size (KB) = 3060028 -Test 008 cpld_restart_p8_intel PASS +Test 009 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -637,15 +709,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.537912 -The maximum resident set size (KB) = 3026252 +The total amount of wall time = 365.795526 +The maximum resident set size (KB) = 3025764 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -697,15 +769,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.290818 -The maximum resident set size (KB) = 3080712 +The total amount of wall time = 216.875523 +The maximum resident set size (KB) = 3081528 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_2threads_p8_intel +Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -757,15 +829,15 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.761022 -The maximum resident set size (KB) = 3312300 +The total amount of wall time = 324.060668 +The maximum resident set size (KB) = 3313600 -Test 011 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_decomp_p8_intel +Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -817,15 +889,15 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 355.722477 -The maximum resident set size (KB) = 2998064 +The total amount of wall time = 357.996427 +The maximum resident set size (KB) = 2997460 -Test 012 cpld_decomp_p8_intel PASS +Test 013 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_mpi_p8_intel +Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -877,15 +949,15 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 301.591247 -The maximum resident set size (KB) = 2926608 +The total amount of wall time = 301.556085 +The maximum resident set size (KB) = 2922812 -Test 013 cpld_mpi_p8_intel PASS +Test 014 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_ciceC_p8_intel +Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -949,15 +1021,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.540926 -The maximum resident set size (KB) = 3000524 +The total amount of wall time = 362.589716 +The maximum resident set size (KB) = 3000252 -Test 014 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_s2sa_p8_intel -Checking test 015 cpld_s2sa_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_s2sa_p8_intel +Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1007,15 +1079,15 @@ Checking test 015 cpld_s2sa_p8_intel 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 = 341.660545 -The maximum resident set size (KB) = 2968068 +The total amount of wall time = 343.255355 +The maximum resident set size (KB) = 2968992 -Test 015 cpld_s2sa_p8_intel PASS +Test 016 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_noaero_p8_intel -Checking test 016 cpld_control_noaero_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_noaero_p8_intel +Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1078,15 +1150,15 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 269.020881 -The maximum resident set size (KB) = 1588492 +The total amount of wall time = 268.714879 +The maximum resident set size (KB) = 1595720 -Test 016 cpld_control_noaero_p8_intel PASS +Test 017 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_nowave_noaero_p8_intel -Checking test 017 cpld_control_nowave_noaero_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_nowave_noaero_p8_intel +Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1147,15 +1219,15 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel 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 = 273.924189 -The maximum resident set size (KB) = 1640212 +The total amount of wall time = 273.690681 +The maximum resident set size (KB) = 1637660 -Test 017 cpld_control_nowave_noaero_p8_intel PASS +Test 018 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_noaero_p8_agrid_intel -Checking test 018 cpld_control_noaero_p8_agrid_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_noaero_p8_agrid_intel +Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1216,15 +1288,15 @@ Checking test 018 cpld_control_noaero_p8_agrid_intel 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 = 277.554247 -The maximum resident set size (KB) = 1640032 +The total amount of wall time = 276.570006 +The maximum resident set size (KB) = 1639792 -Test 018 cpld_control_noaero_p8_agrid_intel PASS +Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_c48_intel -Checking test 019 cpld_control_c48_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_c48_intel +Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1273,15 +1345,15 @@ Checking test 019 cpld_control_c48_intel 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 = 405.358854 -The maximum resident set size (KB) = 2664112 +The total amount of wall time = 403.617897 +The maximum resident set size (KB) = 2650608 -Test 019 cpld_control_c48_intel PASS +Test 020 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_p8_faster_intel -Checking test 020 cpld_control_p8_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8_faster_intel +Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1345,15 +1417,15 @@ Checking test 020 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.630870 -The maximum resident set size (KB) = 2999844 +The total amount of wall time = 355.782555 +The maximum resident set size (KB) = 2999840 -Test 020 cpld_control_p8_faster_intel PASS +Test 021 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_control_pdlib_p8_intel -Checking test 021 cpld_control_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_pdlib_p8_intel +Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1416,15 +1488,15 @@ Checking test 021 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 919.075070 -The maximum resident set size (KB) = 1605928 +The total amount of wall time = 918.945634 +The maximum resident set size (KB) = 1613532 -Test 021 cpld_control_pdlib_p8_intel PASS +Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_restart_pdlib_p8_intel -Checking test 022 cpld_restart_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_pdlib_p8_intel +Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1475,15 +1547,15 @@ Checking test 022 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 454.259455 -The maximum resident set size (KB) = 906716 +The total amount of wall time = 458.590579 +The maximum resident set size (KB) = 906044 -Test 022 cpld_restart_pdlib_p8_intel PASS +Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_mpi_pdlib_p8_intel -Checking test 023 cpld_mpi_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_mpi_pdlib_p8_intel +Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1546,15 +1618,15 @@ Checking test 023 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1065.406163 -The maximum resident set size (KB) = 1593220 +The total amount of wall time = 1066.977445 +The maximum resident set size (KB) = 1598064 -Test 023 cpld_mpi_pdlib_p8_intel PASS +Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/cpld_debug_pdlib_p8_intel -Checking test 024 cpld_debug_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_debug_pdlib_p8_intel +Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1605,15 +1677,15 @@ Checking test 024 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1487.807584 -The maximum resident set size (KB) = 1613300 +The total amount of wall time = 1497.015242 +The maximum resident set size (KB) = 1611696 -Test 024 cpld_debug_pdlib_p8_intel PASS +Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_flake_intel -Checking test 025 control_flake_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_flake_intel +Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1623,15 +1695,15 @@ Checking test 025 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.780162 -The maximum resident set size (KB) = 583572 +The total amount of wall time = 211.566484 +The maximum resident set size (KB) = 582792 -Test 025 control_flake_intel PASS +Test 026 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_intel -Checking test 026 control_CubedSphereGrid_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_CubedSphereGrid_intel +Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1657,15 +1729,15 @@ Checking test 026 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.095295 -The maximum resident set size (KB) = 528760 +The total amount of wall time = 130.506717 +The maximum resident set size (KB) = 527588 -Test 026 control_CubedSphereGrid_intel PASS +Test 027 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_parallel_intel -Checking test 027 control_CubedSphereGrid_parallel_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_CubedSphereGrid_parallel_intel +Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1679,15 +1751,15 @@ Checking test 027 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.186549 -The maximum resident set size (KB) = 532856 +The total amount of wall time = 135.699047 +The maximum resident set size (KB) = 532944 -Test 027 control_CubedSphereGrid_parallel_intel PASS +Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_latlon_intel -Checking test 028 control_latlon_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_latlon_intel +Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1697,15 +1769,15 @@ Checking test 028 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.564282 -The maximum resident set size (KB) = 530032 +The total amount of wall time = 131.603058 +The maximum resident set size (KB) = 531068 -Test 028 control_latlon_intel PASS +Test 029 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wrtGauss_netcdf_parallel_intel -Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wrtGauss_netcdf_parallel_intel +Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1715,15 +1787,61 @@ Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.767060 -The maximum resident set size (KB) = 530760 +The total amount of wall time = 134.082879 +The maximum resident set size (KB) = 528748 -Test 029 control_wrtGauss_netcdf_parallel_intel PASS +Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c48_intel -Checking test 030 control_c48_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c48_intel +Checking test 031 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 326.697294 +The maximum resident set size (KB) = 721808 + +Test 031 control_c48_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c48.v2.sfc_intel +Checking test 032 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1761,15 +1879,15 @@ Checking test 030 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.338413 -The maximum resident set size (KB) = 724984 +The total amount of wall time = 325.499105 +The maximum resident set size (KB) = 721312 -Test 030 control_c48_intel PASS +Test 032 control_c48.v2.sfc_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c192_intel -Checking test 031 control_c192_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c192_intel +Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1779,15 +1897,15 @@ Checking test 031 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.910476 -The maximum resident set size (KB) = 645512 +The total amount of wall time = 526.468920 +The maximum resident set size (KB) = 648336 -Test 031 control_c192_intel PASS +Test 033 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c384_intel -Checking test 032 control_c384_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c384_intel +Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1797,15 +1915,15 @@ Checking test 032 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 585.455960 -The maximum resident set size (KB) = 958932 +The total amount of wall time = 582.435855 +The maximum resident set size (KB) = 957984 -Test 032 control_c384_intel PASS +Test 034 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_c384gdas_intel -Checking test 033 control_c384gdas_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c384gdas_intel +Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1847,15 +1965,15 @@ Checking test 033 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 514.080449 -The maximum resident set size (KB) = 1099352 +The total amount of wall time = 513.009125 +The maximum resident set size (KB) = 1097440 -Test 033 control_c384gdas_intel PASS +Test 035 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_intel -Checking test 034 control_stochy_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_stochy_intel +Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1865,29 +1983,29 @@ Checking test 034 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.826710 -The maximum resident set size (KB) = 534364 +The total amount of wall time = 87.954792 +The maximum resident set size (KB) = 533280 -Test 034 control_stochy_intel PASS +Test 036 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_restart_intel -Checking test 035 control_stochy_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_stochy_restart_intel +Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.107201 -The maximum resident set size (KB) = 342464 +The total amount of wall time = 48.952973 +The maximum resident set size (KB) = 340568 -Test 035 control_stochy_restart_intel PASS +Test 037 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_lndp_intel -Checking test 036 control_lndp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_lndp_intel +Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1897,15 +2015,15 @@ Checking test 036 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 82.666921 -The maximum resident set size (KB) = 535384 +The total amount of wall time = 83.542029 +The maximum resident set size (KB) = 536572 -Test 036 control_lndp_intel PASS +Test 038 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_iovr4_intel -Checking test 037 control_iovr4_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_iovr4_intel +Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1919,15 +2037,15 @@ Checking test 037 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.611001 -The maximum resident set size (KB) = 531452 +The total amount of wall time = 132.061525 +The maximum resident set size (KB) = 528468 -Test 037 control_iovr4_intel PASS +Test 039 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_iovr5_intel -Checking test 038 control_iovr5_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_iovr5_intel +Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1941,15 +2059,69 @@ Checking test 038 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.499625 -The maximum resident set size (KB) = 529892 +The total amount of wall time = 132.793345 +The maximum resident set size (KB) = 533240 -Test 038 control_iovr5_intel PASS +Test 040 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_intel -Checking test 039 control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_intel +Checking test 041 control_p8_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 162.606135 +The maximum resident set size (KB) = 1513692 + +Test 041 control_p8_intel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8.v2.sfc_intel +Checking test 042 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1995,15 +2167,15 @@ Checking test 039 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.258658 -The maximum resident set size (KB) = 1509936 +The total amount of wall time = 161.930980 +The maximum resident set size (KB) = 1504324 -Test 039 control_p8_intel PASS +Test 042 control_p8.v2.sfc_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_ugwpv1_intel -Checking test 040 control_p8_ugwpv1_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_ugwpv1_intel +Checking test 043 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2049,15 +2221,15 @@ Checking test 040 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.062622 -The maximum resident set size (KB) = 1517816 +The total amount of wall time = 158.526786 +The maximum resident set size (KB) = 1515456 -Test 040 control_p8_ugwpv1_intel PASS +Test 043 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_p8_intel -Checking test 041 control_restart_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_restart_p8_intel +Checking test 044 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2095,15 +2267,15 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 88.562698 -The maximum resident set size (KB) = 696912 +The total amount of wall time = 89.217891 +The maximum resident set size (KB) = 696296 -Test 041 control_restart_p8_intel PASS +Test 044 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_noqr_p8_intel -Checking test 042 control_noqr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_noqr_p8_intel +Checking test 045 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2149,15 +2321,15 @@ Checking test 042 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 163.088783 -The maximum resident set size (KB) = 1494960 +The total amount of wall time = 162.662143 +The maximum resident set size (KB) = 1494272 -Test 042 control_noqr_p8_intel PASS +Test 045 control_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_noqr_p8_intel -Checking test 043 control_restart_noqr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_restart_noqr_p8_intel +Checking test 046 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2195,15 +2367,15 @@ Checking test 043 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 87.748683 -The maximum resident set size (KB) = 701076 +The total amount of wall time = 87.788536 +The maximum resident set size (KB) = 702940 -Test 043 control_restart_noqr_p8_intel PASS +Test 046 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_decomp_p8_intel -Checking test 044 control_decomp_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_decomp_p8_intel +Checking test 047 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2245,15 +2417,15 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.126433 -The maximum resident set size (KB) = 1504912 +The total amount of wall time = 166.564714 +The maximum resident set size (KB) = 1504172 -Test 044 control_decomp_p8_intel PASS +Test 047 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_2threads_p8_intel -Checking test 045 control_2threads_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_2threads_p8_intel +Checking test 048 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2295,15 +2467,15 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 142.625057 -The maximum resident set size (KB) = 1601128 +The total amount of wall time = 142.701476 +The maximum resident set size (KB) = 1602424 -Test 045 control_2threads_p8_intel PASS +Test 048 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_lndp_intel -Checking test 046 control_p8_lndp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_lndp_intel +Checking test 049 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2321,15 +2493,15 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 293.042555 -The maximum resident set size (KB) = 1516104 +The total amount of wall time = 292.520436 +The maximum resident set size (KB) = 1508008 -Test 046 control_p8_lndp_intel PASS +Test 049 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_rrtmgp_intel -Checking test 047 control_p8_rrtmgp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_rrtmgp_intel +Checking test 050 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2375,15 +2547,15 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.669024 -The maximum resident set size (KB) = 1564528 +The total amount of wall time = 217.793089 +The maximum resident set size (KB) = 1567856 -Test 047 control_p8_rrtmgp_intel PASS +Test 050 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_mynn_intel -Checking test 048 control_p8_mynn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_mynn_intel +Checking test 051 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2429,15 +2601,15 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.450126 -The maximum resident set size (KB) = 1520132 +The total amount of wall time = 165.217056 +The maximum resident set size (KB) = 1521124 -Test 048 control_p8_mynn_intel PASS +Test 051 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/merra2_thompson_intel -Checking test 049 merra2_thompson_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/merra2_thompson_intel +Checking test 052 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2483,15 +2655,15 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 195.793589 -The maximum resident set size (KB) = 1514916 +The total amount of wall time = 197.220348 +The maximum resident set size (KB) = 1519856 -Test 049 merra2_thompson_intel PASS +Test 052 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_control_intel -Checking test 050 regional_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_control_intel +Checking test 053 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2501,29 +2673,29 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.508638 -The maximum resident set size (KB) = 615916 +The total amount of wall time = 285.894292 +The maximum resident set size (KB) = 614844 -Test 050 regional_control_intel PASS +Test 053 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_restart_intel -Checking test 051 regional_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_restart_intel +Checking test 054 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.310571 -The maximum resident set size (KB) = 786256 +The total amount of wall time = 151.757245 +The maximum resident set size (KB) = 786440 -Test 051 regional_restart_intel PASS +Test 054 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_decomp_intel -Checking test 052 regional_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_decomp_intel +Checking test 055 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2533,15 +2705,15 @@ Checking test 052 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 299.761045 -The maximum resident set size (KB) = 613420 +The total amount of wall time = 296.356071 +The maximum resident set size (KB) = 613604 -Test 052 regional_decomp_intel PASS +Test 055 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_2threads_intel -Checking test 053 regional_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_2threads_intel +Checking test 056 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2551,30 +2723,30 @@ Checking test 053 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 170.609842 -The maximum resident set size (KB) = 670380 +The total amount of wall time = 168.510572 +The maximum resident set size (KB) = 669144 -Test 053 regional_2threads_intel PASS +Test 056 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_noquilt_intel -Checking test 054 regional_noquilt_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_noquilt_intel +Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 280.659718 -The maximum resident set size (KB) = 1154388 +The total amount of wall time = 280.431624 +The maximum resident set size (KB) = 1146660 -Test 054 regional_noquilt_intel PASS +Test 057 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_2dwrtdecomp_intel -Checking test 055 regional_2dwrtdecomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_2dwrtdecomp_intel +Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2584,15 +2756,15 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.874043 -The maximum resident set size (KB) = 614396 +The total amount of wall time = 284.081778 +The maximum resident set size (KB) = 616604 -Test 055 regional_2dwrtdecomp_intel PASS +Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_wofs_intel -Checking test 056 regional_wofs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_wofs_intel +Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2602,15 +2774,15 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 369.503872 -The maximum resident set size (KB) = 1587348 +The total amount of wall time = 365.892311 +The maximum resident set size (KB) = 1589036 -Test 056 regional_wofs_intel PASS +Test 059 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_control_intel -Checking test 057 regional_ifi_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_ifi_control_intel +Checking test 060 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2620,15 +2792,15 @@ Checking test 057 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 313.039247 -The maximum resident set size (KB) = 611364 +The total amount of wall time = 315.193017 +The maximum resident set size (KB) = 611708 -Test 057 regional_ifi_control_intel PASS +Test 060 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_decomp_intel -Checking test 058 regional_ifi_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_ifi_decomp_intel +Checking test 061 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2638,15 +2810,15 @@ Checking test 058 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 330.942547 -The maximum resident set size (KB) = 611812 +The total amount of wall time = 328.207228 +The maximum resident set size (KB) = 610408 -Test 058 regional_ifi_decomp_intel PASS +Test 061 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_ifi_2threads_intel -Checking test 059 regional_ifi_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_ifi_2threads_intel +Checking test 062 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2656,15 +2828,15 @@ Checking test 059 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 192.089542 -The maximum resident set size (KB) = 662932 +The total amount of wall time = 190.847621 +The maximum resident set size (KB) = 665472 -Test 059 regional_ifi_2threads_intel PASS +Test 062 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_intel -Checking test 060 rap_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_intel +Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2710,15 +2882,15 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.138886 -The maximum resident set size (KB) = 913248 +The total amount of wall time = 404.106838 +The maximum resident set size (KB) = 916848 -Test 060 rap_control_intel PASS +Test 063 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_spp_sppt_shum_skeb_intel +Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2728,15 +2900,15 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 236.969637 -The maximum resident set size (KB) = 1097868 +The total amount of wall time = 237.345734 +The maximum resident set size (KB) = 1095308 -Test 061 regional_spp_sppt_shum_skeb_intel PASS +Test 064 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_decomp_intel -Checking test 062 rap_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_decomp_intel +Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2782,15 +2954,15 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.512749 -The maximum resident set size (KB) = 917240 +The total amount of wall time = 419.203728 +The maximum resident set size (KB) = 917192 -Test 062 rap_decomp_intel PASS +Test 065 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_2threads_intel -Checking test 063 rap_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_2threads_intel +Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2836,15 +3008,15 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.005513 -The maximum resident set size (KB) = 1003584 +The total amount of wall time = 369.717529 +The maximum resident set size (KB) = 1006096 -Test 063 rap_2threads_intel PASS +Test 066 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_restart_intel -Checking test 064 rap_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_restart_intel +Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2882,15 +3054,15 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.777773 -The maximum resident set size (KB) = 784972 +The total amount of wall time = 207.708657 +The maximum resident set size (KB) = 790188 -Test 064 rap_restart_intel PASS +Test 067 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_intel +Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2936,15 +3108,15 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.731072 -The maximum resident set size (KB) = 916120 +The total amount of wall time = 404.544209 +The maximum resident set size (KB) = 917192 -Test 065 rap_sfcdiff_intel PASS +Test 068 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_decomp_intel +Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2990,15 +3162,15 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.257006 -The maximum resident set size (KB) = 911920 +The total amount of wall time = 419.428487 +The maximum resident set size (KB) = 912288 -Test 066 rap_sfcdiff_decomp_intel PASS +Test 069 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_restart_intel +Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3036,15 +3208,15 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 300.958488 -The maximum resident set size (KB) = 787680 +The total amount of wall time = 301.099393 +The maximum resident set size (KB) = 784304 -Test 067 rap_sfcdiff_restart_intel PASS +Test 070 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_intel +Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3090,15 +3262,15 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.763011 -The maximum resident set size (KB) = 914148 +The total amount of wall time = 206.023218 +The maximum resident set size (KB) = 909836 -Test 068 hrrr_control_intel PASS +Test 071 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_decomp_intel -Checking test 069 hrrr_control_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_decomp_intel +Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3144,15 +3316,15 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.358713 -The maximum resident set size (KB) = 914940 +The total amount of wall time = 210.897815 +The maximum resident set size (KB) = 909852 -Test 069 hrrr_control_decomp_intel PASS +Test 072 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_2threads_intel -Checking test 070 hrrr_control_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_2threads_intel +Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3198,29 +3370,29 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.544472 -The maximum resident set size (KB) = 990224 +The total amount of wall time = 185.593079 +The maximum resident set size (KB) = 991532 -Test 070 hrrr_control_2threads_intel PASS +Test 073 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_restart_intel -Checking test 071 hrrr_control_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_restart_intel +Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.796557 -The maximum resident set size (KB) = 740996 +The total amount of wall time = 108.594142 +The maximum resident set size (KB) = 739880 -Test 071 hrrr_control_restart_intel PASS +Test 074 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1beta_intel -Checking test 072 rrfs_v1beta_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1beta_intel +Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3266,15 +3438,15 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.457124 -The maximum resident set size (KB) = 908644 +The total amount of wall time = 396.159368 +The maximum resident set size (KB) = 904012 -Test 072 rrfs_v1beta_intel PASS +Test 075 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1nssl_intel -Checking test 073 rrfs_v1nssl_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1nssl_intel +Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3288,15 +3460,15 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 484.141435 -The maximum resident set size (KB) = 1874392 +The total amount of wall time = 486.098706 +The maximum resident set size (KB) = 1873116 -Test 073 rrfs_v1nssl_intel PASS +Test 076 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1nssl_nohailnoccn_intel -Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1nssl_nohailnoccn_intel +Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3310,15 +3482,15 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 467.963671 -The maximum resident set size (KB) = 1859952 +The total amount of wall time = 470.300053 +The maximum resident set size (KB) = 1860552 -Test 074 rrfs_v1nssl_nohailnoccn_intel PASS +Test 077 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmg_intel +Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3328,15 +3500,15 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 337.030978 -The maximum resident set size (KB) = 605044 +The total amount of wall time = 334.727684 +The maximum resident set size (KB) = 602080 -Test 075 control_csawmg_intel PASS +Test 078 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmgt_intel +Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3346,27 +3518,27 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 331.569254 -The maximum resident set size (KB) = 602236 +The total amount of wall time = 330.904537 +The maximum resident set size (KB) = 598200 -Test 076 control_csawmgt_intel PASS +Test 079 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wam_intel -Checking test 077 control_wam_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wam_intel +Checking test 080 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.845555 -The maximum resident set size (KB) = 275816 +The total amount of wall time = 119.102736 +The maximum resident set size (KB) = 275700 -Test 077 control_wam_intel PASS +Test 080 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_faster_intel -Checking test 078 control_p8_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_faster_intel +Checking test 081 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3412,15 +3584,15 @@ Checking test 078 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.988896 -The maximum resident set size (KB) = 1513516 +The total amount of wall time = 154.695585 +The maximum resident set size (KB) = 1503928 -Test 078 control_p8_faster_intel PASS +Test 081 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_control_faster_intel -Checking test 079 regional_control_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_control_faster_intel +Checking test 082 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3430,15 +3602,15 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 270.119822 -The maximum resident set size (KB) = 608720 +The total amount of wall time = 272.357924 +The maximum resident set size (KB) = 609172 -Test 079 regional_control_faster_intel PASS +Test 082 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_CubedSphereGrid_debug_intel -Checking test 080 control_CubedSphereGrid_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_CubedSphereGrid_debug_intel +Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3464,365 +3636,365 @@ Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 158.922650 -The maximum resident set size (KB) = 689640 +The total amount of wall time = 159.547367 +The maximum resident set size (KB) = 686444 -Test 080 control_CubedSphereGrid_debug_intel PASS +Test 083 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.655288 -The maximum resident set size (KB) = 692700 +The total amount of wall time = 158.132476 +The maximum resident set size (KB) = 690384 -Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_stochy_debug_intel -Checking test 082 control_stochy_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_stochy_debug_intel +Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.781081 -The maximum resident set size (KB) = 695120 +The total amount of wall time = 179.432921 +The maximum resident set size (KB) = 690204 -Test 082 control_stochy_debug_intel PASS +Test 085 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_lndp_debug_intel -Checking test 083 control_lndp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_lndp_debug_intel +Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.216264 -The maximum resident set size (KB) = 693880 +The total amount of wall time = 160.966593 +The maximum resident set size (KB) = 695080 -Test 083 control_lndp_debug_intel PASS +Test 086 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmg_debug_intel -Checking test 084 control_csawmg_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmg_debug_intel +Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.253070 -The maximum resident set size (KB) = 731792 +The total amount of wall time = 250.352772 +The maximum resident set size (KB) = 731336 -Test 084 control_csawmg_debug_intel PASS +Test 087 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_csawmgt_debug_intel -Checking test 085 control_csawmgt_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmgt_debug_intel +Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.667985 -The maximum resident set size (KB) = 734932 +The total amount of wall time = 245.639961 +The maximum resident set size (KB) = 730112 -Test 085 control_csawmgt_debug_intel PASS +Test 088 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_ras_debug_intel -Checking test 086 control_ras_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_ras_debug_intel +Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.945652 -The maximum resident set size (KB) = 705816 +The total amount of wall time = 163.770871 +The maximum resident set size (KB) = 702952 -Test 086 control_ras_debug_intel PASS +Test 089 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_diag_debug_intel -Checking test 087 control_diag_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_diag_debug_intel +Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.146433 -The maximum resident set size (KB) = 746532 +The total amount of wall time = 163.573966 +The maximum resident set size (KB) = 748196 -Test 087 control_diag_debug_intel PASS +Test 090 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_debug_p8_intel -Checking test 088 control_debug_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_debug_p8_intel +Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.858925 -The maximum resident set size (KB) = 1518788 +The total amount of wall time = 165.415445 +The maximum resident set size (KB) = 1518008 -Test 088 control_debug_p8_intel PASS +Test 091 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_debug_intel -Checking test 089 regional_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_debug_intel +Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1056.164286 -The maximum resident set size (KB) = 633436 +The total amount of wall time = 1048.638203 +The maximum resident set size (KB) = 628760 -Test 089 regional_debug_intel PASS +Test 092 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_debug_intel -Checking test 090 rap_control_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_debug_intel +Checking test 093 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.696433 -The maximum resident set size (KB) = 1078408 +The total amount of wall time = 299.351330 +The maximum resident set size (KB) = 1074116 -Test 090 rap_control_debug_intel PASS +Test 093 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_debug_intel -Checking test 091 hrrr_control_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_debug_intel +Checking test 094 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.066615 -The maximum resident set size (KB) = 1075824 +The total amount of wall time = 292.314943 +The maximum resident set size (KB) = 1070824 -Test 091 hrrr_control_debug_intel PASS +Test 094 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_gf_debug_intel -Checking test 092 hrrr_gf_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_gf_debug_intel +Checking test 095 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.503922 -The maximum resident set size (KB) = 1073860 +The total amount of wall time = 297.092787 +The maximum resident set size (KB) = 1068524 -Test 092 hrrr_gf_debug_intel PASS +Test 095 hrrr_gf_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_c3_debug_intel -Checking test 093 hrrr_c3_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_c3_debug_intel +Checking test 096 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.989046 -The maximum resident set size (KB) = 1071112 +The total amount of wall time = 298.571500 +The maximum resident set size (KB) = 1069692 -Test 093 hrrr_c3_debug_intel PASS +Test 096 hrrr_c3_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_unified_drag_suite_debug_intel -Checking test 094 rap_unified_drag_suite_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_unified_drag_suite_debug_intel +Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.690383 -The maximum resident set size (KB) = 1075004 +The total amount of wall time = 299.695056 +The maximum resident set size (KB) = 1073052 -Test 094 rap_unified_drag_suite_debug_intel PASS +Test 097 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_diag_debug_intel -Checking test 095 rap_diag_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_diag_debug_intel +Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.588087 -The maximum resident set size (KB) = 1162372 +The total amount of wall time = 311.581044 +The maximum resident set size (KB) = 1156364 -Test 095 rap_diag_debug_intel PASS +Test 098 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_cires_ugwp_debug_intel -Checking test 096 rap_cires_ugwp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_cires_ugwp_debug_intel +Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.008528 -The maximum resident set size (KB) = 1077276 +The total amount of wall time = 311.015047 +The maximum resident set size (KB) = 1076232 -Test 096 rap_cires_ugwp_debug_intel PASS +Test 099 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_unified_ugwp_debug_intel -Checking test 097 rap_unified_ugwp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_unified_ugwp_debug_intel +Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.047713 -The maximum resident set size (KB) = 1075408 +The total amount of wall time = 305.058345 +The maximum resident set size (KB) = 1077008 -Test 097 rap_unified_ugwp_debug_intel PASS +Test 100 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_lndp_debug_intel -Checking test 098 rap_lndp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_lndp_debug_intel +Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.973018 -The maximum resident set size (KB) = 1080452 +The total amount of wall time = 301.172556 +The maximum resident set size (KB) = 1077216 -Test 098 rap_lndp_debug_intel PASS +Test 101 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_progcld_thompson_debug_intel -Checking test 099 rap_progcld_thompson_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_progcld_thompson_debug_intel +Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.370856 -The maximum resident set size (KB) = 1075492 +The total amount of wall time = 299.463674 +The maximum resident set size (KB) = 1074532 -Test 099 rap_progcld_thompson_debug_intel PASS +Test 102 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_noah_debug_intel -Checking test 100 rap_noah_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_noah_debug_intel +Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.185607 -The maximum resident set size (KB) = 1077912 +The total amount of wall time = 293.108367 +The maximum resident set size (KB) = 1071552 -Test 100 rap_noah_debug_intel PASS +Test 103 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_sfcdiff_debug_intel -Checking test 101 rap_sfcdiff_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_debug_intel +Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.663941 -The maximum resident set size (KB) = 1079072 +The total amount of wall time = 298.792364 +The maximum resident set size (KB) = 1075204 -Test 101 rap_sfcdiff_debug_intel PASS +Test 104 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.704928 -The maximum resident set size (KB) = 1069828 +The total amount of wall time = 489.683905 +The maximum resident set size (KB) = 1073636 -Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rrfs_v1beta_debug_intel -Checking test 103 rrfs_v1beta_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1beta_debug_intel +Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.609134 -The maximum resident set size (KB) = 1074308 +The total amount of wall time = 294.927838 +The maximum resident set size (KB) = 1070464 -Test 103 rrfs_v1beta_debug_intel PASS +Test 106 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_clm_lake_debug_intel -Checking test 104 rap_clm_lake_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_clm_lake_debug_intel +Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 349.089494 -The maximum resident set size (KB) = 1076264 +The total amount of wall time = 348.822359 +The maximum resident set size (KB) = 1073508 -Test 104 rap_clm_lake_debug_intel PASS +Test 107 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_flake_debug_intel -Checking test 105 rap_flake_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_flake_debug_intel +Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.022918 -The maximum resident set size (KB) = 1078428 +The total amount of wall time = 298.888908 +The maximum resident set size (KB) = 1071432 -Test 105 rap_flake_debug_intel PASS +Test 108 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/gnv1_c96_no_nest_debug_intel -Checking test 106 gnv1_c96_no_nest_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/gnv1_c96_no_nest_debug_intel +Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3862,27 +4034,27 @@ Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 522.932010 -The maximum resident set size (KB) = 1080516 +The total amount of wall time = 522.646726 +The maximum resident set size (KB) = 1085612 -Test 106 gnv1_c96_no_nest_debug_intel PASS +Test 109 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_wam_debug_intel -Checking test 107 control_wam_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wam_debug_intel +Checking test 110 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.766467 -The maximum resident set size (KB) = 300764 +The total amount of wall time = 299.216813 +The maximum resident set size (KB) = 303164 -Test 107 control_wam_debug_intel PASS +Test 110 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3892,15 +4064,15 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 225.467797 -The maximum resident set size (KB) = 959480 +The total amount of wall time = 226.410362 +The maximum resident set size (KB) = 959120 -Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn32_phy32_intel -Checking test 109 rap_control_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_dyn32_phy32_intel +Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3946,15 +4118,15 @@ Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 334.325928 -The maximum resident set size (KB) = 796248 +The total amount of wall time = 334.849492 +The maximum resident set size (KB) = 798660 -Test 109 rap_control_dyn32_phy32_intel PASS +Test 112 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_dyn32_phy32_intel -Checking test 110 hrrr_control_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_dyn32_phy32_intel +Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4000,15 +4172,15 @@ Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.538101 -The maximum resident set size (KB) = 789924 +The total amount of wall time = 175.740207 +The maximum resident set size (KB) = 788408 -Test 110 hrrr_control_dyn32_phy32_intel PASS +Test 113 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_2threads_dyn32_phy32_intel -Checking test 111 rap_2threads_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_2threads_dyn32_phy32_intel +Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4054,15 +4226,15 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.704982 -The maximum resident set size (KB) = 859796 +The total amount of wall time = 307.187236 +The maximum resident set size (KB) = 858896 -Test 111 rap_2threads_dyn32_phy32_intel PASS +Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_2threads_dyn32_phy32_intel -Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_2threads_dyn32_phy32_intel +Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4108,15 +4280,15 @@ Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.416675 -The maximum resident set size (KB) = 844788 +The total amount of wall time = 158.846663 +The maximum resident set size (KB) = 845996 -Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_decomp_dyn32_phy32_intel -Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_decomp_dyn32_phy32_intel +Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4162,15 +4334,15 @@ Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.418929 -The maximum resident set size (KB) = 790492 +The total amount of wall time = 183.594503 +The maximum resident set size (KB) = 791060 -Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_restart_dyn32_phy32_intel -Checking test 114 rap_restart_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_restart_dyn32_phy32_intel +Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4208,29 +4380,29 @@ Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.760111 -The maximum resident set size (KB) = 692108 +The total amount of wall time = 249.987743 +The maximum resident set size (KB) = 693688 -Test 114 rap_restart_dyn32_phy32_intel PASS +Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_restart_dyn32_phy32_intel -Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_restart_dyn32_phy32_intel +Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.537859 -The maximum resident set size (KB) = 675180 +The total amount of wall time = 92.935159 +The maximum resident set size (KB) = 674808 -Test 115 hrrr_control_restart_dyn32_phy32_intel PASS +Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_control_intel -Checking test 116 conus13km_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_control_intel +Checking test 119 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4245,41 +4417,41 @@ Checking test 116 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 116.008762 -The maximum resident set size (KB) = 1005140 +The total amount of wall time = 118.636314 +The maximum resident set size (KB) = 1004424 -Test 116 conus13km_control_intel PASS +Test 119 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_2threads_intel -Checking test 117 conus13km_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_2threads_intel +Checking test 120 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 56.438153 -The maximum resident set size (KB) = 1009568 +The total amount of wall time = 58.921977 +The maximum resident set size (KB) = 1010408 -Test 117 conus13km_2threads_intel PASS +Test 120 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_restart_mismatch_intel -Checking test 118 conus13km_restart_mismatch_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_restart_mismatch_intel +Checking test 121 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.462995 -The maximum resident set size (KB) = 882312 +The total amount of wall time = 70.722686 +The maximum resident set size (KB) = 883156 -Test 118 conus13km_restart_mismatch_intel PASS +Test 121 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn64_phy32_intel -Checking test 119 rap_control_dyn64_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_dyn64_phy32_intel +Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4325,43 +4497,43 @@ Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.709562 -The maximum resident set size (KB) = 819984 +The total amount of wall time = 228.241299 +The maximum resident set size (KB) = 818668 -Test 119 rap_control_dyn64_phy32_intel PASS +Test 122 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_debug_dyn32_phy32_intel -Checking test 120 rap_control_debug_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_debug_dyn32_phy32_intel +Checking test 123 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.419514 -The maximum resident set size (KB) = 957304 +The total amount of wall time = 291.226782 +The maximum resident set size (KB) = 951232 -Test 120 rap_control_debug_dyn32_phy32_intel PASS +Test 123 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hrrr_control_debug_dyn32_phy32_intel -Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_debug_dyn32_phy32_intel +Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.431568 -The maximum resident set size (KB) = 954288 +The total amount of wall time = 284.756499 +The maximum resident set size (KB) = 953736 -Test 121 hrrr_control_debug_dyn32_phy32_intel PASS +Test 124 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_intel -Checking test 122 conus13km_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_debug_intel +Checking test 125 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4374,15 +4546,15 @@ Checking test 122 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 887.234514 -The maximum resident set size (KB) = 1038840 +The total amount of wall time = 891.005256 +The maximum resident set size (KB) = 1037844 -Test 122 conus13km_debug_intel PASS +Test 125 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_qr_intel -Checking test 123 conus13km_debug_qr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_debug_qr_intel +Checking test 126 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4395,82 +4567,82 @@ Checking test 123 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 893.774263 -The maximum resident set size (KB) = 708708 +The total amount of wall time = 896.889870 +The maximum resident set size (KB) = 709116 -Test 123 conus13km_debug_qr_intel PASS +Test 126 conus13km_debug_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_debug_2threads_intel -Checking test 124 conus13km_debug_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_debug_2threads_intel +Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 505.890413 -The maximum resident set size (KB) = 1042936 +The total amount of wall time = 510.427349 +The maximum resident set size (KB) = 1039900 -Test 124 conus13km_debug_2threads_intel PASS +Test 127 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/conus13km_radar_tten_debug_intel -Checking test 125 conus13km_radar_tten_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_radar_tten_debug_intel +Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 889.920924 -The maximum resident set size (KB) = 1105268 +The total amount of wall time = 891.369137 +The maximum resident set size (KB) = 1107040 -Test 125 conus13km_radar_tten_debug_intel PASS +Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/rap_control_dyn64_phy32_debug_intel -Checking test 126 rap_control_dyn64_phy32_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_dyn64_phy32_debug_intel +Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.755630 -The maximum resident set size (KB) = 974180 +The total amount of wall time = 296.333393 +The maximum resident set size (KB) = 974484 -Test 126 rap_control_dyn64_phy32_debug_intel PASS +Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_intel -Checking test 127 hafs_regional_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_intel +Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 342.919889 -The maximum resident set size (KB) = 622156 +The total amount of wall time = 345.057829 +The maximum resident set size (KB) = 619840 -Test 127 hafs_regional_atm_intel PASS +Test 130 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 312.742571 -The maximum resident set size (KB) = 965900 +The total amount of wall time = 309.026567 +The maximum resident set size (KB) = 974140 -Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_ocn_intel -Checking test 129 hafs_regional_atm_ocn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_ocn_intel +Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4478,15 +4650,15 @@ Checking test 129 hafs_regional_atm_ocn_intel 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 = 422.200657 -The maximum resident set size (KB) = 666244 +The total amount of wall time = 422.972057 +The maximum resident set size (KB) = 668228 -Test 129 hafs_regional_atm_ocn_intel PASS +Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_wav_intel -Checking test 130 hafs_regional_atm_wav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_wav_intel +Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4494,15 +4666,15 @@ Checking test 130 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 749.518806 -The maximum resident set size (KB) = 692064 +The total amount of wall time = 746.150042 +The maximum resident set size (KB) = 690508 -Test 130 hafs_regional_atm_wav_intel PASS +Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_atm_ocn_wav_intel -Checking test 131 hafs_regional_atm_ocn_wav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_ocn_wav_intel +Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4512,15 +4684,15 @@ Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 937.087321 -The maximum resident set size (KB) = 708020 +The total amount of wall time = 940.427292 +The maximum resident set size (KB) = 709616 -Test 131 hafs_regional_atm_ocn_wav_intel PASS +Test 134 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_1nest_atm_intel -Checking test 132 hafs_regional_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_1nest_atm_intel +Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4541,15 +4713,15 @@ Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 314.768684 -The maximum resident set size (KB) = 390416 +The total amount of wall time = 315.417549 +The maximum resident set size (KB) = 388968 -Test 132 hafs_regional_1nest_atm_intel PASS +Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_telescopic_2nests_atm_intel -Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_telescopic_2nests_atm_intel +Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4557,15 +4729,15 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.065815 -The maximum resident set size (KB) = 412916 +The total amount of wall time = 402.760453 +The maximum resident set size (KB) = 410284 -Test 133 hafs_regional_telescopic_2nests_atm_intel PASS +Test 136 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_1nest_atm_intel -Checking test 134 hafs_global_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_global_1nest_atm_intel +Checking test 137 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4611,15 +4783,15 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 169.616739 -The maximum resident set size (KB) = 285644 +The total amount of wall time = 169.981347 +The maximum resident set size (KB) = 286496 -Test 134 hafs_global_1nest_atm_intel PASS +Test 137 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_multiple_4nests_atm_intel -Checking test 135 hafs_global_multiple_4nests_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_global_multiple_4nests_atm_intel +Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4700,15 +4872,15 @@ Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 482.605167 -The maximum resident set size (KB) = 371928 +The total amount of wall time = 483.972254 +The maximum resident set size (KB) = 372772 -Test 135 hafs_global_multiple_4nests_atm_intel PASS +Test 138 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_specified_moving_1nest_atm_intel -Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_specified_moving_1nest_atm_intel +Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4716,15 +4888,15 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.568480 -The maximum resident set size (KB) = 417700 +The total amount of wall time = 218.645173 +The maximum resident set size (KB) = 417664 -Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4745,15 +4917,15 @@ Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 204.435913 -The maximum resident set size (KB) = 417832 +The total amount of wall time = 205.212827 +The maximum resident set size (KB) = 420916 -Test 137 hafs_regional_storm_following_1nest_atm_intel PASS +Test 140 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4761,29 +4933,29 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 261.272901 -The maximum resident set size (KB) = 497452 +The total amount of wall time = 263.241550 +The maximum resident set size (KB) = 492652 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_global_storm_following_1nest_atm_intel -Checking test 139 hafs_global_storm_following_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_global_storm_following_1nest_atm_intel +Checking test 142 hafs_global_storm_following_1nest_atm_intel 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 = 90.948722 -The maximum resident set size (KB) = 319568 +The total amount of wall time = 90.553352 +The maximum resident set size (KB) = 313472 -Test 139 hafs_global_storm_following_1nest_atm_intel PASS +Test 142 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/gnv1_nested_intel -Checking test 140 gnv1_nested_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/gnv1_nested_intel +Checking test 143 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4829,29 +5001,29 @@ Checking test 140 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 238.829676 -The maximum resident set size (KB) = 680964 +The total amount of wall time = 238.797672 +The maximum resident set size (KB) = 679868 -Test 140 gnv1_nested_intel PASS +Test 143 gnv1_nested_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 824.372311 -The maximum resident set size (KB) = 506752 +The total amount of wall time = 818.481184 +The maximum resident set size (KB) = 504868 -Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4861,15 +5033,15 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 515.534337 -The maximum resident set size (KB) = 530108 +The total amount of wall time = 520.554537 +The maximum resident set size (KB) = 530544 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4879,179 +5051,179 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 521.697420 -The maximum resident set size (KB) = 715464 +The total amount of wall time = 523.618143 +The maximum resident set size (KB) = 716844 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc ............ALT CHECK......NOT OK + Comparing sfcf003.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f003.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f003.nc ............ALT CHECK......NOT OK + Comparing ocn_2020_08_25_15.nc ............ALT CHECK......NOT OK + Comparing 20200825.150000.out_grd.ww3 .........NOT OK + Comparing 20200825.150000.out_pnt.ww3 .........NOT OK -The total amount of wall time = 388.309954 -The maximum resident set size (KB) = 722468 +The total amount of wall time = 385.452482 +The maximum resident set size (KB) = 708548 -Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_docn_intel -Checking test 145 hafs_regional_docn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_docn_intel +Checking test 148 hafs_regional_docn_intel 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 -The total amount of wall time = 392.037411 -The maximum resident set size (KB) = 655452 +The total amount of wall time = 392.130628 +The maximum resident set size (KB) = 653400 -Test 145 hafs_regional_docn_intel PASS +Test 148 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_docn_oisst_intel -Checking test 146 hafs_regional_docn_oisst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_docn_oisst_intel +Checking test 149 hafs_regional_docn_oisst_intel 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 -The total amount of wall time = 392.429768 -The maximum resident set size (KB) = 637520 +The total amount of wall time = 395.195959 +The maximum resident set size (KB) = 637620 -Test 146 hafs_regional_docn_oisst_intel PASS +Test 149 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/hafs_regional_datm_cdeps_intel -Checking test 147 hafs_regional_datm_cdeps_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_datm_cdeps_intel +Checking test 150 hafs_regional_datm_cdeps_intel 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 = 946.424113 -The maximum resident set size (KB) = 883368 +The total amount of wall time = 946.926120 +The maximum resident set size (KB) = 883084 -Test 147 hafs_regional_datm_cdeps_intel PASS +Test 150 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_cfsr_intel -Checking test 148 datm_cdeps_control_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_control_cfsr_intel +Checking test 151 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.647063 -The maximum resident set size (KB) = 750008 +The total amount of wall time = 142.551157 +The maximum resident set size (KB) = 747292 -Test 148 datm_cdeps_control_cfsr_intel PASS +Test 151 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_restart_cfsr_intel -Checking test 149 datm_cdeps_restart_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_restart_cfsr_intel +Checking test 152 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.684300 -The maximum resident set size (KB) = 736608 +The total amount of wall time = 87.305437 +The maximum resident set size (KB) = 738340 -Test 149 datm_cdeps_restart_cfsr_intel PASS +Test 152 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_gefs_intel -Checking test 150 datm_cdeps_control_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_control_gefs_intel +Checking test 153 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.070231 -The maximum resident set size (KB) = 632468 +The total amount of wall time = 133.729535 +The maximum resident set size (KB) = 631028 -Test 150 datm_cdeps_control_gefs_intel PASS +Test 153 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_iau_gefs_intel -Checking test 151 datm_cdeps_iau_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_iau_gefs_intel +Checking test 154 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.412933 -The maximum resident set size (KB) = 628616 +The total amount of wall time = 136.806694 +The maximum resident set size (KB) = 631376 -Test 151 datm_cdeps_iau_gefs_intel PASS +Test 154 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_stochy_gefs_intel -Checking test 152 datm_cdeps_stochy_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_stochy_gefs_intel +Checking test 155 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.444412 -The maximum resident set size (KB) = 629604 +The total amount of wall time = 137.055231 +The maximum resident set size (KB) = 628460 -Test 152 datm_cdeps_stochy_gefs_intel PASS +Test 155 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_ciceC_cfsr_intel -Checking test 153 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_ciceC_cfsr_intel +Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.988660 -The maximum resident set size (KB) = 752280 +The total amount of wall time = 142.502149 +The maximum resident set size (KB) = 748320 -Test 153 datm_cdeps_ciceC_cfsr_intel PASS +Test 156 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_bulk_cfsr_intel -Checking test 154 datm_cdeps_bulk_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_bulk_cfsr_intel +Checking test 157 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.718230 -The maximum resident set size (KB) = 735732 +The total amount of wall time = 143.333438 +The maximum resident set size (KB) = 751576 -Test 154 datm_cdeps_bulk_cfsr_intel PASS +Test 157 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_bulk_gefs_intel -Checking test 155 datm_cdeps_bulk_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_bulk_gefs_intel +Checking test 158 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.507638 -The maximum resident set size (KB) = 629500 +The total amount of wall time = 134.090684 +The maximum resident set size (KB) = 629732 -Test 155 datm_cdeps_bulk_gefs_intel PASS +Test 158 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_mx025_cfsr_intel -Checking test 156 datm_cdeps_mx025_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_mx025_cfsr_intel +Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5059,15 +5231,15 @@ Checking test 156 datm_cdeps_mx025_cfsr_intel 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 = 339.143906 -The maximum resident set size (KB) = 597496 +The total amount of wall time = 339.858943 +The maximum resident set size (KB) = 595332 -Test 156 datm_cdeps_mx025_cfsr_intel PASS +Test 159 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_mx025_gefs_intel -Checking test 157 datm_cdeps_mx025_gefs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_mx025_gefs_intel +Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5075,65 +5247,65 @@ Checking test 157 datm_cdeps_mx025_gefs_intel 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 = 337.336971 -The maximum resident set size (KB) = 581108 +The total amount of wall time = 335.268251 +The maximum resident set size (KB) = 575904 -Test 157 datm_cdeps_mx025_gefs_intel PASS +Test 160 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_multiple_files_cfsr_intel -Checking test 158 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_multiple_files_cfsr_intel +Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.808706 -The maximum resident set size (KB) = 750892 +The total amount of wall time = 142.545273 +The maximum resident set size (KB) = 735280 -Test 158 datm_cdeps_multiple_files_cfsr_intel PASS +Test 161 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_3072x1536_cfsr_intel -Checking test 159 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_3072x1536_cfsr_intel +Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 261.856127 -The maximum resident set size (KB) = 2005288 +The total amount of wall time = 260.863159 +The maximum resident set size (KB) = 2006856 -Test 159 datm_cdeps_3072x1536_cfsr_intel PASS +Test 162 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_gfs_intel -Checking test 160 datm_cdeps_gfs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_gfs_intel +Checking test 163 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 260.653816 -The maximum resident set size (KB) = 2005220 +The total amount of wall time = 261.115711 +The maximum resident set size (KB) = 2006300 -Test 160 datm_cdeps_gfs_intel PASS +Test 163 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_control_cfsr_faster_intel -Checking test 161 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_control_cfsr_faster_intel +Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.540144 -The maximum resident set size (KB) = 751576 +The total amount of wall time = 142.205870 +The maximum resident set size (KB) = 751560 -Test 161 datm_cdeps_control_cfsr_faster_intel PASS +Test 164 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_gswp3_intel -Checking test 162 datm_cdeps_lnd_gswp3_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_lnd_gswp3_intel +Checking test 165 datm_cdeps_lnd_gswp3_intel 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 @@ -5141,15 +5313,15 @@ Checking test 162 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 59.598464 -The maximum resident set size (KB) = 219744 +The total amount of wall time = 58.928734 +The maximum resident set size (KB) = 226272 -Test 162 datm_cdeps_lnd_gswp3_intel PASS +Test 165 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_era5_intel -Checking test 163 datm_cdeps_lnd_era5_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_lnd_era5_intel +Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5157,15 +5329,15 @@ Checking test 163 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 60.516957 -The maximum resident set size (KB) = 369164 +The total amount of wall time = 60.245650 +The maximum resident set size (KB) = 366796 -Test 163 datm_cdeps_lnd_era5_intel PASS +Test 166 datm_cdeps_lnd_era5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/datm_cdeps_lnd_era5_rst_intel -Checking test 164 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_lnd_era5_rst_intel +Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5173,15 +5345,15 @@ Checking test 164 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 41.176466 -The maximum resident set size (KB) = 367880 +The total amount of wall time = 40.929526 +The maximum resident set size (KB) = 371600 -Test 164 datm_cdeps_lnd_era5_rst_intel PASS +Test 167 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_atmlnd_sbs_intel -Checking test 165 control_p8_atmlnd_sbs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_atmlnd_sbs_intel +Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5269,15 +5441,15 @@ Checking test 165 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 272.686960 -The maximum resident set size (KB) = 1547448 +The total amount of wall time = 271.388703 +The maximum resident set size (KB) = 1544112 -Test 165 control_p8_atmlnd_sbs_intel PASS +Test 168 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_p8_atmlnd_intel -Checking test 166 control_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_atmlnd_intel +Checking test 169 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5365,15 +5537,15 @@ Checking test 166 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 272.289955 -The maximum resident set size (KB) = 1546428 +The total amount of wall time = 274.487122 +The maximum resident set size (KB) = 1546464 -Test 166 control_p8_atmlnd_intel PASS +Test 169 control_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_restart_p8_atmlnd_intel -Checking test 167 control_restart_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_restart_p8_atmlnd_intel +Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5393,15 +5565,15 @@ Checking test 167 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 154.294531 -The maximum resident set size (KB) = 747308 +The total amount of wall time = 152.677934 +The maximum resident set size (KB) = 746268 -Test 167 control_restart_p8_atmlnd_intel PASS +Test 170 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmwav_control_noaero_p8_intel -Checking test 168 atmwav_control_noaero_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmwav_control_noaero_p8_intel +Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5443,15 +5615,15 @@ Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 99.131553 -The maximum resident set size (KB) = 1545812 +The total amount of wall time = 99.134560 +The maximum resident set size (KB) = 1544784 -Test 168 atmwav_control_noaero_p8_intel PASS +Test 171 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/control_atmwav_intel -Checking test 169 control_atmwav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_atmwav_intel +Checking test 172 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5494,15 +5666,15 @@ Checking test 169 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.660176 -The maximum resident set size (KB) = 544380 +The total amount of wall time = 90.608426 +The maximum resident set size (KB) = 543256 -Test 169 control_atmwav_intel PASS +Test 172 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_intel -Checking test 170 atmaero_control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmaero_control_p8_intel +Checking test 173 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5545,15 +5717,15 @@ Checking test 170 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.744608 -The maximum resident set size (KB) = 2850920 +The total amount of wall time = 237.815618 +The maximum resident set size (KB) = 2855384 -Test 170 atmaero_control_p8_intel PASS +Test 173 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_rad_intel -Checking test 171 atmaero_control_p8_rad_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmaero_control_p8_rad_intel +Checking test 174 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5596,15 +5768,15 @@ Checking test 171 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 274.998914 -The maximum resident set size (KB) = 2913224 +The total amount of wall time = 276.427475 +The maximum resident set size (KB) = 2912700 -Test 171 atmaero_control_p8_rad_intel PASS +Test 174 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/atmaero_control_p8_rad_micro_intel -Checking test 172 atmaero_control_p8_rad_micro_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmaero_control_p8_rad_micro_intel +Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5647,15 +5819,15 @@ Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 289.954693 -The maximum resident set size (KB) = 2926824 +The total amount of wall time = 289.621495 +The maximum resident set size (KB) = 2927092 -Test 172 atmaero_control_p8_rad_micro_intel PASS +Test 175 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170906/regional_atmaq_debug_intel -Checking test 173 regional_atmaq_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_atmaq_debug_intel +Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5668,12 +5840,54 @@ Checking test 173 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1304.424649 -The maximum resident set size (KB) = 4422396 +The total amount of wall time = 1319.758883 +The maximum resident set size (KB) = 4442784 + +Test 176 regional_atmaq_debug_intel PASS + +FAILED TESTS: +147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 147 failed in run_test + +REGRESSION TEST FAILED +Wed Feb 7 18:43:22 UTC 2024 +Elapsed time: 02h:06m:29s. Have a nice day! +Wed Feb 7 19:47:00 UTC 2024 +Start Regression test + +Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafs_mom6w_intel elapsed time 579 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17567/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + +The total amount of wall time = 386.676313 +The maximum resident set size (KB) = 709884 -Test 173 regional_atmaq_debug_intel PASS +Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 2 17:01:10 UTC 2024 -Elapsed time: 02h:08m:07s. Have a nice day! +Wed Feb 7 20:06:34 UTC 2024 +Elapsed time: 00h:19m:36s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 3ee4b7f125..e8dfb6926b 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,76 +1,76 @@ -Mon Feb 5 16:04:55 UTC 2024 +Tue Feb 6 04:52:19 UTC 2024 Start Regression test -Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing UFSWM Hash: c6e88537f39a3208a60339c56873ebecd5fbeeb5 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 268 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 202 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 214 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 212 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 299 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 547 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 548 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 591 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 591 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 185 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 353 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 807 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 372 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 578 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 626 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 203 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 617 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 612 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 653 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 531 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 814 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 593 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 228 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 643 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 129 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 841 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 910 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 684 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_debug_dyn32_intel elapsed time 259 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 208 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 212 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 303 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 611 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 604 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 204 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 577 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 664 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 600 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 186 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 351 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 809 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 365 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 622 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 658 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 216 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 656 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 654 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 705 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 644 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 827 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 645 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 693 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 890 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 722 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2swa_32bit_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 935 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 950 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 835 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 681 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 102 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 142 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 248 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 967 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 840 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 722 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 107 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel 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 wam_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.958031 - 0: The maximum resident set size (KB) = 3148040 + 0: The total amount of wall time = 312.689866 + 0: The maximum resident set size (KB) = 3157832 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 955.431620 - 0: The maximum resident set size (KB) = 1738216 + 0: The total amount of wall time = 961.102609 + 0: The maximum resident set size (KB) = 1713704 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 997.624771 - 0: The maximum resident set size (KB) = 2008572 + 0: The total amount of wall time = 1006.924244 + 0: The maximum resident set size (KB) = 2015180 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.245137 - 0: The maximum resident set size (KB) = 1111460 + 0: The total amount of wall time = 451.711578 + 0: The maximum resident set size (KB) = 1080404 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1089.550810 - 0: The maximum resident set size (KB) = 1586264 + 0: The total amount of wall time = 1087.839118 + 0: The maximum resident set size (KB) = 1630124 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1334.036282 - 0: The maximum resident set size (KB) = 1654620 + 0: The total amount of wall time = 1356.339183 + 0: The maximum resident set size (KB) = 1686736 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,15 +521,87 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.798029 - 0: The maximum resident set size (KB) = 3151272 + 0: The total amount of wall time = 333.310820 + 0: The maximum resident set size (KB) = 3181608 Test 007 cpld_control_p8_intel PASS +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 327.270874 + 0: The maximum resident set size (KB) = 3188588 + +Test 008 cpld_control_p8.v2.sfc_intel PASS + + baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -581,15 +653,15 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 186.711328 - 0: The maximum resident set size (KB) = 3243344 + 0: The total amount of wall time = 188.037844 + 0: The maximum resident set size (KB) = 3235936 -Test 008 cpld_restart_p8_intel PASS +Test 009 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -653,15 +725,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.090815 - 0: The maximum resident set size (KB) = 3201132 + 0: The total amount of wall time = 333.213598 + 0: The maximum resident set size (KB) = 3179200 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -713,15 +785,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.782271 - 0: The maximum resident set size (KB) = 3244492 + 0: The total amount of wall time = 192.493772 + 0: The maximum resident set size (KB) = 3220576 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_2threads_p8_intel +Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -773,15 +845,15 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.343453 - 0: The maximum resident set size (KB) = 3541188 + 0: The total amount of wall time = 315.834743 + 0: The maximum resident set size (KB) = 3536996 -Test 011 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_decomp_p8_intel +Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -833,15 +905,15 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.672786 - 0: The maximum resident set size (KB) = 3166428 + 0: The total amount of wall time = 336.789702 + 0: The maximum resident set size (KB) = 3181048 -Test 012 cpld_decomp_p8_intel PASS +Test 013 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_mpi_p8_intel +Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -893,15 +965,15 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 267.054668 - 0: The maximum resident set size (KB) = 3068836 + 0: The total amount of wall time = 277.431286 + 0: The maximum resident set size (KB) = 3033688 -Test 013 cpld_mpi_p8_intel PASS +Test 014 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_ciceC_p8_intel +Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -965,15 +1037,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.408685 - 0: The maximum resident set size (KB) = 3142256 + 0: The total amount of wall time = 336.864487 + 0: The maximum resident set size (KB) = 3189928 -Test 014 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_c192_p8_intel +Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1025,15 +1097,15 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 563.472471 - 0: The maximum resident set size (KB) = 3317316 + 0: The total amount of wall time = 577.226191 + 0: The maximum resident set size (KB) = 3334088 -Test 015 cpld_control_c192_p8_intel PASS +Test 016 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_c192_p8_intel +Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1085,15 +1157,15 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 353.027886 - 0: The maximum resident set size (KB) = 3602412 + 0: The total amount of wall time = 348.016772 + 0: The maximum resident set size (KB) = 3565708 -Test 016 cpld_restart_c192_p8_intel PASS +Test 017 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_bmark_p8_intel -Checking test 017 cpld_bmark_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_bmark_p8_intel +Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1140,15 +1212,15 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 565.328478 - 0: The maximum resident set size (KB) = 4095312 + 0: The total amount of wall time = 574.197907 + 0: The maximum resident set size (KB) = 4101840 -Test 017 cpld_bmark_p8_intel PASS +Test 018 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_bmark_p8_intel -Checking test 018 cpld_restart_bmark_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_bmark_p8_intel +Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1195,15 +1267,15 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 367.552647 - 0: The maximum resident set size (KB) = 4347368 + 0: The total amount of wall time = 395.729746 + 0: The maximum resident set size (KB) = 4346864 -Test 018 cpld_restart_bmark_p8_intel PASS +Test 019 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_s2sa_p8_intel -Checking test 019 cpld_s2sa_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_s2sa_p8_intel +Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1253,15 +1325,15 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 310.281736 - 0: The maximum resident set size (KB) = 3167196 + 0: The total amount of wall time = 315.498267 + 0: The maximum resident set size (KB) = 3116244 -Test 019 cpld_s2sa_p8_intel PASS +Test 020 cpld_s2sa_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_noaero_p8_intel -Checking test 020 cpld_control_noaero_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_noaero_p8_intel +Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1324,15 +1396,15 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.032818 - 0: The maximum resident set size (KB) = 1721280 + 0: The total amount of wall time = 261.672502 + 0: The maximum resident set size (KB) = 1731116 -Test 020 cpld_control_noaero_p8_intel PASS +Test 021 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_nowave_noaero_p8_intel -Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_nowave_noaero_p8_intel +Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1393,15 +1465,15 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel 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 = 248.111130 - 0: The maximum resident set size (KB) = 1784584 + 0: The total amount of wall time = 258.640627 + 0: The maximum resident set size (KB) = 1705888 -Test 021 cpld_control_nowave_noaero_p8_intel PASS +Test 022 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_p8_intel -Checking test 022 cpld_debug_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_p8_intel +Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1453,15 +1525,15 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 480.623149 - 0: The maximum resident set size (KB) = 3163368 + 0: The total amount of wall time = 480.917360 + 0: The maximum resident set size (KB) = 3243636 -Test 022 cpld_debug_p8_intel PASS +Test 023 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_noaero_p8_intel -Checking test 023 cpld_debug_noaero_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_noaero_p8_intel +Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1512,15 +1584,15 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.157299 - 0: The maximum resident set size (KB) = 1745732 + 0: The total amount of wall time = 326.052241 + 0: The maximum resident set size (KB) = 1741928 -Test 023 cpld_debug_noaero_p8_intel PASS +Test 024 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_noaero_p8_agrid_intel -Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_noaero_p8_agrid_intel +Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1581,15 +1653,15 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel 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.266479 - 0: The maximum resident set size (KB) = 1752152 + 0: The total amount of wall time = 258.811177 + 0: The maximum resident set size (KB) = 1750708 -Test 024 cpld_control_noaero_p8_agrid_intel PASS +Test 025 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_c48_intel -Checking test 025 cpld_control_c48_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_c48_intel +Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1638,15 +1710,15 @@ Checking test 025 cpld_control_c48_intel 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 = 549.377525 - 0: The maximum resident set size (KB) = 2820136 + 0: The total amount of wall time = 552.441280 + 0: The maximum resident set size (KB) = 2824236 -Test 025 cpld_control_c48_intel PASS +Test 026 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_faster_intel -Checking test 026 cpld_control_p8_faster_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_faster_intel +Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1710,15 +1782,15 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 302.367293 - 0: The maximum resident set size (KB) = 3183668 + 0: The total amount of wall time = 311.320849 + 0: The maximum resident set size (KB) = 3178792 -Test 026 cpld_control_p8_faster_intel PASS +Test 027 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_pdlib_p8_intel -Checking test 027 cpld_control_pdlib_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_pdlib_p8_intel +Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1781,15 +1853,15 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 957.678608 - 0: The maximum resident set size (KB) = 1767412 + 0: The total amount of wall time = 969.151643 + 0: The maximum resident set size (KB) = 1746800 -Test 027 cpld_control_pdlib_p8_intel PASS +Test 028 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_restart_pdlib_p8_intel -Checking test 028 cpld_restart_pdlib_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_pdlib_p8_intel +Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1840,15 +1912,15 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.337796 - 0: The maximum resident set size (KB) = 1170792 + 0: The total amount of wall time = 460.493645 + 0: The maximum resident set size (KB) = 1169992 -Test 028 cpld_restart_pdlib_p8_intel PASS +Test 029 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_mpi_pdlib_p8_intel -Checking test 029 cpld_mpi_pdlib_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_mpi_pdlib_p8_intel +Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1911,15 +1983,15 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1112.112896 - 0: The maximum resident set size (KB) = 1664264 + 0: The total amount of wall time = 1111.045514 + 0: The maximum resident set size (KB) = 1633096 -Test 029 cpld_mpi_pdlib_p8_intel PASS +Test 030 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_pdlib_p8_intel -Checking test 030 cpld_debug_pdlib_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_pdlib_p8_intel +Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1970,15 +2042,15 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1475.168538 - 0: The maximum resident set size (KB) = 1682320 + 0: The total amount of wall time = 1479.674565 + 0: The maximum resident set size (KB) = 1687372 -Test 030 cpld_debug_pdlib_p8_intel PASS +Test 031 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_flake_intel -Checking test 031 control_flake_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_flake_intel +Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1988,15 +2060,15 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.564318 - 0: The maximum resident set size (KB) = 691836 + 0: The total amount of wall time = 186.209374 + 0: The maximum resident set size (KB) = 701188 -Test 031 control_flake_intel PASS +Test 032 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_intel -Checking test 032 control_CubedSphereGrid_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_CubedSphereGrid_intel +Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2022,21 +2094,21 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.434186 - 0: The maximum resident set size (KB) = 648948 + 0: The total amount of wall time = 133.272754 + 0: The maximum resident set size (KB) = 653112 -Test 032 control_CubedSphereGrid_intel PASS +Test 033 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_parallel_intel -Checking test 033 control_CubedSphereGrid_parallel_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_CubedSphereGrid_parallel_intel +Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -2044,15 +2116,15 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.019033 - 0: The maximum resident set size (KB) = 650892 + 0: The total amount of wall time = 140.016706 + 0: The maximum resident set size (KB) = 631812 -Test 033 control_CubedSphereGrid_parallel_intel PASS +Test 034 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_latlon_intel -Checking test 034 control_latlon_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_latlon_intel +Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2062,15 +2134,15 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.921573 - 0: The maximum resident set size (KB) = 651208 + 0: The total amount of wall time = 134.919265 + 0: The maximum resident set size (KB) = 648408 -Test 034 control_latlon_intel PASS +Test 035 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wrtGauss_netcdf_parallel_intel -Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wrtGauss_netcdf_parallel_intel +Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2080,15 +2152,61 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.853768 - 0: The maximum resident set size (KB) = 647976 + 0: The total amount of wall time = 136.846819 + 0: The maximum resident set size (KB) = 645320 -Test 035 control_wrtGauss_netcdf_parallel_intel PASS +Test 036 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c48_intel -Checking test 036 control_c48_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c48_intel +Checking test 037 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 373.070415 +0: The maximum resident set size (KB) = 873584 + +Test 037 control_c48_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c48.v2.sfc_intel +Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2126,15 +2244,15 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.171422 -0: The maximum resident set size (KB) = 875760 +0: The total amount of wall time = 371.955472 +0: The maximum resident set size (KB) = 870684 -Test 036 control_c48_intel PASS +Test 038 control_c48.v2.sfc_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c192_intel -Checking test 037 control_c192_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c192_intel +Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2144,15 +2262,15 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.188263 - 0: The maximum resident set size (KB) = 860000 + 0: The total amount of wall time = 527.851703 + 0: The maximum resident set size (KB) = 825312 -Test 037 control_c192_intel PASS +Test 039 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c384_intel -Checking test 038 control_c384_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c384_intel +Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2162,15 +2280,15 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.490635 - 0: The maximum resident set size (KB) = 1284008 + 0: The total amount of wall time = 529.318703 + 0: The maximum resident set size (KB) = 1276096 -Test 038 control_c384_intel PASS +Test 040 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c384gdas_intel -Checking test 039 control_c384gdas_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c384gdas_intel +Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -2185,12 +2303,12 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK @@ -2212,15 +2330,15 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.713903 - 0: The maximum resident set size (KB) = 1388896 + 0: The total amount of wall time = 471.327517 + 0: The maximum resident set size (KB) = 1395452 -Test 039 control_c384gdas_intel PASS +Test 041 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_intel -Checking test 040 control_stochy_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_intel +Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2230,29 +2348,29 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.515053 - 0: The maximum resident set size (KB) = 656988 + 0: The total amount of wall time = 87.778915 + 0: The maximum resident set size (KB) = 649592 -Test 040 control_stochy_intel PASS +Test 042 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_restart_intel -Checking test 041 control_stochy_restart_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_restart_intel +Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.034081 - 0: The maximum resident set size (KB) = 471556 + 0: The total amount of wall time = 49.986326 + 0: The maximum resident set size (KB) = 506324 -Test 041 control_stochy_restart_intel PASS +Test 043 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_lndp_intel -Checking test 042 control_lndp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_lndp_intel +Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2262,15 +2380,15 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.775552 - 0: The maximum resident set size (KB) = 653396 + 0: The total amount of wall time = 82.256999 + 0: The maximum resident set size (KB) = 656096 -Test 042 control_lndp_intel PASS +Test 044 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_iovr4_intel -Checking test 043 control_iovr4_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_iovr4_intel +Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2284,15 +2402,15 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.880731 - 0: The maximum resident set size (KB) = 649592 + 0: The total amount of wall time = 135.741711 + 0: The maximum resident set size (KB) = 631704 -Test 043 control_iovr4_intel PASS +Test 045 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_iovr5_intel -Checking test 044 control_iovr5_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_iovr5_intel +Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,15 +2424,69 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.325399 - 0: The maximum resident set size (KB) = 617020 + 0: The total amount of wall time = 136.225110 + 0: The maximum resident set size (KB) = 653336 -Test 044 control_iovr5_intel PASS +Test 046 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_intel -Checking test 045 control_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_intel +Checking test 047 control_p8_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 167.804939 + 0: The maximum resident set size (KB) = 1614444 + +Test 047 control_p8_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8.v2.sfc_intel +Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2360,15 +2532,15 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.929762 - 0: The maximum resident set size (KB) = 1611560 + 0: The total amount of wall time = 165.799744 + 0: The maximum resident set size (KB) = 1624956 -Test 045 control_p8_intel PASS +Test 048 control_p8.v2.sfc_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_ugwpv1_intel -Checking test 046 control_p8_ugwpv1_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_ugwpv1_intel +Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2414,15 +2586,15 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.153790 - 0: The maximum resident set size (KB) = 1613832 + 0: The total amount of wall time = 159.424800 + 0: The maximum resident set size (KB) = 1613332 -Test 046 control_p8_ugwpv1_intel PASS +Test 049 control_p8_ugwpv1_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_p8_intel -Checking test 047 control_restart_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_restart_p8_intel +Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2460,15 +2632,15 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.338491 - 0: The maximum resident set size (KB) = 879156 + 0: The total amount of wall time = 90.718980 + 0: The maximum resident set size (KB) = 879220 -Test 047 control_restart_p8_intel PASS +Test 050 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_noqr_p8_intel -Checking test 048 control_noqr_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_noqr_p8_intel +Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2514,15 +2686,15 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.672369 - 0: The maximum resident set size (KB) = 1606940 + 0: The total amount of wall time = 162.055955 + 0: The maximum resident set size (KB) = 1609316 -Test 048 control_noqr_p8_intel PASS +Test 051 control_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_noqr_p8_intel -Checking test 049 control_restart_noqr_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_restart_noqr_p8_intel +Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2560,15 +2732,15 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 83.782264 - 0: The maximum resident set size (KB) = 927032 + 0: The total amount of wall time = 91.075099 + 0: The maximum resident set size (KB) = 921044 -Test 049 control_restart_noqr_p8_intel PASS +Test 052 control_restart_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_decomp_p8_intel -Checking test 050 control_decomp_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_decomp_p8_intel +Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2610,15 +2782,15 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.457721 - 0: The maximum resident set size (KB) = 1599916 + 0: The total amount of wall time = 169.581350 + 0: The maximum resident set size (KB) = 1602992 -Test 050 control_decomp_p8_intel PASS +Test 053 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_2threads_p8_intel -Checking test 051 control_2threads_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_2threads_p8_intel +Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2660,15 +2832,15 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 153.691908 - 0: The maximum resident set size (KB) = 1702480 + 0: The total amount of wall time = 152.865676 + 0: The maximum resident set size (KB) = 1716924 -Test 051 control_2threads_p8_intel PASS +Test 054 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_lndp_intel -Checking test 052 control_p8_lndp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_lndp_intel +Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2686,15 +2858,15 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 299.780170 - 0: The maximum resident set size (KB) = 1615356 + 0: The total amount of wall time = 297.723142 + 0: The maximum resident set size (KB) = 1617324 -Test 052 control_p8_lndp_intel PASS +Test 055 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_rrtmgp_intel -Checking test 053 control_p8_rrtmgp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_rrtmgp_intel +Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2740,15 +2912,15 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.171961 - 0: The maximum resident set size (KB) = 1669132 + 0: The total amount of wall time = 216.277907 + 0: The maximum resident set size (KB) = 1680104 -Test 053 control_p8_rrtmgp_intel PASS +Test 056 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_mynn_intel +Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2794,15 +2966,15 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.545934 - 0: The maximum resident set size (KB) = 1601396 + 0: The total amount of wall time = 166.485641 + 0: The maximum resident set size (KB) = 1619728 -Test 054 control_p8_mynn_intel PASS +Test 057 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/merra2_thompson_intel +Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2848,15 +3020,15 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.367246 - 0: The maximum resident set size (KB) = 1627884 + 0: The total amount of wall time = 194.109286 + 0: The maximum resident set size (KB) = 1609292 -Test 055 merra2_thompson_intel PASS +Test 058 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_control_intel -Checking test 056 regional_control_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_control_intel +Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2866,29 +3038,29 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.314872 - 0: The maximum resident set size (KB) = 846860 + 0: The total amount of wall time = 297.417665 + 0: The maximum resident set size (KB) = 843308 -Test 056 regional_control_intel PASS +Test 059 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_restart_intel -Checking test 057 regional_restart_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_restart_intel +Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.697021 - 0: The maximum resident set size (KB) = 1016532 + 0: The total amount of wall time = 154.279822 + 0: The maximum resident set size (KB) = 1013632 -Test 057 regional_restart_intel PASS +Test 060 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_decomp_intel +Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2898,15 +3070,15 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.239390 - 0: The maximum resident set size (KB) = 845020 + 0: The total amount of wall time = 317.795522 + 0: The maximum resident set size (KB) = 844416 -Test 058 regional_decomp_intel PASS +Test 061 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_2threads_intel +Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2916,44 +3088,44 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.116210 - 0: The maximum resident set size (KB) = 840464 + 0: The total amount of wall time = 180.901597 + 0: The maximum resident set size (KB) = 840720 -Test 059 regional_2threads_intel PASS +Test 062 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_noquilt_intel -Checking test 060 regional_noquilt_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_noquilt_intel +Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 294.072479 - 0: The maximum resident set size (KB) = 1346948 + 0: The total amount of wall time = 294.563555 + 0: The maximum resident set size (KB) = 1358684 -Test 060 regional_noquilt_intel PASS +Test 063 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_netcdf_parallel_intel +Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.791905 - 0: The maximum resident set size (KB) = 851064 + 0: The total amount of wall time = 297.938377 + 0: The maximum resident set size (KB) = 847076 -Test 061 regional_netcdf_parallel_intel PASS +Test 064 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_2dwrtdecomp_intel +Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2963,15 +3135,15 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.810635 - 0: The maximum resident set size (KB) = 830596 + 0: The total amount of wall time = 299.724246 + 0: The maximum resident set size (KB) = 849404 -Test 062 regional_2dwrtdecomp_intel PASS +Test 065 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_wofs_intel +Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2981,15 +3153,15 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 385.345857 - 0: The maximum resident set size (KB) = 1899764 + 0: The total amount of wall time = 387.413520 + 0: The maximum resident set size (KB) = 1914732 -Test 063 regional_wofs_intel PASS +Test 066 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_intel -Checking test 064 rap_control_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_intel +Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,15 +3207,15 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.366977 - 0: The maximum resident set size (KB) = 1094784 + 0: The total amount of wall time = 450.027597 + 0: The maximum resident set size (KB) = 1101928 -Test 064 rap_control_intel PASS +Test 067 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_spp_sppt_shum_skeb_intel -Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_spp_sppt_shum_skeb_intel +Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3053,15 +3225,15 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 233.626909 - 0: The maximum resident set size (KB) = 1289184 + 0: The total amount of wall time = 235.317078 + 0: The maximum resident set size (KB) = 1296220 -Test 065 regional_spp_sppt_shum_skeb_intel PASS +Test 068 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_decomp_intel -Checking test 066 rap_decomp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_decomp_intel +Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3107,15 +3279,15 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 468.620618 - 0: The maximum resident set size (KB) = 1031984 + 0: The total amount of wall time = 472.060651 + 0: The maximum resident set size (KB) = 994504 -Test 066 rap_decomp_intel PASS +Test 069 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_intel +Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3161,15 +3333,15 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.826714 - 0: The maximum resident set size (KB) = 1182268 + 0: The total amount of wall time = 421.545362 + 0: The maximum resident set size (KB) = 1185904 -Test 067 rap_2threads_intel PASS +Test 070 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_intel -Checking test 068 rap_restart_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_intel +Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3207,15 +3379,15 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.244514 - 0: The maximum resident set size (KB) = 1101472 + 0: The total amount of wall time = 232.128584 + 0: The maximum resident set size (KB) = 1103336 -Test 068 rap_restart_intel PASS +Test 071 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_intel +Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3261,15 +3433,15 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.163856 - 0: The maximum resident set size (KB) = 1091828 + 0: The total amount of wall time = 448.291874 + 0: The maximum resident set size (KB) = 1103112 -Test 069 rap_sfcdiff_intel PASS +Test 072 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_decomp_intel +Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3315,15 +3487,15 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.404665 - 0: The maximum resident set size (KB) = 1019228 + 0: The total amount of wall time = 474.384490 + 0: The maximum resident set size (KB) = 1032436 -Test 070 rap_sfcdiff_decomp_intel PASS +Test 073 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_restart_intel +Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3361,15 +3533,15 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.571688 - 0: The maximum resident set size (KB) = 1130536 + 0: The total amount of wall time = 339.533547 + 0: The maximum resident set size (KB) = 1133036 -Test 071 rap_sfcdiff_restart_intel PASS +Test 074 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_intel -Checking test 072 hrrr_control_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_intel +Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3415,15 +3587,15 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.633293 - 0: The maximum resident set size (KB) = 1000848 + 0: The total amount of wall time = 227.670711 + 0: The maximum resident set size (KB) = 1026508 -Test 072 hrrr_control_intel PASS +Test 075 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_intel -Checking test 073 hrrr_control_decomp_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_intel +Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3469,15 +3641,15 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.110620 - 0: The maximum resident set size (KB) = 1020700 + 0: The total amount of wall time = 235.799082 + 0: The maximum resident set size (KB) = 1015760 -Test 073 hrrr_control_decomp_intel PASS +Test 076 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_intel +Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3523,29 +3695,29 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.800717 - 0: The maximum resident set size (KB) = 1110236 + 0: The total amount of wall time = 209.905351 + 0: The maximum resident set size (KB) = 1121472 -Test 074 hrrr_control_2threads_intel PASS +Test 077 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_intel -Checking test 075 hrrr_control_restart_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_intel +Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.334719 - 0: The maximum resident set size (KB) = 993548 + 0: The total amount of wall time = 121.677701 + 0: The maximum resident set size (KB) = 981928 -Test 075 hrrr_control_restart_intel PASS +Test 078 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_intel -Checking test 076 rrfs_v1beta_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_intel +Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3591,15 +3763,15 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.219876 - 0: The maximum resident set size (KB) = 1097556 + 0: The total amount of wall time = 443.647197 + 0: The maximum resident set size (KB) = 1103440 -Test 076 rrfs_v1beta_intel PASS +Test 079 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1nssl_intel -Checking test 077 rrfs_v1nssl_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1nssl_intel +Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3613,15 +3785,15 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 533.153469 - 0: The maximum resident set size (KB) = 1990732 + 0: The total amount of wall time = 536.111309 + 0: The maximum resident set size (KB) = 1972048 -Test 077 rrfs_v1nssl_intel PASS +Test 080 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1nssl_nohailnoccn_intel -Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1nssl_nohailnoccn_intel +Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3635,15 +3807,15 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 520.250062 - 0: The maximum resident set size (KB) = 2051776 + 0: The total amount of wall time = 521.569439 + 0: The maximum resident set size (KB) = 2057772 -Test 078 rrfs_v1nssl_nohailnoccn_intel PASS +Test 081 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmg_intel +Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3653,15 +3825,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.804763 - 0: The maximum resident set size (KB) = 739316 + 0: The total amount of wall time = 340.920407 + 0: The maximum resident set size (KB) = 743240 -Test 079 control_csawmg_intel PASS +Test 082 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmgt_intel +Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3671,15 +3843,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 334.956617 - 0: The maximum resident set size (KB) = 712324 + 0: The total amount of wall time = 336.344187 + 0: The maximum resident set size (KB) = 715688 -Test 080 control_csawmgt_intel PASS +Test 083 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_intel -Checking test 081 control_ras_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_intel +Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3689,27 +3861,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.820782 - 0: The maximum resident set size (KB) = 735028 + 0: The total amount of wall time = 187.912186 + 0: The maximum resident set size (KB) = 731840 -Test 081 control_ras_intel PASS +Test 084 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_intel -Checking test 082 control_wam_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wam_intel +Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.594046 - 0: The maximum resident set size (KB) = 644096 + 0: The total amount of wall time = 115.158058 + 0: The maximum resident set size (KB) = 639808 -Test 082 control_wam_intel PASS +Test 085 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_faster_intel +Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3755,15 +3927,15 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.368687 - 0: The maximum resident set size (KB) = 1619232 + 0: The total amount of wall time = 148.827134 + 0: The maximum resident set size (KB) = 1592336 -Test 083 control_p8_faster_intel PASS +Test 086 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_control_faster_intel +Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3773,15 +3945,15 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.262541 - 0: The maximum resident set size (KB) = 847716 + 0: The total amount of wall time = 267.595780 + 0: The maximum resident set size (KB) = 845480 -Test 084 regional_control_faster_intel PASS +Test 087 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_CubedSphereGrid_debug_intel +Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3807,365 +3979,365 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 145.055378 - 0: The maximum resident set size (KB) = 809480 + 0: The total amount of wall time = 148.968810 + 0: The maximum resident set size (KB) = 813396 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 088 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.493861 - 0: The maximum resident set size (KB) = 811512 + 0: The total amount of wall time = 151.469411 + 0: The maximum resident set size (KB) = 808504 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_debug_intel +Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.323485 - 0: The maximum resident set size (KB) = 781356 + 0: The total amount of wall time = 166.131277 + 0: The maximum resident set size (KB) = 810000 -Test 087 control_stochy_debug_intel PASS +Test 090 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_lndp_debug_intel +Checking test 091 control_lndp_debug_intel 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.995786 - 0: The maximum resident set size (KB) = 811136 + 0: The total amount of wall time = 152.569829 + 0: The maximum resident set size (KB) = 816060 -Test 088 control_lndp_debug_intel PASS +Test 091 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmg_debug_intel +Checking test 092 control_csawmg_debug_intel 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.276189 - 0: The maximum resident set size (KB) = 864880 + 0: The total amount of wall time = 231.601646 + 0: The maximum resident set size (KB) = 857368 -Test 089 control_csawmg_debug_intel PASS +Test 092 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmgt_debug_intel +Checking test 093 control_csawmgt_debug_intel 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.956854 - 0: The maximum resident set size (KB) = 863180 + 0: The total amount of wall time = 227.592397 + 0: The maximum resident set size (KB) = 862464 -Test 090 control_csawmgt_debug_intel PASS +Test 093 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_debug_intel +Checking test 094 control_ras_debug_intel 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.524037 - 0: The maximum resident set size (KB) = 824452 + 0: The total amount of wall time = 157.188652 + 0: The maximum resident set size (KB) = 823320 -Test 091 control_ras_debug_intel PASS +Test 094 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_diag_debug_intel +Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.762811 - 0: The maximum resident set size (KB) = 874524 + 0: The total amount of wall time = 156.879425 + 0: The maximum resident set size (KB) = 871508 -Test 092 control_diag_debug_intel PASS +Test 095 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_debug_p8_intel +Checking test 096 control_debug_p8_intel 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.930732 - 0: The maximum resident set size (KB) = 1637680 + 0: The total amount of wall time = 161.119644 + 0: The maximum resident set size (KB) = 1641008 -Test 093 control_debug_p8_intel PASS +Test 096 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_debug_intel -Checking test 094 regional_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_debug_intel +Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 989.414920 - 0: The maximum resident set size (KB) = 844060 + 0: The total amount of wall time = 950.872206 + 0: The maximum resident set size (KB) = 837880 -Test 094 regional_debug_intel PASS +Test 097 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_intel +Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.743992 - 0: The maximum resident set size (KB) = 1205968 + 0: The total amount of wall time = 275.511799 + 0: The maximum resident set size (KB) = 1203520 -Test 095 rap_control_debug_intel PASS +Test 098 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_intel +Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.587426 - 0: The maximum resident set size (KB) = 1188196 + 0: The total amount of wall time = 270.024671 + 0: The maximum resident set size (KB) = 1192784 -Test 096 hrrr_control_debug_intel PASS +Test 099 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_gf_debug_intel -Checking test 097 hrrr_gf_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_gf_debug_intel +Checking test 100 hrrr_gf_debug_intel 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.577904 - 0: The maximum resident set size (KB) = 1168904 + 0: The total amount of wall time = 270.434042 + 0: The maximum resident set size (KB) = 1201980 -Test 097 hrrr_gf_debug_intel PASS +Test 100 hrrr_gf_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_c3_debug_intel -Checking test 098 hrrr_c3_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_c3_debug_intel +Checking test 101 hrrr_c3_debug_intel 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.320244 - 0: The maximum resident set size (KB) = 1201040 + 0: The total amount of wall time = 279.862330 + 0: The maximum resident set size (KB) = 1197280 -Test 098 hrrr_c3_debug_intel PASS +Test 101 hrrr_c3_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_unified_drag_suite_debug_intel -Checking test 099 rap_unified_drag_suite_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_unified_drag_suite_debug_intel +Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.384853 - 0: The maximum resident set size (KB) = 1199072 + 0: The total amount of wall time = 272.998092 + 0: The maximum resident set size (KB) = 1194152 -Test 099 rap_unified_drag_suite_debug_intel PASS +Test 102 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_diag_debug_intel -Checking test 100 rap_diag_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_diag_debug_intel +Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.450519 - 0: The maximum resident set size (KB) = 1250492 + 0: The total amount of wall time = 282.904109 + 0: The maximum resident set size (KB) = 1286952 -Test 100 rap_diag_debug_intel PASS +Test 103 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_cires_ugwp_debug_intel -Checking test 101 rap_cires_ugwp_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_cires_ugwp_debug_intel +Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.011727 - 0: The maximum resident set size (KB) = 1194848 + 0: The total amount of wall time = 278.100682 + 0: The maximum resident set size (KB) = 1202920 -Test 101 rap_cires_ugwp_debug_intel PASS +Test 104 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_unified_ugwp_debug_intel -Checking test 102 rap_unified_ugwp_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_unified_ugwp_debug_intel +Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.901943 - 0: The maximum resident set size (KB) = 1199404 + 0: The total amount of wall time = 281.273784 + 0: The maximum resident set size (KB) = 1200132 -Test 102 rap_unified_ugwp_debug_intel PASS +Test 105 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_lndp_debug_intel -Checking test 103 rap_lndp_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_lndp_debug_intel +Checking test 106 rap_lndp_debug_intel 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.978114 - 0: The maximum resident set size (KB) = 1202272 + 0: The total amount of wall time = 277.453549 + 0: The maximum resident set size (KB) = 1202876 -Test 103 rap_lndp_debug_intel PASS +Test 106 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_progcld_thompson_debug_intel -Checking test 104 rap_progcld_thompson_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_progcld_thompson_debug_intel +Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.215816 - 0: The maximum resident set size (KB) = 1202172 + 0: The total amount of wall time = 275.262581 + 0: The maximum resident set size (KB) = 1195316 -Test 104 rap_progcld_thompson_debug_intel PASS +Test 107 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_debug_intel -Checking test 105 rap_noah_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_noah_debug_intel +Checking test 108 rap_noah_debug_intel 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.153767 - 0: The maximum resident set size (KB) = 1207516 + 0: The total amount of wall time = 267.138167 + 0: The maximum resident set size (KB) = 1169364 -Test 105 rap_noah_debug_intel PASS +Test 108 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_debug_intel -Checking test 106 rap_sfcdiff_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_debug_intel +Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.593517 - 0: The maximum resident set size (KB) = 1198500 + 0: The total amount of wall time = 275.200050 + 0: The maximum resident set size (KB) = 1170460 -Test 106 rap_sfcdiff_debug_intel PASS +Test 109 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel 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.151842 - 0: The maximum resident set size (KB) = 1190028 + 0: The total amount of wall time = 449.384906 + 0: The maximum resident set size (KB) = 1194600 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_debug_intel -Checking test 108 rrfs_v1beta_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_debug_intel +Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.581265 - 0: The maximum resident set size (KB) = 1189628 + 0: The total amount of wall time = 273.231105 + 0: The maximum resident set size (KB) = 1205676 -Test 108 rrfs_v1beta_debug_intel PASS +Test 111 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_clm_lake_debug_intel -Checking test 109 rap_clm_lake_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_clm_lake_debug_intel +Checking test 112 rap_clm_lake_debug_intel 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.186347 - 0: The maximum resident set size (KB) = 1198564 + 0: The total amount of wall time = 333.300543 + 0: The maximum resident set size (KB) = 1205276 -Test 109 rap_clm_lake_debug_intel PASS +Test 112 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_flake_debug_intel -Checking test 110 rap_flake_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_flake_debug_intel +Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.088415 - 0: The maximum resident set size (KB) = 1195828 + 0: The total amount of wall time = 273.452786 + 0: The maximum resident set size (KB) = 1204552 -Test 110 rap_flake_debug_intel PASS +Test 113 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_c96_no_nest_debug_intel -Checking test 111 gnv1_c96_no_nest_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/gnv1_c96_no_nest_debug_intel +Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4205,27 +4377,27 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.556356 - 0: The maximum resident set size (KB) = 1196912 + 0: The total amount of wall time = 482.363061 + 0: The maximum resident set size (KB) = 1202496 -Test 111 gnv1_c96_no_nest_debug_intel PASS +Test 114 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wam_debug_intel +Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 278.557135 - 0: The maximum resident set size (KB) = 521848 + 0: The total amount of wall time = 281.063486 + 0: The maximum resident set size (KB) = 540532 -Test 112 control_wam_debug_intel PASS +Test 115 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4235,15 +4407,15 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 227.440380 - 0: The maximum resident set size (KB) = 1156564 + 0: The total amount of wall time = 222.414416 + 0: The maximum resident set size (KB) = 1148440 -Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn32_phy32_intel +Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4289,15 +4461,15 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 368.557787 - 0: The maximum resident set size (KB) = 1020924 + 0: The total amount of wall time = 373.297359 + 0: The maximum resident set size (KB) = 1057412 -Test 114 rap_control_dyn32_phy32_intel PASS +Test 117 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_dyn32_phy32_intel +Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4343,15 +4515,15 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.918061 - 0: The maximum resident set size (KB) = 969300 + 0: The total amount of wall time = 192.385159 + 0: The maximum resident set size (KB) = 978300 -Test 115 hrrr_control_dyn32_phy32_intel PASS +Test 118 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_dyn32_phy32_intel -Checking test 116 rap_2threads_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_dyn32_phy32_intel +Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4397,15 +4569,15 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.333087 - 0: The maximum resident set size (KB) = 1086104 + 0: The total amount of wall time = 350.557031 + 0: The maximum resident set size (KB) = 1092688 -Test 116 rap_2threads_dyn32_phy32_intel PASS +Test 119 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_dyn32_phy32_intel -Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_dyn32_phy32_intel +Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4451,15 +4623,15 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.181859 - 0: The maximum resident set size (KB) = 965172 + 0: The total amount of wall time = 182.010114 + 0: The maximum resident set size (KB) = 962948 -Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_dyn32_phy32_intel -Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_dyn32_phy32_intel +Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4505,15 +4677,15 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.785190 - 0: The maximum resident set size (KB) = 918992 + 0: The total amount of wall time = 206.578970 + 0: The maximum resident set size (KB) = 938276 -Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_dyn32_phy32_intel -Checking test 119 rap_restart_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_dyn32_phy32_intel +Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4551,29 +4723,29 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.195527 - 0: The maximum resident set size (KB) = 1030528 + 0: The total amount of wall time = 277.390826 + 0: The maximum resident set size (KB) = 1021864 -Test 119 rap_restart_dyn32_phy32_intel PASS +Test 122 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_dyn32_phy32_intel -Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_dyn32_phy32_intel +Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.013804 - 0: The maximum resident set size (KB) = 930076 + 0: The total amount of wall time = 101.074020 + 0: The maximum resident set size (KB) = 929232 -Test 120 hrrr_control_restart_dyn32_phy32_intel PASS +Test 123 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_control_intel -Checking test 121 conus13km_control_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_control_intel +Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4588,41 +4760,41 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 110.521906 - 0: The maximum resident set size (KB) = 1202840 + 0: The total amount of wall time = 115.166359 + 0: The maximum resident set size (KB) = 1193848 -Test 121 conus13km_control_intel PASS +Test 124 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_2threads_intel -Checking test 122 conus13km_2threads_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_2threads_intel +Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 42.663129 - 0: The maximum resident set size (KB) = 1123900 + 0: The total amount of wall time = 43.886088 + 0: The maximum resident set size (KB) = 1113108 -Test 122 conus13km_2threads_intel PASS +Test 125 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_restart_mismatch_intel -Checking test 123 conus13km_restart_mismatch_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_restart_mismatch_intel +Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 61.564367 - 0: The maximum resident set size (KB) = 1105368 + 0: The total amount of wall time = 62.459930 + 0: The maximum resident set size (KB) = 1069464 -Test 123 conus13km_restart_mismatch_intel PASS +Test 126 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_intel +Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4668,43 +4840,43 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.326200 - 0: The maximum resident set size (KB) = 975444 + 0: The total amount of wall time = 243.152949 + 0: The maximum resident set size (KB) = 988492 -Test 124 rap_control_dyn64_phy32_intel PASS +Test 127 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_dyn32_phy32_intel +Checking test 128 rap_control_debug_dyn32_phy32_intel 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.534913 - 0: The maximum resident set size (KB) = 1080528 + 0: The total amount of wall time = 272.142453 + 0: The maximum resident set size (KB) = 1082632 -Test 125 rap_control_debug_dyn32_phy32_intel PASS +Test 128 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_dyn32_phy32_intel +Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.074906 - 0: The maximum resident set size (KB) = 1074564 + 0: The total amount of wall time = 263.826989 + 0: The maximum resident set size (KB) = 1084456 -Test 126 hrrr_control_debug_dyn32_phy32_intel PASS +Test 129 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_intel -Checking test 127 conus13km_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_intel +Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4717,15 +4889,15 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 835.339812 - 0: The maximum resident set size (KB) = 1198160 + 0: The total amount of wall time = 820.257343 + 0: The maximum resident set size (KB) = 1225724 -Test 127 conus13km_debug_intel PASS +Test 130 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_qr_intel -Checking test 128 conus13km_debug_qr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_qr_intel +Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4738,82 +4910,82 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 835.471252 - 0: The maximum resident set size (KB) = 917080 + 0: The total amount of wall time = 839.467790 + 0: The maximum resident set size (KB) = 924352 -Test 128 conus13km_debug_qr_intel PASS +Test 131 conus13km_debug_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_2threads_intel -Checking test 129 conus13km_debug_2threads_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_2threads_intel +Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 461.971414 - 0: The maximum resident set size (KB) = 1151156 + 0: The total amount of wall time = 463.164791 + 0: The maximum resident set size (KB) = 1137640 -Test 129 conus13km_debug_2threads_intel PASS +Test 132 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_radar_tten_debug_intel -Checking test 130 conus13km_radar_tten_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_radar_tten_debug_intel +Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 820.630781 - 0: The maximum resident set size (KB) = 1287516 + 0: The total amount of wall time = 823.705020 + 0: The maximum resident set size (KB) = 1295408 -Test 130 conus13km_radar_tten_debug_intel PASS +Test 133 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_debug_intel -Checking test 131 rap_control_dyn64_phy32_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_debug_intel +Checking test 134 rap_control_dyn64_phy32_debug_intel 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.692154 - 0: The maximum resident set size (KB) = 1104400 + 0: The total amount of wall time = 280.983633 + 0: The maximum resident set size (KB) = 1110840 -Test 131 rap_control_dyn64_phy32_debug_intel PASS +Test 134 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_intel -Checking test 132 hafs_regional_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_intel +Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.040684 - 0: The maximum resident set size (KB) = 740032 + 0: The total amount of wall time = 274.946930 + 0: The maximum resident set size (KB) = 735240 -Test 132 hafs_regional_atm_intel PASS +Test 135 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 337.462528 - 0: The maximum resident set size (KB) = 1114212 + 0: The total amount of wall time = 339.586507 + 0: The maximum resident set size (KB) = 1079084 -Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_ocn_intel -Checking test 134 hafs_regional_atm_ocn_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_ocn_intel +Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4821,15 +4993,15 @@ Checking test 134 hafs_regional_atm_ocn_intel 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 = 392.511413 - 0: The maximum resident set size (KB) = 833076 + 0: The total amount of wall time = 396.652151 + 0: The maximum resident set size (KB) = 803092 -Test 134 hafs_regional_atm_ocn_intel PASS +Test 137 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_wav_intel -Checking test 135 hafs_regional_atm_wav_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_wav_intel +Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4837,15 +5009,15 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 760.911262 - 0: The maximum resident set size (KB) = 868292 + 0: The total amount of wall time = 761.168650 + 0: The maximum resident set size (KB) = 870112 -Test 135 hafs_regional_atm_wav_intel PASS +Test 138 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_atm_ocn_wav_intel -Checking test 136 hafs_regional_atm_ocn_wav_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_ocn_wav_intel +Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4855,15 +5027,15 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 867.326621 - 0: The maximum resident set size (KB) = 879692 + 0: The total amount of wall time = 869.848133 + 0: The maximum resident set size (KB) = 884056 -Test 136 hafs_regional_atm_ocn_wav_intel PASS +Test 139 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_1nest_atm_intel -Checking test 137 hafs_regional_1nest_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_1nest_atm_intel +Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4884,15 +5056,15 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 305.095077 - 0: The maximum resident set size (KB) = 498508 + 0: The total amount of wall time = 301.833927 + 0: The maximum resident set size (KB) = 475168 -Test 137 hafs_regional_1nest_atm_intel PASS +Test 140 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_telescopic_2nests_atm_intel -Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_telescopic_2nests_atm_intel +Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4900,15 +5072,15 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 368.217847 - 0: The maximum resident set size (KB) = 521656 + 0: The total amount of wall time = 375.746544 + 0: The maximum resident set size (KB) = 519492 -Test 138 hafs_regional_telescopic_2nests_atm_intel PASS +Test 141 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_1nest_atm_intel -Checking test 139 hafs_global_1nest_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_global_1nest_atm_intel +Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4917,19 +5089,19 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -4954,15 +5126,15 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 144.019526 - 0: The maximum resident set size (KB) = 372432 + 0: The total amount of wall time = 146.148980 + 0: The maximum resident set size (KB) = 376456 -Test 139 hafs_global_1nest_atm_intel PASS +Test 142 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_global_multiple_4nests_atm_intel +Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4989,10 +5161,10 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK @@ -5003,7 +5175,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -5026,7 +5198,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5043,15 +5215,15 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 406.250890 - 0: The maximum resident set size (KB) = 475980 + 0: The total amount of wall time = 402.858042 + 0: The maximum resident set size (KB) = 478248 -Test 140 hafs_global_multiple_4nests_atm_intel PASS +Test 143 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_specified_moving_1nest_atm_intel -Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_specified_moving_1nest_atm_intel +Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5059,15 +5231,15 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 205.913870 - 0: The maximum resident set size (KB) = 529472 + 0: The total amount of wall time = 204.294864 + 0: The maximum resident set size (KB) = 529108 -Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5088,15 +5260,15 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 195.540172 - 0: The maximum resident set size (KB) = 532068 + 0: The total amount of wall time = 192.946034 + 0: The maximum resident set size (KB) = 529248 -Test 142 hafs_regional_storm_following_1nest_atm_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5104,29 +5276,29 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 231.563191 - 0: The maximum resident set size (KB) = 560816 + 0: The total amount of wall time = 233.166928 + 0: The maximum resident set size (KB) = 554092 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_global_storm_following_1nest_atm_intel -Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_global_storm_following_1nest_atm_intel +Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 64.182739 - 0: The maximum resident set size (KB) = 404656 + 0: The total amount of wall time = 61.827873 + 0: The maximum resident set size (KB) = 401428 -Test 144 hafs_global_storm_following_1nest_atm_intel PASS +Test 147 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_nested_intel -Checking test 145 gnv1_nested_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/gnv1_nested_intel +Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5137,23 +5309,23 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK @@ -5172,29 +5344,29 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 230.086296 - 0: The maximum resident set size (KB) = 799868 + 0: The total amount of wall time = 224.996533 + 0: The maximum resident set size (KB) = 796436 -Test 145 gnv1_nested_intel PASS +Test 148 gnv1_nested_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 726.576204 - 0: The maximum resident set size (KB) = 572116 + 0: The total amount of wall time = 729.356996 + 0: The maximum resident set size (KB) = 564740 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5204,15 +5376,15 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 497.710518 - 0: The maximum resident set size (KB) = 636284 + 0: The total amount of wall time = 491.411578 + 0: The maximum resident set size (KB) = 665688 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5222,15 +5394,15 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 496.967255 - 0: The maximum resident set size (KB) = 713496 + 0: The total amount of wall time = 501.807757 + 0: The maximum resident set size (KB) = 708556 -Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS +Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK Comparing atm.nest02.f003.nc .........OK @@ -5239,162 +5411,162 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 363.350077 - 0: The maximum resident set size (KB) = 689456 + 0: The total amount of wall time = 368.859522 + 0: The maximum resident set size (KB) = 684884 -Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_docn_intel -Checking test 150 hafs_regional_docn_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_docn_intel +Checking test 153 hafs_regional_docn_intel 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 = 385.494856 - 0: The maximum resident set size (KB) = 817532 + 0: The total amount of wall time = 360.739933 + 0: The maximum resident set size (KB) = 820856 -Test 150 hafs_regional_docn_intel PASS +Test 153 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_docn_oisst_intel -Checking test 151 hafs_regional_docn_oisst_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_docn_oisst_intel +Checking test 154 hafs_regional_docn_oisst_intel 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 = 365.255275 - 0: The maximum resident set size (KB) = 807076 + 0: The total amount of wall time = 360.681490 + 0: The maximum resident set size (KB) = 808912 -Test 151 hafs_regional_docn_oisst_intel PASS +Test 154 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hafs_regional_datm_cdeps_intel -Checking test 152 hafs_regional_datm_cdeps_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_datm_cdeps_intel +Checking test 155 hafs_regional_datm_cdeps_intel 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 = 957.184061 - 0: The maximum resident set size (KB) = 1207540 + 0: The total amount of wall time = 944.884781 + 0: The maximum resident set size (KB) = 1207804 -Test 152 hafs_regional_datm_cdeps_intel PASS +Test 155 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_intel -Checking test 153 datm_cdeps_control_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_cfsr_intel +Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.680540 - 0: The maximum resident set size (KB) = 1123960 + 0: The total amount of wall time = 153.260954 + 0: The maximum resident set size (KB) = 1123108 -Test 153 datm_cdeps_control_cfsr_intel PASS +Test 156 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_restart_cfsr_intel -Checking test 154 datm_cdeps_restart_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_restart_cfsr_intel +Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 92.600039 - 0: The maximum resident set size (KB) = 1071924 + 0: The total amount of wall time = 91.636134 + 0: The maximum resident set size (KB) = 1072556 -Test 154 datm_cdeps_restart_cfsr_intel PASS +Test 157 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_gefs_intel -Checking test 155 datm_cdeps_control_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_gefs_intel +Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.951606 - 0: The maximum resident set size (KB) = 1006268 + 0: The total amount of wall time = 146.701486 + 0: The maximum resident set size (KB) = 1008576 -Test 155 datm_cdeps_control_gefs_intel PASS +Test 158 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_iau_gefs_intel -Checking test 156 datm_cdeps_iau_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_iau_gefs_intel +Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.270741 - 0: The maximum resident set size (KB) = 1017980 + 0: The total amount of wall time = 146.482474 + 0: The maximum resident set size (KB) = 1024824 -Test 156 datm_cdeps_iau_gefs_intel PASS +Test 159 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_stochy_gefs_intel -Checking test 157 datm_cdeps_stochy_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_stochy_gefs_intel +Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.213326 - 0: The maximum resident set size (KB) = 1021072 + 0: The total amount of wall time = 148.750256 + 0: The maximum resident set size (KB) = 1001988 -Test 157 datm_cdeps_stochy_gefs_intel PASS +Test 160 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_ciceC_cfsr_intel -Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_ciceC_cfsr_intel +Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.909855 - 0: The maximum resident set size (KB) = 1114604 + 0: The total amount of wall time = 148.579040 + 0: The maximum resident set size (KB) = 1114880 -Test 158 datm_cdeps_ciceC_cfsr_intel PASS +Test 161 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_bulk_cfsr_intel -Checking test 159 datm_cdeps_bulk_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_bulk_cfsr_intel +Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.461375 - 0: The maximum resident set size (KB) = 1124828 + 0: The total amount of wall time = 152.295789 + 0: The maximum resident set size (KB) = 1137228 -Test 159 datm_cdeps_bulk_cfsr_intel PASS +Test 162 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_bulk_gefs_intel -Checking test 160 datm_cdeps_bulk_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_bulk_gefs_intel +Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.594920 - 0: The maximum resident set size (KB) = 990052 + 0: The total amount of wall time = 143.441280 + 0: The maximum resident set size (KB) = 1018596 -Test 160 datm_cdeps_bulk_gefs_intel PASS +Test 163 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_mx025_cfsr_intel -Checking test 161 datm_cdeps_mx025_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_mx025_cfsr_intel +Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5402,15 +5574,15 @@ Checking test 161 datm_cdeps_mx025_cfsr_intel 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 = 367.127490 - 0: The maximum resident set size (KB) = 1072600 + 0: The total amount of wall time = 361.364654 + 0: The maximum resident set size (KB) = 1048136 -Test 161 datm_cdeps_mx025_cfsr_intel PASS +Test 164 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_mx025_gefs_intel -Checking test 162 datm_cdeps_mx025_gefs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_mx025_gefs_intel +Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5418,78 +5590,78 @@ Checking test 162 datm_cdeps_mx025_gefs_intel 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 = 393.081171 - 0: The maximum resident set size (KB) = 1042836 + 0: The total amount of wall time = 392.622629 + 0: The maximum resident set size (KB) = 1031396 -Test 162 datm_cdeps_mx025_gefs_intel PASS +Test 165 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_multiple_files_cfsr_intel -Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_multiple_files_cfsr_intel +Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.389953 - 0: The maximum resident set size (KB) = 1117624 + 0: The total amount of wall time = 151.326845 + 0: The maximum resident set size (KB) = 1118356 -Test 163 datm_cdeps_multiple_files_cfsr_intel PASS +Test 166 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_3072x1536_cfsr_intel -Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_3072x1536_cfsr_intel +Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 224.118666 - 0: The maximum resident set size (KB) = 2427208 + 0: The total amount of wall time = 222.785093 + 0: The maximum resident set size (KB) = 2483720 -Test 164 datm_cdeps_3072x1536_cfsr_intel PASS +Test 167 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_gfs_intel -Checking test 165 datm_cdeps_gfs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_gfs_intel +Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 225.533239 - 0: The maximum resident set size (KB) = 2435672 + 0: The total amount of wall time = 223.436782 + 0: The maximum resident set size (KB) = 2414804 -Test 165 datm_cdeps_gfs_intel PASS +Test 168 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_debug_cfsr_intel -Checking test 166 datm_cdeps_debug_cfsr_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_debug_cfsr_intel +Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 356.200975 - 0: The maximum resident set size (KB) = 1051880 + 0: The total amount of wall time = 351.893172 + 0: The maximum resident set size (KB) = 1053468 -Test 166 datm_cdeps_debug_cfsr_intel PASS +Test 169 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_faster_intel -Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_cfsr_faster_intel +Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.399684 - 0: The maximum resident set size (KB) = 1125588 + 0: The total amount of wall time = 148.469779 + 0: The maximum resident set size (KB) = 1123436 -Test 167 datm_cdeps_control_cfsr_faster_intel PASS +Test 170 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_gswp3_intel -Checking test 168 datm_cdeps_lnd_gswp3_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_lnd_gswp3_intel +Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5497,15 +5669,15 @@ Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 37.227795 - 0: The maximum resident set size (KB) = 255552 + 0: The total amount of wall time = 37.868758 + 0: The maximum resident set size (KB) = 250308 -Test 168 datm_cdeps_lnd_gswp3_intel PASS +Test 171 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_era5_intel -Checking test 169 datm_cdeps_lnd_era5_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_lnd_era5_intel +Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5513,15 +5685,15 @@ Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 40.486714 - 0: The maximum resident set size (KB) = 318592 + 0: The total amount of wall time = 41.701940 + 0: The maximum resident set size (KB) = 318636 -Test 169 datm_cdeps_lnd_era5_intel PASS +Test 172 datm_cdeps_lnd_era5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_lnd_era5_rst_intel -Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_lnd_era5_rst_intel +Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5529,15 +5701,15 @@ Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 21.767384 - 0: The maximum resident set size (KB) = 314644 + 0: The total amount of wall time = 21.791314 + 0: The maximum resident set size (KB) = 319804 -Test 170 datm_cdeps_lnd_era5_rst_intel PASS +Test 173 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_atmlnd_sbs_intel -Checking test 171 control_p8_atmlnd_sbs_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_atmlnd_sbs_intel +Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5625,15 +5797,15 @@ Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 248.362695 - 0: The maximum resident set size (KB) = 1567128 + 0: The total amount of wall time = 251.682102 + 0: The maximum resident set size (KB) = 1579980 -Test 171 control_p8_atmlnd_sbs_intel PASS +Test 174 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_atmlnd_intel -Checking test 172 control_p8_atmlnd_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_atmlnd_intel +Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5721,15 +5893,15 @@ Checking test 172 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 242.736688 - 0: The maximum resident set size (KB) = 1588544 + 0: The total amount of wall time = 255.045393 + 0: The maximum resident set size (KB) = 1578228 -Test 172 control_p8_atmlnd_intel PASS +Test 175 control_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_restart_p8_atmlnd_intel -Checking test 173 control_restart_p8_atmlnd_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_restart_p8_atmlnd_intel +Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5749,15 +5921,15 @@ Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 124.620666 - 0: The maximum resident set size (KB) = 892940 + 0: The total amount of wall time = 128.885079 + 0: The maximum resident set size (KB) = 893924 -Test 173 control_restart_p8_atmlnd_intel PASS +Test 176 control_restart_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmwav_control_noaero_p8_intel -Checking test 174 atmwav_control_noaero_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmwav_control_noaero_p8_intel +Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5799,15 +5971,15 @@ Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.003851 - 0: The maximum resident set size (KB) = 1649056 + 0: The total amount of wall time = 93.865383 + 0: The maximum resident set size (KB) = 1647168 -Test 174 atmwav_control_noaero_p8_intel PASS +Test 177 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_atmwav_intel -Checking test 175 control_atmwav_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_atmwav_intel +Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5850,15 +6022,15 @@ Checking test 175 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.957613 - 0: The maximum resident set size (KB) = 668764 + 0: The total amount of wall time = 88.629269 + 0: The maximum resident set size (KB) = 671628 -Test 175 control_atmwav_intel PASS +Test 178 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_intel -Checking test 176 atmaero_control_p8_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmaero_control_p8_intel +Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5901,15 +6073,15 @@ Checking test 176 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.280401 - 0: The maximum resident set size (KB) = 3004672 + 0: The total amount of wall time = 232.323464 + 0: The maximum resident set size (KB) = 3011208 -Test 176 atmaero_control_p8_intel PASS +Test 179 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_rad_intel -Checking test 177 atmaero_control_p8_rad_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmaero_control_p8_rad_intel +Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5952,15 +6124,15 @@ Checking test 177 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.339046 - 0: The maximum resident set size (KB) = 3085368 + 0: The total amount of wall time = 279.287996 + 0: The maximum resident set size (KB) = 3070756 -Test 177 atmaero_control_p8_rad_intel PASS +Test 180 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/atmaero_control_p8_rad_micro_intel -Checking test 178 atmaero_control_p8_rad_micro_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmaero_control_p8_rad_micro_intel +Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6003,15 +6175,15 @@ Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.678953 - 0: The maximum resident set size (KB) = 3095612 + 0: The total amount of wall time = 300.330180 + 0: The maximum resident set size (KB) = 3087844 -Test 178 atmaero_control_p8_rad_micro_intel PASS +Test 181 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_atmaq_debug_intel -Checking test 179 regional_atmaq_debug_intel results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_atmaq_debug_intel +Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -6024,15 +6196,15 @@ Checking test 179 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1195.038352 - 0: The maximum resident set size (KB) = 4508140 + 0: The total amount of wall time = 1202.935754 + 0: The maximum resident set size (KB) = 4486208 -Test 179 regional_atmaq_debug_intel PASS +Test 182 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_c48_gnu -Checking test 180 control_c48_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c48_gnu +Checking test 183 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6070,15 +6242,15 @@ Checking test 180 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 689.527241 -0: The maximum resident set size (KB) = 796248 +0: The total amount of wall time = 691.396302 +0: The maximum resident set size (KB) = 796112 -Test 180 control_c48_gnu PASS +Test 183 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_gnu -Checking test 181 control_stochy_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_gnu +Checking test 184 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -6088,15 +6260,15 @@ Checking test 181 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 223.236365 - 0: The maximum resident set size (KB) = 553500 + 0: The total amount of wall time = 237.490172 + 0: The maximum resident set size (KB) = 551756 -Test 181 control_stochy_gnu PASS +Test 184 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_gnu -Checking test 182 control_ras_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_gnu +Checking test 185 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6106,15 +6278,15 @@ Checking test 182 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 287.892871 - 0: The maximum resident set size (KB) = 556028 + 0: The total amount of wall time = 288.015708 + 0: The maximum resident set size (KB) = 561044 -Test 182 control_ras_gnu PASS +Test 185 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_gnu -Checking test 183 control_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_gnu +Checking test 186 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6160,15 +6332,15 @@ Checking test 183 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.493301 - 0: The maximum resident set size (KB) = 1312608 + 0: The total amount of wall time = 280.349449 + 0: The maximum resident set size (KB) = 1310152 -Test 183 control_p8_gnu PASS +Test 186 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_p8_ugwpv1_gnu -Checking test 184 control_p8_ugwpv1_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_ugwpv1_gnu +Checking test 187 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6214,15 +6386,15 @@ Checking test 184 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 268.543767 - 0: The maximum resident set size (KB) = 1316832 + 0: The total amount of wall time = 271.393803 + 0: The maximum resident set size (KB) = 1314544 -Test 184 control_p8_ugwpv1_gnu PASS +Test 187 control_p8_ugwpv1_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_flake_gnu -Checking test 185 control_flake_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_flake_gnu +Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6232,15 +6404,15 @@ Checking test 185 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 348.991180 - 0: The maximum resident set size (KB) = 598048 + 0: The total amount of wall time = 339.842890 + 0: The maximum resident set size (KB) = 596416 -Test 185 control_flake_gnu PASS +Test 188 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_gnu -Checking test 186 rap_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_gnu +Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6286,15 +6458,15 @@ Checking test 186 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 678.688624 - 0: The maximum resident set size (KB) = 895932 + 0: The total amount of wall time = 688.850999 + 0: The maximum resident set size (KB) = 899336 -Test 186 rap_control_gnu PASS +Test 189 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_decomp_gnu -Checking test 187 rap_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_decomp_gnu +Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6340,15 +6512,15 @@ Checking test 187 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 691.782275 - 0: The maximum resident set size (KB) = 901012 + 0: The total amount of wall time = 698.026338 + 0: The maximum resident set size (KB) = 898828 -Test 187 rap_decomp_gnu PASS +Test 190 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_gnu -Checking test 188 rap_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_gnu +Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6394,15 +6566,15 @@ Checking test 188 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 623.748776 - 0: The maximum resident set size (KB) = 976164 + 0: The total amount of wall time = 614.618491 + 0: The maximum resident set size (KB) = 983772 -Test 188 rap_2threads_gnu PASS +Test 191 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_gnu -Checking test 189 rap_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_gnu +Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6440,15 +6612,15 @@ Checking test 189 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.568778 - 0: The maximum resident set size (KB) = 625864 + 0: The total amount of wall time = 350.530353 + 0: The maximum resident set size (KB) = 626172 -Test 189 rap_restart_gnu PASS +Test 192 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_gnu -Checking test 190 rap_sfcdiff_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_gnu +Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6494,15 +6666,15 @@ Checking test 190 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 682.548778 - 0: The maximum resident set size (KB) = 894904 + 0: The total amount of wall time = 693.052324 + 0: The maximum resident set size (KB) = 899564 -Test 190 rap_sfcdiff_gnu PASS +Test 193 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_decomp_gnu -Checking test 191 rap_sfcdiff_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_decomp_gnu +Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6548,15 +6720,15 @@ Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 699.715375 - 0: The maximum resident set size (KB) = 897088 + 0: The total amount of wall time = 698.449348 + 0: The maximum resident set size (KB) = 898776 -Test 191 rap_sfcdiff_decomp_gnu PASS +Test 194 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_sfcdiff_restart_gnu -Checking test 192 rap_sfcdiff_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_restart_gnu +Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6594,15 +6766,15 @@ Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.536601 - 0: The maximum resident set size (KB) = 635292 + 0: The total amount of wall time = 510.654149 + 0: The maximum resident set size (KB) = 629320 -Test 192 rap_sfcdiff_restart_gnu PASS +Test 195 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_gnu -Checking test 193 hrrr_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_gnu +Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6648,15 +6820,15 @@ Checking test 193 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.261379 - 0: The maximum resident set size (KB) = 892784 + 0: The total amount of wall time = 351.409446 + 0: The maximum resident set size (KB) = 896676 -Test 193 hrrr_control_gnu PASS +Test 196 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_noqr_gnu -Checking test 194 hrrr_control_noqr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_noqr_gnu +Checking test 197 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6702,15 +6874,15 @@ Checking test 194 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 349.349602 - 0: The maximum resident set size (KB) = 879924 + 0: The total amount of wall time = 350.648790 + 0: The maximum resident set size (KB) = 881632 -Test 194 hrrr_control_noqr_gnu PASS +Test 197 hrrr_control_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_gnu -Checking test 195 hrrr_control_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_gnu +Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6756,15 +6928,15 @@ Checking test 195 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 304.163608 - 0: The maximum resident set size (KB) = 973356 + 0: The total amount of wall time = 300.892919 + 0: The maximum resident set size (KB) = 976200 -Test 195 hrrr_control_2threads_gnu PASS +Test 198 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_gnu -Checking test 196 hrrr_control_decomp_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_gnu +Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6810,43 +6982,43 @@ Checking test 196 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.008424 - 0: The maximum resident set size (KB) = 898904 + 0: The total amount of wall time = 345.322593 + 0: The maximum resident set size (KB) = 892640 -Test 196 hrrr_control_decomp_gnu PASS +Test 199 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_gnu -Checking test 197 hrrr_control_restart_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_gnu +Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 182.458855 - 0: The maximum resident set size (KB) = 617740 + 0: The total amount of wall time = 182.079475 + 0: The maximum resident set size (KB) = 612924 -Test 197 hrrr_control_restart_gnu PASS +Test 200 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_noqr_gnu -Checking test 198 hrrr_control_restart_noqr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_noqr_gnu +Checking test 201 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 183.278530 - 0: The maximum resident set size (KB) = 704172 + 0: The total amount of wall time = 180.971377 + 0: The maximum resident set size (KB) = 707068 -Test 198 hrrr_control_restart_noqr_gnu PASS +Test 201 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_gnu -Checking test 199 rrfs_v1beta_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_gnu +Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6892,225 +7064,225 @@ Checking test 199 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 675.015539 - 0: The maximum resident set size (KB) = 894172 + 0: The total amount of wall time = 664.148657 + 0: The maximum resident set size (KB) = 896240 -Test 199 rrfs_v1beta_gnu PASS +Test 202 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_diag_debug_gnu -Checking test 200 control_diag_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_diag_debug_gnu +Checking test 203 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 85.109043 - 0: The maximum resident set size (KB) = 592152 + 0: The total amount of wall time = 86.562936 + 0: The maximum resident set size (KB) = 591800 -Test 200 control_diag_debug_gnu PASS +Test 203 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/regional_debug_gnu -Checking test 201 regional_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_debug_gnu +Checking test 204 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 442.016261 - 0: The maximum resident set size (KB) = 597928 + 0: The total amount of wall time = 449.294940 + 0: The maximum resident set size (KB) = 600880 -Test 201 regional_debug_gnu PASS +Test 204 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_gnu -Checking test 202 rap_control_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_gnu +Checking test 205 rap_control_debug_gnu 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.674214 - 0: The maximum resident set size (KB) = 909316 + 0: The total amount of wall time = 140.363118 + 0: The maximum resident set size (KB) = 909624 -Test 202 rap_control_debug_gnu PASS +Test 205 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_gnu -Checking test 203 hrrr_control_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_gnu +Checking test 206 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.978238 - 0: The maximum resident set size (KB) = 899504 + 0: The total amount of wall time = 137.671917 + 0: The maximum resident set size (KB) = 906588 -Test 203 hrrr_control_debug_gnu PASS +Test 206 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_gf_debug_gnu -Checking test 204 hrrr_gf_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_gf_debug_gnu +Checking test 207 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.895900 - 0: The maximum resident set size (KB) = 903352 + 0: The total amount of wall time = 140.849267 + 0: The maximum resident set size (KB) = 908264 -Test 204 hrrr_gf_debug_gnu PASS +Test 207 hrrr_gf_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_c3_debug_gnu -Checking test 205 hrrr_c3_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_c3_debug_gnu +Checking test 208 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.594409 - 0: The maximum resident set size (KB) = 908756 + 0: The total amount of wall time = 140.613170 + 0: The maximum resident set size (KB) = 910688 -Test 205 hrrr_c3_debug_gnu PASS +Test 208 hrrr_c3_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_diag_debug_gnu -Checking test 206 rap_diag_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_diag_debug_gnu +Checking test 209 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.553650 - 0: The maximum resident set size (KB) = 996124 + 0: The total amount of wall time = 151.277419 + 0: The maximum resident set size (KB) = 996616 -Test 206 rap_diag_debug_gnu PASS +Test 209 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.661576 - 0: The maximum resident set size (KB) = 904724 + 0: The total amount of wall time = 223.005011 + 0: The maximum resident set size (KB) = 908000 -Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_progcld_thompson_debug_gnu -Checking test 208 rap_progcld_thompson_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_progcld_thompson_debug_gnu +Checking test 211 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.369104 - 0: The maximum resident set size (KB) = 905632 + 0: The total amount of wall time = 141.885195 + 0: The maximum resident set size (KB) = 909212 -Test 208 rap_progcld_thompson_debug_gnu PASS +Test 211 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rrfs_v1beta_debug_gnu -Checking test 209 rrfs_v1beta_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_debug_gnu +Checking test 212 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.736189 - 0: The maximum resident set size (KB) = 904108 + 0: The total amount of wall time = 140.077065 + 0: The maximum resident set size (KB) = 906832 -Test 209 rrfs_v1beta_debug_gnu PASS +Test 212 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_ras_debug_gnu -Checking test 210 control_ras_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_debug_gnu +Checking test 213 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 79.582132 - 0: The maximum resident set size (KB) = 544808 + 0: The total amount of wall time = 83.438204 + 0: The maximum resident set size (KB) = 546268 -Test 210 control_ras_debug_gnu PASS +Test 213 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_stochy_debug_gnu -Checking test 211 control_stochy_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_debug_gnu +Checking test 214 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.351182 - 0: The maximum resident set size (KB) = 541280 + 0: The total amount of wall time = 118.474144 + 0: The maximum resident set size (KB) = 533872 -Test 211 control_stochy_debug_gnu PASS +Test 214 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_debug_p8_gnu -Checking test 212 control_debug_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_debug_p8_gnu +Checking test 215 control_debug_p8_gnu 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.395825 - 0: The maximum resident set size (KB) = 1290088 + 0: The total amount of wall time = 92.058145 + 0: The maximum resident set size (KB) = 1292648 -Test 212 control_debug_p8_gnu PASS +Test 215 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_flake_debug_gnu -Checking test 213 rap_flake_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_flake_debug_gnu +Checking test 216 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.584828 - 0: The maximum resident set size (KB) = 908196 + 0: The total amount of wall time = 144.230448 + 0: The maximum resident set size (KB) = 911416 -Test 213 rap_flake_debug_gnu PASS +Test 216 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_clm_lake_debug_gnu -Checking test 214 rap_clm_lake_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_clm_lake_debug_gnu +Checking test 217 rap_clm_lake_debug_gnu 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.011734 - 0: The maximum resident set size (KB) = 909532 + 0: The total amount of wall time = 158.156352 + 0: The maximum resident set size (KB) = 911892 -Test 214 rap_clm_lake_debug_gnu PASS +Test 217 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/gnv1_c96_no_nest_debug_gnu -Checking test 215 gnv1_c96_no_nest_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/gnv1_c96_no_nest_debug_gnu +Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7150,27 +7322,27 @@ Checking test 215 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.016272 - 0: The maximum resident set size (KB) = 912340 + 0: The total amount of wall time = 237.610206 + 0: The maximum resident set size (KB) = 918076 -Test 215 gnv1_c96_no_nest_debug_gnu PASS +Test 218 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/control_wam_debug_gnu -Checking test 216 control_wam_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wam_debug_gnu +Checking test 219 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 140.010691 - 0: The maximum resident set size (KB) = 246124 + 0: The total amount of wall time = 137.840917 + 0: The maximum resident set size (KB) = 244888 -Test 216 control_wam_debug_gnu PASS +Test 219 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn32_phy32_gnu -Checking test 217 rap_control_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn32_phy32_gnu +Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7216,15 +7388,15 @@ Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 697.287976 - 0: The maximum resident set size (KB) = 754972 + 0: The total amount of wall time = 705.011730 + 0: The maximum resident set size (KB) = 753140 -Test 217 rap_control_dyn32_phy32_gnu PASS +Test 220 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_dyn32_phy32_gnu -Checking test 218 hrrr_control_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_dyn32_phy32_gnu +Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7270,15 +7442,15 @@ Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.781436 - 0: The maximum resident set size (KB) = 748576 + 0: The total amount of wall time = 358.021295 + 0: The maximum resident set size (KB) = 750852 -Test 218 hrrr_control_dyn32_phy32_gnu PASS +Test 221 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_2threads_dyn32_phy32_gnu -Checking test 219 rap_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_dyn32_phy32_gnu +Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7324,15 +7496,15 @@ Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 625.738371 - 0: The maximum resident set size (KB) = 809180 + 0: The total amount of wall time = 636.587085 + 0: The maximum resident set size (KB) = 807596 -Test 219 rap_2threads_dyn32_phy32_gnu PASS +Test 222 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7378,15 +7550,15 @@ Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.187570 - 0: The maximum resident set size (KB) = 808296 + 0: The total amount of wall time = 308.834120 + 0: The maximum resident set size (KB) = 804420 -Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7432,15 +7604,15 @@ Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.523368 - 0: The maximum resident set size (KB) = 750092 + 0: The total amount of wall time = 353.790683 + 0: The maximum resident set size (KB) = 751900 -Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_restart_dyn32_phy32_gnu -Checking test 222 rap_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_dyn32_phy32_gnu +Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7478,29 +7650,29 @@ Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 521.143828 - 0: The maximum resident set size (KB) = 600744 + 0: The total amount of wall time = 521.290904 + 0: The maximum resident set size (KB) = 590816 -Test 222 rap_restart_dyn32_phy32_gnu PASS +Test 225 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_restart_dyn32_phy32_gnu -Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_dyn32_phy32_gnu +Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 186.085246 - 0: The maximum resident set size (KB) = 588128 + 0: The total amount of wall time = 189.529358 + 0: The maximum resident set size (KB) = 587056 -Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_control_gnu -Checking test 224 conus13km_control_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_control_gnu +Checking test 227 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7515,41 +7687,41 @@ Checking test 224 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 241.412028 - 0: The maximum resident set size (KB) = 901540 + 0: The total amount of wall time = 238.532584 + 0: The maximum resident set size (KB) = 900716 -Test 224 conus13km_control_gnu PASS +Test 227 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_2threads_gnu -Checking test 225 conus13km_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_2threads_gnu +Checking test 228 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.102434 - 0: The maximum resident set size (KB) = 936780 + 0: The total amount of wall time = 99.578011 + 0: The maximum resident set size (KB) = 938444 -Test 225 conus13km_2threads_gnu PASS +Test 228 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_restart_mismatch_gnu -Checking test 226 conus13km_restart_mismatch_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_restart_mismatch_gnu +Checking test 229 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.578473 - 0: The maximum resident set size (KB) = 597684 + 0: The total amount of wall time = 129.074602 + 0: The maximum resident set size (KB) = 599536 -Test 226 conus13km_restart_mismatch_gnu PASS +Test 229 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_gnu -Checking test 227 rap_control_dyn64_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_gnu +Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7595,43 +7767,43 @@ Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 412.881244 - 0: The maximum resident set size (KB) = 782176 + 0: The total amount of wall time = 410.218153 + 0: The maximum resident set size (KB) = 782324 -Test 227 rap_control_dyn64_phy32_gnu PASS +Test 230 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_debug_dyn32_phy32_gnu -Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_dyn32_phy32_gnu +Checking test 231 rap_control_debug_dyn32_phy32_gnu 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.681795 - 0: The maximum resident set size (KB) = 769436 + 0: The total amount of wall time = 143.541124 + 0: The maximum resident set size (KB) = 764988 -Test 228 rap_control_debug_dyn32_phy32_gnu PASS +Test 231 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/hrrr_control_debug_dyn32_phy32_gnu -Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_dyn32_phy32_gnu +Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.751576 - 0: The maximum resident set size (KB) = 770472 + 0: The total amount of wall time = 140.649872 + 0: The maximum resident set size (KB) = 761540 -Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_gnu -Checking test 230 conus13km_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_gnu +Checking test 233 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7644,15 +7816,15 @@ Checking test 230 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 419.093534 - 0: The maximum resident set size (KB) = 923976 + 0: The total amount of wall time = 417.785990 + 0: The maximum resident set size (KB) = 920404 -Test 230 conus13km_debug_gnu PASS +Test 233 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_qr_gnu -Checking test 231 conus13km_debug_qr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_qr_gnu +Checking test 234 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7665,57 +7837,57 @@ Checking test 231 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 413.248800 - 0: The maximum resident set size (KB) = 637896 + 0: The total amount of wall time = 412.979708 + 0: The maximum resident set size (KB) = 638616 -Test 231 conus13km_debug_qr_gnu PASS +Test 234 conus13km_debug_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_debug_2threads_gnu -Checking test 232 conus13km_debug_2threads_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_2threads_gnu +Checking test 235 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 249.949257 - 0: The maximum resident set size (KB) = 957152 + 0: The total amount of wall time = 255.408230 + 0: The maximum resident set size (KB) = 954428 -Test 232 conus13km_debug_2threads_gnu PASS +Test 235 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/conus13km_radar_tten_debug_gnu -Checking test 233 conus13km_radar_tten_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_radar_tten_debug_gnu +Checking test 236 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 425.920412 - 0: The maximum resident set size (KB) = 987804 + 0: The total amount of wall time = 422.593734 + 0: The maximum resident set size (KB) = 986624 -Test 233 conus13km_radar_tten_debug_gnu PASS +Test 236 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/rap_control_dyn64_phy32_debug_gnu -Checking test 234 rap_control_dyn64_phy32_debug_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_debug_gnu +Checking test 237 rap_control_dyn64_phy32_debug_gnu 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.612416 - 0: The maximum resident set size (KB) = 795120 + 0: The total amount of wall time = 145.939204 + 0: The maximum resident set size (KB) = 790236 -Test 234 rap_control_dyn64_phy32_debug_gnu PASS +Test 237 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_p8_gnu -Checking test 235 cpld_control_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_gnu +Checking test 238 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7779,15 +7951,15 @@ Checking test 235 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 645.579045 - 0: The maximum resident set size (KB) = 1509272 + 0: The total amount of wall time = 611.692257 + 0: The maximum resident set size (KB) = 1505312 -Test 235 cpld_control_p8_gnu PASS +Test 238 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_nowave_noaero_p8_gnu -Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_nowave_noaero_p8_gnu +Checking test 239 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7848,15 +8020,15 @@ Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 379.838088 - 0: The maximum resident set size (KB) = 1408296 + 0: The total amount of wall time = 379.772928 + 0: The maximum resident set size (KB) = 1403828 -Test 236 cpld_control_nowave_noaero_p8_gnu PASS +Test 239 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_p8_gnu -Checking test 237 cpld_debug_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_p8_gnu +Checking test 240 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7908,15 +8080,15 @@ Checking test 237 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.337221 - 0: The maximum resident set size (KB) = 1523796 + 0: The total amount of wall time = 355.062459 + 0: The maximum resident set size (KB) = 1520316 -Test 237 cpld_debug_p8_gnu PASS +Test 240 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_control_pdlib_p8_gnu -Checking test 238 cpld_control_pdlib_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_pdlib_p8_gnu +Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7979,15 +8151,15 @@ Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1302.771362 - 0: The maximum resident set size (KB) = 1380740 + 0: The total amount of wall time = 1312.695629 + 0: The maximum resident set size (KB) = 1379604 -Test 238 cpld_control_pdlib_p8_gnu PASS +Test 241 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/cpld_debug_pdlib_p8_gnu -Checking test 239 cpld_debug_pdlib_p8_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_pdlib_p8_gnu +Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -8038,25 +8210,25 @@ Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 766.871937 - 0: The maximum resident set size (KB) = 1387344 + 0: The total amount of wall time = 761.508502 + 0: The maximum resident set size (KB) = 1385960 -Test 239 cpld_debug_pdlib_p8_gnu PASS +Test 242 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_96201/datm_cdeps_control_cfsr_gnu -Checking test 240 datm_cdeps_control_cfsr_gnu results .... +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_cfsr_gnu +Checking test 243 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.910316 - 0: The maximum resident set size (KB) = 695216 + 0: The total amount of wall time = 166.238576 + 0: The maximum resident set size (KB) = 697040 -Test 240 datm_cdeps_control_cfsr_gnu PASS +Test 243 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 5 18:54:04 UTC 2024 -Elapsed time: 02h:49m:10s. Have a nice day! +Tue Feb 6 08:14:18 UTC 2024 +Elapsed time: 03h:22m:00s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 2ef3db1b71..3ac309a883 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Thu Feb 1 10:00:32 PM CST 2024 +Tue Feb 6 08:30:31 AM CST 2024 Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 440 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 358 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 281 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 278 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 282 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 380 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 529 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 603 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 594 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 212 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 337 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 853 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 372 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 57 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 611 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 632 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 226 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 634 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 608 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 544 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 949 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 569 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 719 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 402 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 303 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 401 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 792 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 987 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 758 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 388 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 174 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 265 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 869 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 960 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 368 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 431 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 196 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 426 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 202 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 223 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 581 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 590 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 599 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 564 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 502 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 525 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 530 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 406 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 210 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 275 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 830 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 338 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 578 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 602 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 177 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 588 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 514 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 487 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 937 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 473 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 666 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1008 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 660 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 707 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 1006 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 665 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 245 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 617 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 620 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 263 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 908 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 121 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.484554 - 0: The maximum resident set size (KB) = 1893456 + 0: The total amount of wall time = 441.482677 + 0: The maximum resident set size (KB) = 1891928 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 793.090238 - 0: The maximum resident set size (KB) = 1771848 + 0: The total amount of wall time = 792.831191 + 0: The maximum resident set size (KB) = 1786132 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 833.273875 - 0: The maximum resident set size (KB) = 2179364 + 0: The total amount of wall time = 830.320864 + 0: The maximum resident set size (KB) = 2180440 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.679870 - 0: The maximum resident set size (KB) = 1176428 + 0: The total amount of wall time = 374.010643 + 0: The maximum resident set size (KB) = 1185100 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 901.582170 - 0: The maximum resident set size (KB) = 1681304 + 0: The total amount of wall time = 888.402698 + 0: The maximum resident set size (KB) = 1689540 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1209.196677 - 0: The maximum resident set size (KB) = 1734016 + 0: The total amount of wall time = 1208.714592 + 0: The maximum resident set size (KB) = 1720032 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,15 +521,87 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 447.598959 - 0: The maximum resident set size (KB) = 2143388 + 0: The total amount of wall time = 437.435518 + 0: The maximum resident set size (KB) = 2073616 Test 007 cpld_control_p8_intel PASS +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 437.937361 + 0: The maximum resident set size (KB) = 2072816 + +Test 008 cpld_control_p8.v2.sfc_intel PASS + + baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -581,15 +653,15 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.418353 - 0: The maximum resident set size (KB) = 1956644 + 0: The total amount of wall time = 243.660208 + 0: The maximum resident set size (KB) = 1960240 -Test 008 cpld_restart_p8_intel PASS +Test 009 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -653,15 +725,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 447.668426 - 0: The maximum resident set size (KB) = 1988964 + 0: The total amount of wall time = 446.710707 + 0: The maximum resident set size (KB) = 1977552 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -713,15 +785,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.785889 - 0: The maximum resident set size (KB) = 1733980 + 0: The total amount of wall time = 244.441506 + 0: The maximum resident set size (KB) = 1737352 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_2threads_p8_intel +Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -773,15 +845,15 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 520.457736 - 0: The maximum resident set size (KB) = 2500948 + 0: The total amount of wall time = 514.291930 + 0: The maximum resident set size (KB) = 2505836 -Test 011 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_decomp_p8_intel +Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -833,15 +905,15 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.912275 - 0: The maximum resident set size (KB) = 2082960 + 0: The total amount of wall time = 435.944343 + 0: The maximum resident set size (KB) = 2078328 -Test 012 cpld_decomp_p8_intel PASS +Test 013 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_mpi_p8_intel +Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -893,15 +965,15 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.316380 - 0: The maximum resident set size (KB) = 1893380 + 0: The total amount of wall time = 371.251025 + 0: The maximum resident set size (KB) = 1900544 -Test 013 cpld_mpi_p8_intel PASS +Test 014 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_ciceC_p8_intel +Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -965,15 +1037,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.237906 - 0: The maximum resident set size (KB) = 2084452 + 0: The total amount of wall time = 444.091362 + 0: The maximum resident set size (KB) = 2062772 -Test 014 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_c192_p8_intel +Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1025,15 +1097,15 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 900.935256 - 0: The maximum resident set size (KB) = 2803012 + 0: The total amount of wall time = 945.479405 + 0: The maximum resident set size (KB) = 2986308 -Test 015 cpld_control_c192_p8_intel PASS +Test 016 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_c192_p8_intel +Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1085,15 +1157,15 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 341.271742 - 0: The maximum resident set size (KB) = 2928692 + 0: The total amount of wall time = 326.659910 + 0: The maximum resident set size (KB) = 2922876 -Test 016 cpld_restart_c192_p8_intel PASS +Test 017 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_bmark_p8_intel -Checking test 017 cpld_bmark_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_bmark_p8_intel +Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1140,15 +1212,15 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 514.528403 - 0: The maximum resident set size (KB) = 3630092 + 0: The total amount of wall time = 491.008640 + 0: The maximum resident set size (KB) = 3703768 -Test 017 cpld_bmark_p8_intel PASS +Test 018 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_bmark_p8_intel -Checking test 018 cpld_restart_bmark_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_bmark_p8_intel +Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1195,15 +1267,15 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.551144 - 0: The maximum resident set size (KB) = 3617288 + 0: The total amount of wall time = 308.154030 + 0: The maximum resident set size (KB) = 3615896 -Test 018 cpld_restart_bmark_p8_intel PASS +Test 019 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_s2sa_p8_intel -Checking test 019 cpld_s2sa_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_s2sa_p8_intel +Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1253,15 +1325,15 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 286.309861 - 0: The maximum resident set size (KB) = 2057880 + 0: The total amount of wall time = 282.137646 + 0: The maximum resident set size (KB) = 2025732 -Test 019 cpld_s2sa_p8_intel PASS +Test 020 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_noaero_p8_intel -Checking test 020 cpld_control_noaero_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_noaero_p8_intel +Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1324,15 +1396,15 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.904539 - 0: The maximum resident set size (KB) = 1784052 + 0: The total amount of wall time = 416.872465 + 0: The maximum resident set size (KB) = 1772208 -Test 020 cpld_control_noaero_p8_intel PASS +Test 021 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_nowave_noaero_p8_intel -Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_nowave_noaero_p8_intel +Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1393,15 +1465,15 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 226.016074 - 0: The maximum resident set size (KB) = 1822120 + 0: The total amount of wall time = 226.234669 + 0: The maximum resident set size (KB) = 1822800 -Test 021 cpld_control_nowave_noaero_p8_intel PASS +Test 022 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_p8_intel -Checking test 022 cpld_debug_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_p8_intel +Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1453,15 +1525,15 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.678941 - 0: The maximum resident set size (KB) = 2067244 + 0: The total amount of wall time = 402.289820 + 0: The maximum resident set size (KB) = 2060716 -Test 022 cpld_debug_p8_intel PASS +Test 023 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_noaero_p8_intel -Checking test 023 cpld_debug_noaero_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_noaero_p8_intel +Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1512,15 +1584,15 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 271.280051 - 0: The maximum resident set size (KB) = 1791540 + 0: The total amount of wall time = 271.037463 + 0: The maximum resident set size (KB) = 1784072 -Test 023 cpld_debug_noaero_p8_intel PASS +Test 024 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_noaero_p8_agrid_intel -Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_noaero_p8_agrid_intel +Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1581,15 +1653,15 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 228.957639 - 0: The maximum resident set size (KB) = 1812916 + 0: The total amount of wall time = 224.176068 + 0: The maximum resident set size (KB) = 1810536 -Test 024 cpld_control_noaero_p8_agrid_intel PASS +Test 025 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_c48_intel -Checking test 025 cpld_control_c48_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_c48_intel +Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1638,15 +1710,15 @@ Checking test 025 cpld_control_c48_intel 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 = 429.186280 - 0: The maximum resident set size (KB) = 2831084 + 0: The total amount of wall time = 427.757100 + 0: The maximum resident set size (KB) = 2833116 -Test 025 cpld_control_c48_intel PASS +Test 026 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_p8_faster_intel -Checking test 026 cpld_control_p8_faster_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8_faster_intel +Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1710,15 +1782,15 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 427.219562 - 0: The maximum resident set size (KB) = 2063272 + 0: The total amount of wall time = 426.105916 + 0: The maximum resident set size (KB) = 2084992 -Test 026 cpld_control_p8_faster_intel PASS +Test 027 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_control_pdlib_p8_intel -Checking test 027 cpld_control_pdlib_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_pdlib_p8_intel +Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1781,15 +1853,15 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 819.228529 - 0: The maximum resident set size (KB) = 1814312 + 0: The total amount of wall time = 820.572661 + 0: The maximum resident set size (KB) = 1802636 -Test 027 cpld_control_pdlib_p8_intel PASS +Test 028 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_restart_pdlib_p8_intel -Checking test 028 cpld_restart_pdlib_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_pdlib_p8_intel +Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1840,15 +1912,15 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 388.517995 - 0: The maximum resident set size (KB) = 1279496 + 0: The total amount of wall time = 389.935492 + 0: The maximum resident set size (KB) = 1289780 -Test 028 cpld_restart_pdlib_p8_intel PASS +Test 029 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_mpi_pdlib_p8_intel -Checking test 029 cpld_mpi_pdlib_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_mpi_pdlib_p8_intel +Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1911,15 +1983,15 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 911.188061 - 0: The maximum resident set size (KB) = 1731252 + 0: The total amount of wall time = 917.382101 + 0: The maximum resident set size (KB) = 1745184 -Test 029 cpld_mpi_pdlib_p8_intel PASS +Test 030 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/cpld_debug_pdlib_p8_intel -Checking test 030 cpld_debug_pdlib_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_pdlib_p8_intel +Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1970,15 +2042,15 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1288.496839 - 0: The maximum resident set size (KB) = 1763196 + 0: The total amount of wall time = 1288.160932 + 0: The maximum resident set size (KB) = 1782884 -Test 030 cpld_debug_pdlib_p8_intel PASS +Test 031 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_flake_intel -Checking test 031 control_flake_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_flake_intel +Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1988,15 +2060,15 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 160.558973 - 0: The maximum resident set size (KB) = 719896 + 0: The total amount of wall time = 161.567182 + 0: The maximum resident set size (KB) = 712484 -Test 031 control_flake_intel PASS +Test 032 control_flake_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_intel -Checking test 032 control_CubedSphereGrid_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_CubedSphereGrid_intel +Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2022,18 +2094,18 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 115.469097 - 0: The maximum resident set size (KB) = 668352 + 0: The total amount of wall time = 113.069754 + 0: The maximum resident set size (KB) = 666596 -Test 032 control_CubedSphereGrid_intel PASS +Test 033 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_parallel_intel -Checking test 033 control_CubedSphereGrid_parallel_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_CubedSphereGrid_parallel_intel +Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -2044,15 +2116,15 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 122.827407 - 0: The maximum resident set size (KB) = 671740 + 0: The total amount of wall time = 118.785833 + 0: The maximum resident set size (KB) = 670292 -Test 033 control_CubedSphereGrid_parallel_intel PASS +Test 034 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_latlon_intel -Checking test 034 control_latlon_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_latlon_intel +Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2062,33 +2134,79 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.871995 - 0: The maximum resident set size (KB) = 672188 + 0: The total amount of wall time = 115.923851 + 0: The maximum resident set size (KB) = 660460 -Test 034 control_latlon_intel PASS +Test 035 control_latlon_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wrtGauss_netcdf_parallel_intel -Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_wrtGauss_netcdf_parallel_intel +Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......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 = 119.276726 - 0: The maximum resident set size (KB) = 675984 + 0: The total amount of wall time = 116.864397 + 0: The maximum resident set size (KB) = 663316 -Test 035 control_wrtGauss_netcdf_parallel_intel PASS +Test 036 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c48_intel -Checking test 036 control_c48_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c48_intel +Checking test 037 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 338.475101 +0: The maximum resident set size (KB) = 857028 + +Test 037 control_c48_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c48.v2.sfc_intel +Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2126,15 +2244,15 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 340.004592 -0: The maximum resident set size (KB) = 860596 +0: The total amount of wall time = 338.180069 +0: The maximum resident set size (KB) = 867880 -Test 036 control_c48_intel PASS +Test 038 control_c48.v2.sfc_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c192_intel -Checking test 037 control_c192_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c192_intel +Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2144,15 +2262,15 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 461.989793 - 0: The maximum resident set size (KB) = 953072 + 0: The total amount of wall time = 454.112541 + 0: The maximum resident set size (KB) = 957888 -Test 037 control_c192_intel PASS +Test 039 control_c192_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c384_intel -Checking test 038 control_c384_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c384_intel +Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2162,15 +2280,15 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 488.440029 - 0: The maximum resident set size (KB) = 1450092 + 0: The total amount of wall time = 473.099229 + 0: The maximum resident set size (KB) = 1448576 -Test 038 control_c384_intel PASS +Test 040 control_c384_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c384gdas_intel -Checking test 039 control_c384gdas_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c384gdas_intel +Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -2212,15 +2330,15 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.818981 - 0: The maximum resident set size (KB) = 1521588 + 0: The total amount of wall time = 420.040747 + 0: The maximum resident set size (KB) = 1528124 -Test 039 control_c384gdas_intel PASS +Test 041 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_intel -Checking test 040 control_stochy_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_intel +Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2230,29 +2348,29 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 76.867347 - 0: The maximum resident set size (KB) = 671016 + 0: The total amount of wall time = 74.866794 + 0: The maximum resident set size (KB) = 667508 -Test 040 control_stochy_intel PASS +Test 042 control_stochy_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_restart_intel -Checking test 041 control_stochy_restart_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_restart_intel +Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 42.754203 - 0: The maximum resident set size (KB) = 537968 + 0: The total amount of wall time = 43.188795 + 0: The maximum resident set size (KB) = 540164 -Test 041 control_stochy_restart_intel PASS +Test 043 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_lndp_intel -Checking test 042 control_lndp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_lndp_intel +Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2262,15 +2380,15 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.127497 - 0: The maximum resident set size (KB) = 672160 + 0: The total amount of wall time = 72.100330 + 0: The maximum resident set size (KB) = 662044 -Test 042 control_lndp_intel PASS +Test 044 control_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_iovr4_intel -Checking test 043 control_iovr4_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_iovr4_intel +Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2284,15 +2402,15 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.744324 - 0: The maximum resident set size (KB) = 676384 + 0: The total amount of wall time = 115.913702 + 0: The maximum resident set size (KB) = 661864 -Test 043 control_iovr4_intel PASS +Test 045 control_iovr4_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_iovr5_intel -Checking test 044 control_iovr5_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_iovr5_intel +Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,15 +2424,15 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.860251 - 0: The maximum resident set size (KB) = 672124 + 0: The total amount of wall time = 115.519252 + 0: The maximum resident set size (KB) = 660180 -Test 044 control_iovr5_intel PASS +Test 046 control_iovr5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_intel -Checking test 045 control_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_intel +Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2360,15 +2478,69 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.061704 - 0: The maximum resident set size (KB) = 1634472 + 0: The total amount of wall time = 145.275122 + 0: The maximum resident set size (KB) = 1636392 -Test 045 control_p8_intel PASS +Test 047 control_p8_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8.v2.sfc_intel +Checking test 048 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 141.252521 + 0: The maximum resident set size (KB) = 1645532 + +Test 048 control_p8.v2.sfc_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_ugwpv1_intel -Checking test 046 control_p8_ugwpv1_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_ugwpv1_intel +Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2414,15 +2586,15 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 137.661254 - 0: The maximum resident set size (KB) = 1656664 + 0: The total amount of wall time = 138.909340 + 0: The maximum resident set size (KB) = 1640728 -Test 046 control_p8_ugwpv1_intel PASS +Test 049 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_p8_intel -Checking test 047 control_restart_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_restart_p8_intel +Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2460,15 +2632,15 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 77.130171 - 0: The maximum resident set size (KB) = 919672 + 0: The total amount of wall time = 76.290599 + 0: The maximum resident set size (KB) = 929860 -Test 047 control_restart_p8_intel PASS +Test 050 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_noqr_p8_intel -Checking test 048 control_noqr_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_noqr_p8_intel +Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2514,15 +2686,15 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 139.775580 - 0: The maximum resident set size (KB) = 1635156 + 0: The total amount of wall time = 139.451430 + 0: The maximum resident set size (KB) = 1627100 -Test 048 control_noqr_p8_intel PASS +Test 051 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_noqr_p8_intel -Checking test 049 control_restart_noqr_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_restart_noqr_p8_intel +Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2560,15 +2732,15 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 74.475199 - 0: The maximum resident set size (KB) = 984860 + 0: The total amount of wall time = 74.110686 + 0: The maximum resident set size (KB) = 992096 -Test 049 control_restart_noqr_p8_intel PASS +Test 052 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_decomp_p8_intel -Checking test 050 control_decomp_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_decomp_p8_intel +Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2610,15 +2782,15 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.152750 - 0: The maximum resident set size (KB) = 1635436 + 0: The total amount of wall time = 145.651561 + 0: The maximum resident set size (KB) = 1619560 -Test 050 control_decomp_p8_intel PASS +Test 053 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_2threads_p8_intel -Checking test 051 control_2threads_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_2threads_p8_intel +Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2660,15 +2832,15 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 132.556556 - 0: The maximum resident set size (KB) = 1731980 + 0: The total amount of wall time = 129.882928 + 0: The maximum resident set size (KB) = 1731492 -Test 051 control_2threads_p8_intel PASS +Test 054 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_lndp_intel -Checking test 052 control_p8_lndp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_lndp_intel +Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2686,15 +2858,15 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 257.060969 - 0: The maximum resident set size (KB) = 1643248 + 0: The total amount of wall time = 259.301005 + 0: The maximum resident set size (KB) = 1637596 -Test 052 control_p8_lndp_intel PASS +Test 055 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_rrtmgp_intel -Checking test 053 control_p8_rrtmgp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_rrtmgp_intel +Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2740,15 +2912,15 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.168379 - 0: The maximum resident set size (KB) = 1720164 + 0: The total amount of wall time = 195.925939 + 0: The maximum resident set size (KB) = 1709260 -Test 053 control_p8_rrtmgp_intel PASS +Test 056 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_mynn_intel +Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2794,15 +2966,15 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 144.519394 - 0: The maximum resident set size (KB) = 1647016 + 0: The total amount of wall time = 142.445209 + 0: The maximum resident set size (KB) = 1642036 -Test 054 control_p8_mynn_intel PASS +Test 057 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/merra2_thompson_intel +Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2848,15 +3020,15 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.715624 - 0: The maximum resident set size (KB) = 1653872 + 0: The total amount of wall time = 168.775486 + 0: The maximum resident set size (KB) = 1659296 -Test 055 merra2_thompson_intel PASS +Test 058 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_control_intel -Checking test 056 regional_control_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_control_intel +Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2866,29 +3038,29 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 259.682423 - 0: The maximum resident set size (KB) = 964060 + 0: The total amount of wall time = 263.318842 + 0: The maximum resident set size (KB) = 958992 -Test 056 regional_control_intel PASS +Test 059 regional_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_restart_intel -Checking test 057 regional_restart_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_restart_intel +Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 139.218997 - 0: The maximum resident set size (KB) = 1110500 + 0: The total amount of wall time = 140.081234 + 0: The maximum resident set size (KB) = 1109916 -Test 057 regional_restart_intel PASS +Test 060 regional_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_decomp_intel +Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2898,15 +3070,15 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 274.107719 - 0: The maximum resident set size (KB) = 947504 + 0: The total amount of wall time = 272.140335 + 0: The maximum resident set size (KB) = 947312 -Test 058 regional_decomp_intel PASS +Test 061 regional_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_2threads_intel +Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2916,44 +3088,44 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 159.762424 - 0: The maximum resident set size (KB) = 914548 + 0: The total amount of wall time = 162.270693 + 0: The maximum resident set size (KB) = 922212 -Test 059 regional_2threads_intel PASS +Test 062 regional_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_noquilt_intel -Checking test 060 regional_noquilt_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_noquilt_intel +Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 252.677829 - 0: The maximum resident set size (KB) = 1493136 + 0: The total amount of wall time = 251.639497 + 0: The maximum resident set size (KB) = 1490716 -Test 060 regional_noquilt_intel PASS +Test 063 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_netcdf_parallel_intel +Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 262.956978 - 0: The maximum resident set size (KB) = 961480 + 0: The total amount of wall time = 256.147942 + 0: The maximum resident set size (KB) = 959484 -Test 061 regional_netcdf_parallel_intel PASS +Test 064 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_2dwrtdecomp_intel +Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2963,15 +3135,15 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.988556 - 0: The maximum resident set size (KB) = 959960 + 0: The total amount of wall time = 261.879716 + 0: The maximum resident set size (KB) = 964364 -Test 062 regional_2dwrtdecomp_intel PASS +Test 065 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_wofs_intel +Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2981,15 +3153,15 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 324.714372 - 0: The maximum resident set size (KB) = 2092488 + 0: The total amount of wall time = 330.967067 + 0: The maximum resident set size (KB) = 2065984 -Test 063 regional_wofs_intel PASS +Test 066 regional_wofs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_intel -Checking test 064 rap_control_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_intel +Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3035,15 +3207,15 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.625947 - 0: The maximum resident set size (KB) = 1190880 + 0: The total amount of wall time = 382.127586 + 0: The maximum resident set size (KB) = 1202840 -Test 064 rap_control_intel PASS +Test 067 rap_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_spp_sppt_shum_skeb_intel -Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_spp_sppt_shum_skeb_intel +Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3053,15 +3225,15 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 211.718328 - 0: The maximum resident set size (KB) = 1412448 + 0: The total amount of wall time = 196.454789 + 0: The maximum resident set size (KB) = 1399776 -Test 065 regional_spp_sppt_shum_skeb_intel PASS +Test 068 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_decomp_intel -Checking test 066 rap_decomp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_decomp_intel +Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3107,15 +3279,15 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 402.497674 - 0: The maximum resident set size (KB) = 1138468 + 0: The total amount of wall time = 395.591409 + 0: The maximum resident set size (KB) = 1124732 -Test 066 rap_decomp_intel PASS +Test 069 rap_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_intel +Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3161,15 +3333,15 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.407079 - 0: The maximum resident set size (KB) = 1378812 + 0: The total amount of wall time = 361.300610 + 0: The maximum resident set size (KB) = 1362252 -Test 067 rap_2threads_intel PASS +Test 070 rap_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_intel -Checking test 068 rap_restart_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_intel +Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3207,15 +3379,15 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.224144 - 0: The maximum resident set size (KB) = 1134656 + 0: The total amount of wall time = 202.713075 + 0: The maximum resident set size (KB) = 1145100 -Test 068 rap_restart_intel PASS +Test 071 rap_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_intel +Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3261,15 +3433,15 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 383.522159 - 0: The maximum resident set size (KB) = 1202664 + 0: The total amount of wall time = 378.965513 + 0: The maximum resident set size (KB) = 1198436 -Test 069 rap_sfcdiff_intel PASS +Test 072 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_decomp_intel +Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3315,15 +3487,15 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.592510 - 0: The maximum resident set size (KB) = 1164520 + 0: The total amount of wall time = 398.281158 + 0: The maximum resident set size (KB) = 1139532 -Test 070 rap_sfcdiff_decomp_intel PASS +Test 073 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_restart_intel +Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3361,15 +3533,15 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.139264 - 0: The maximum resident set size (KB) = 1193180 + 0: The total amount of wall time = 288.257235 + 0: The maximum resident set size (KB) = 1187496 -Test 071 rap_sfcdiff_restart_intel PASS +Test 074 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_intel -Checking test 072 hrrr_control_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_intel +Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3415,15 +3587,15 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.555986 - 0: The maximum resident set size (KB) = 1067560 + 0: The total amount of wall time = 202.034899 + 0: The maximum resident set size (KB) = 1094640 -Test 072 hrrr_control_intel PASS +Test 075 hrrr_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_intel -Checking test 073 hrrr_control_decomp_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_intel +Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3469,15 +3641,15 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.294520 - 0: The maximum resident set size (KB) = 1046540 + 0: The total amount of wall time = 196.296303 + 0: The maximum resident set size (KB) = 1041040 -Test 073 hrrr_control_decomp_intel PASS +Test 076 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_intel +Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3523,29 +3695,29 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.885566 - 0: The maximum resident set size (KB) = 1126204 + 0: The total amount of wall time = 176.362251 + 0: The maximum resident set size (KB) = 1124748 -Test 074 hrrr_control_2threads_intel PASS +Test 077 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_intel -Checking test 075 hrrr_control_restart_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_intel +Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.846971 - 0: The maximum resident set size (KB) = 1033336 + 0: The total amount of wall time = 101.028543 + 0: The maximum resident set size (KB) = 1030804 -Test 075 hrrr_control_restart_intel PASS +Test 078 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_intel -Checking test 076 rrfs_v1beta_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_intel +Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3591,15 +3763,15 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.191837 - 0: The maximum resident set size (KB) = 1188564 + 0: The total amount of wall time = 366.552421 + 0: The maximum resident set size (KB) = 1198212 -Test 076 rrfs_v1beta_intel PASS +Test 079 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1nssl_intel -Checking test 077 rrfs_v1nssl_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1nssl_intel +Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3613,15 +3785,15 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 446.802734 - 0: The maximum resident set size (KB) = 2004024 + 0: The total amount of wall time = 447.407536 + 0: The maximum resident set size (KB) = 2003844 -Test 077 rrfs_v1nssl_intel PASS +Test 080 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1nssl_nohailnoccn_intel -Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1nssl_nohailnoccn_intel +Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3635,15 +3807,15 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 434.135716 - 0: The maximum resident set size (KB) = 2186512 + 0: The total amount of wall time = 434.591092 + 0: The maximum resident set size (KB) = 2169584 -Test 078 rrfs_v1nssl_nohailnoccn_intel PASS +Test 081 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmg_intel +Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3653,15 +3825,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 297.044587 - 0: The maximum resident set size (KB) = 835240 + 0: The total amount of wall time = 294.899811 + 0: The maximum resident set size (KB) = 837704 -Test 079 control_csawmg_intel PASS +Test 082 control_csawmg_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmgt_intel +Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3671,15 +3843,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.377983 - 0: The maximum resident set size (KB) = 823612 + 0: The total amount of wall time = 291.833160 + 0: The maximum resident set size (KB) = 828636 -Test 080 control_csawmgt_intel PASS +Test 083 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_intel -Checking test 081 control_ras_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_intel +Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3689,27 +3861,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.654382 - 0: The maximum resident set size (KB) = 815960 + 0: The total amount of wall time = 163.180056 + 0: The maximum resident set size (KB) = 800228 -Test 081 control_ras_intel PASS +Test 084 control_ras_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wam_intel -Checking test 082 control_wam_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_wam_intel +Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 99.655438 - 0: The maximum resident set size (KB) = 812260 + 0: The total amount of wall time = 102.070944 + 0: The maximum resident set size (KB) = 785772 -Test 082 control_wam_intel PASS +Test 085 control_wam_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_faster_intel +Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3755,15 +3927,15 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.181433 - 0: The maximum resident set size (KB) = 1647156 + 0: The total amount of wall time = 128.694584 + 0: The maximum resident set size (KB) = 1645020 -Test 083 control_p8_faster_intel PASS +Test 086 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_control_faster_intel +Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3773,15 +3945,15 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 237.880900 - 0: The maximum resident set size (KB) = 956444 + 0: The total amount of wall time = 234.685003 + 0: The maximum resident set size (KB) = 956736 -Test 084 regional_control_faster_intel PASS +Test 087 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_CubedSphereGrid_debug_intel +Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3807,365 +3979,365 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 125.470245 - 0: The maximum resident set size (KB) = 814572 + 0: The total amount of wall time = 126.508893 + 0: The maximum resident set size (KB) = 820808 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 088 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 125.132941 - 0: The maximum resident set size (KB) = 823136 + 0: The total amount of wall time = 126.609412 + 0: The maximum resident set size (KB) = 822596 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_debug_intel +Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.991790 - 0: The maximum resident set size (KB) = 832684 + 0: The total amount of wall time = 141.134077 + 0: The maximum resident set size (KB) = 839584 -Test 087 control_stochy_debug_intel PASS +Test 090 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_lndp_debug_intel +Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.966450 - 0: The maximum resident set size (KB) = 828920 + 0: The total amount of wall time = 126.257185 + 0: The maximum resident set size (KB) = 827112 -Test 088 control_lndp_debug_intel PASS +Test 091 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmg_debug_intel +Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.627451 - 0: The maximum resident set size (KB) = 866868 + 0: The total amount of wall time = 191.855865 + 0: The maximum resident set size (KB) = 868532 -Test 089 control_csawmg_debug_intel PASS +Test 092 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmgt_debug_intel +Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.947157 - 0: The maximum resident set size (KB) = 878232 + 0: The total amount of wall time = 188.578136 + 0: The maximum resident set size (KB) = 868144 -Test 090 control_csawmgt_debug_intel PASS +Test 093 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_debug_intel +Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.513632 - 0: The maximum resident set size (KB) = 828404 + 0: The total amount of wall time = 126.097454 + 0: The maximum resident set size (KB) = 833296 -Test 091 control_ras_debug_intel PASS +Test 094 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_diag_debug_intel +Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 129.751338 - 0: The maximum resident set size (KB) = 881996 + 0: The total amount of wall time = 126.413802 + 0: The maximum resident set size (KB) = 884928 -Test 092 control_diag_debug_intel PASS +Test 095 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_debug_p8_intel +Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 132.554376 - 0: The maximum resident set size (KB) = 1658420 + 0: The total amount of wall time = 131.099961 + 0: The maximum resident set size (KB) = 1667780 -Test 093 control_debug_p8_intel PASS +Test 096 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_debug_intel -Checking test 094 regional_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_debug_intel +Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 836.552612 - 0: The maximum resident set size (KB) = 890324 + 0: The total amount of wall time = 849.335570 + 0: The maximum resident set size (KB) = 887132 -Test 094 regional_debug_intel PASS +Test 097 regional_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_intel +Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.556729 - 0: The maximum resident set size (KB) = 1216664 + 0: The total amount of wall time = 226.925512 + 0: The maximum resident set size (KB) = 1220636 -Test 095 rap_control_debug_intel PASS +Test 098 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_intel +Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.667200 - 0: The maximum resident set size (KB) = 1227340 + 0: The total amount of wall time = 224.644804 + 0: The maximum resident set size (KB) = 1209856 -Test 096 hrrr_control_debug_intel PASS +Test 099 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_gf_debug_intel -Checking test 097 hrrr_gf_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_gf_debug_intel +Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.969170 - 0: The maximum resident set size (KB) = 1212456 + 0: The total amount of wall time = 230.078701 + 0: The maximum resident set size (KB) = 1222088 -Test 097 hrrr_gf_debug_intel PASS +Test 100 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_c3_debug_intel -Checking test 098 hrrr_c3_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_c3_debug_intel +Checking test 101 hrrr_c3_debug_intel 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.635420 - 0: The maximum resident set size (KB) = 1222004 + 0: The total amount of wall time = 230.524699 + 0: The maximum resident set size (KB) = 1231160 -Test 098 hrrr_c3_debug_intel PASS +Test 101 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_unified_drag_suite_debug_intel -Checking test 099 rap_unified_drag_suite_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_unified_drag_suite_debug_intel +Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.595457 - 0: The maximum resident set size (KB) = 1215076 + 0: The total amount of wall time = 229.696494 + 0: The maximum resident set size (KB) = 1219844 -Test 099 rap_unified_drag_suite_debug_intel PASS +Test 102 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_diag_debug_intel -Checking test 100 rap_diag_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_diag_debug_intel +Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.791318 - 0: The maximum resident set size (KB) = 1300716 + 0: The total amount of wall time = 240.018327 + 0: The maximum resident set size (KB) = 1306328 -Test 100 rap_diag_debug_intel PASS +Test 103 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_cires_ugwp_debug_intel -Checking test 101 rap_cires_ugwp_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_cires_ugwp_debug_intel +Checking test 104 rap_cires_ugwp_debug_intel 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.163433 - 0: The maximum resident set size (KB) = 1219900 + 0: The total amount of wall time = 234.378794 + 0: The maximum resident set size (KB) = 1210648 -Test 101 rap_cires_ugwp_debug_intel PASS +Test 104 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_unified_ugwp_debug_intel -Checking test 102 rap_unified_ugwp_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_unified_ugwp_debug_intel +Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.851145 - 0: The maximum resident set size (KB) = 1209548 + 0: The total amount of wall time = 233.818603 + 0: The maximum resident set size (KB) = 1221652 -Test 102 rap_unified_ugwp_debug_intel PASS +Test 105 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_lndp_debug_intel -Checking test 103 rap_lndp_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_lndp_debug_intel +Checking test 106 rap_lndp_debug_intel 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.125197 - 0: The maximum resident set size (KB) = 1222332 + 0: The total amount of wall time = 231.368314 + 0: The maximum resident set size (KB) = 1219584 -Test 103 rap_lndp_debug_intel PASS +Test 106 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_progcld_thompson_debug_intel -Checking test 104 rap_progcld_thompson_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_progcld_thompson_debug_intel +Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.216756 - 0: The maximum resident set size (KB) = 1206980 + 0: The total amount of wall time = 224.938137 + 0: The maximum resident set size (KB) = 1232600 -Test 104 rap_progcld_thompson_debug_intel PASS +Test 107 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_debug_intel -Checking test 105 rap_noah_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_noah_debug_intel +Checking test 108 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.875726 - 0: The maximum resident set size (KB) = 1222916 + 0: The total amount of wall time = 226.602039 + 0: The maximum resident set size (KB) = 1220944 -Test 105 rap_noah_debug_intel PASS +Test 108 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_debug_intel -Checking test 106 rap_sfcdiff_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_debug_intel +Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.810219 - 0: The maximum resident set size (KB) = 1222216 + 0: The total amount of wall time = 230.282478 + 0: The maximum resident set size (KB) = 1217052 -Test 106 rap_sfcdiff_debug_intel PASS +Test 109 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 382.980955 - 0: The maximum resident set size (KB) = 1214644 + 0: The total amount of wall time = 380.897378 + 0: The maximum resident set size (KB) = 1214424 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_debug_intel -Checking test 108 rrfs_v1beta_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_debug_intel +Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.960365 - 0: The maximum resident set size (KB) = 1207040 + 0: The total amount of wall time = 228.633835 + 0: The maximum resident set size (KB) = 1216296 -Test 108 rrfs_v1beta_debug_intel PASS +Test 111 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_clm_lake_debug_intel -Checking test 109 rap_clm_lake_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_clm_lake_debug_intel +Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.957022 - 0: The maximum resident set size (KB) = 1216724 + 0: The total amount of wall time = 278.878076 + 0: The maximum resident set size (KB) = 1219808 -Test 109 rap_clm_lake_debug_intel PASS +Test 112 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_flake_debug_intel -Checking test 110 rap_flake_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_flake_debug_intel +Checking test 113 rap_flake_debug_intel 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.389432 - 0: The maximum resident set size (KB) = 1218844 + 0: The total amount of wall time = 229.490611 + 0: The maximum resident set size (KB) = 1226520 -Test 110 rap_flake_debug_intel PASS +Test 113 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_c96_no_nest_debug_intel -Checking test 111 gnv1_c96_no_nest_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/gnv1_c96_no_nest_debug_intel +Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4205,15 +4377,15 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.982991 - 0: The maximum resident set size (KB) = 1217272 + 0: The total amount of wall time = 398.994317 + 0: The maximum resident set size (KB) = 1213440 -Test 111 gnv1_c96_no_nest_debug_intel PASS +Test 114 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4223,15 +4395,15 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 201.215618 - 0: The maximum resident set size (KB) = 1278060 + 0: The total amount of wall time = 184.332430 + 0: The maximum resident set size (KB) = 1271408 -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn32_phy32_intel -Checking test 113 rap_control_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn32_phy32_intel +Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4277,15 +4449,15 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.079420 - 0: The maximum resident set size (KB) = 1138676 + 0: The total amount of wall time = 314.521427 + 0: The maximum resident set size (KB) = 1146052 -Test 113 rap_control_dyn32_phy32_intel PASS +Test 116 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_dyn32_phy32_intel -Checking test 114 hrrr_control_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_dyn32_phy32_intel +Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4331,15 +4503,15 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.499509 - 0: The maximum resident set size (KB) = 1029072 + 0: The total amount of wall time = 163.912763 + 0: The maximum resident set size (KB) = 1027292 -Test 114 hrrr_control_dyn32_phy32_intel PASS +Test 117 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_dyn32_phy32_intel -Checking test 115 rap_2threads_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_dyn32_phy32_intel +Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4385,15 +4557,15 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 295.368465 - 0: The maximum resident set size (KB) = 1293040 + 0: The total amount of wall time = 299.549024 + 0: The maximum resident set size (KB) = 1284332 -Test 115 rap_2threads_dyn32_phy32_intel PASS +Test 118 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_dyn32_phy32_intel -Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_dyn32_phy32_intel +Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4439,15 +4611,15 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.814221 - 0: The maximum resident set size (KB) = 1040040 + 0: The total amount of wall time = 152.711198 + 0: The maximum resident set size (KB) = 1042136 -Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_dyn32_phy32_intel -Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_dyn32_phy32_intel +Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4493,15 +4665,15 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.198472 - 0: The maximum resident set size (KB) = 993740 + 0: The total amount of wall time = 171.588233 + 0: The maximum resident set size (KB) = 995788 -Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_dyn32_phy32_intel -Checking test 118 rap_restart_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_dyn32_phy32_intel +Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4539,29 +4711,29 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.867267 - 0: The maximum resident set size (KB) = 1099876 + 0: The total amount of wall time = 235.459189 + 0: The maximum resident set size (KB) = 1090540 -Test 118 rap_restart_dyn32_phy32_intel PASS +Test 121 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_dyn32_phy32_intel +Checking test 122 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.178843 - 0: The maximum resident set size (KB) = 964632 + 0: The total amount of wall time = 87.574424 + 0: The maximum resident set size (KB) = 957976 -Test 119 hrrr_control_restart_dyn32_phy32_intel PASS +Test 122 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_control_intel -Checking test 120 conus13km_control_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_control_intel +Checking test 123 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4576,41 +4748,41 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 101.594377 - 0: The maximum resident set size (KB) = 1306864 + 0: The total amount of wall time = 95.468840 + 0: The maximum resident set size (KB) = 1302004 -Test 120 conus13km_control_intel PASS +Test 123 conus13km_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_2threads_intel -Checking test 121 conus13km_2threads_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_2threads_intel +Checking test 124 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 45.171303 - 0: The maximum resident set size (KB) = 1199820 + 0: The total amount of wall time = 37.221597 + 0: The maximum resident set size (KB) = 1212812 -Test 121 conus13km_2threads_intel PASS +Test 124 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_restart_mismatch_intel -Checking test 122 conus13km_restart_mismatch_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_restart_mismatch_intel +Checking test 125 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 55.999888 - 0: The maximum resident set size (KB) = 1158632 + 0: The total amount of wall time = 54.804950 + 0: The maximum resident set size (KB) = 1152808 -Test 122 conus13km_restart_mismatch_intel PASS +Test 125 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_intel +Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4656,43 +4828,43 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.873372 - 0: The maximum resident set size (KB) = 1091324 + 0: The total amount of wall time = 212.693003 + 0: The maximum resident set size (KB) = 1081156 -Test 123 rap_control_dyn64_phy32_intel PASS +Test 126 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_dyn32_phy32_intel +Checking test 127 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.713228 - 0: The maximum resident set size (KB) = 1095388 + 0: The total amount of wall time = 227.375493 + 0: The maximum resident set size (KB) = 1095408 -Test 124 rap_control_debug_dyn32_phy32_intel PASS +Test 127 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_dyn32_phy32_intel +Checking test 128 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.321839 - 0: The maximum resident set size (KB) = 1095304 + 0: The total amount of wall time = 223.863300 + 0: The maximum resident set size (KB) = 1096420 -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS +Test 128 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_intel -Checking test 126 conus13km_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_intel +Checking test 129 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4705,15 +4877,15 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 714.814052 - 0: The maximum resident set size (KB) = 1349380 + 0: The total amount of wall time = 700.244525 + 0: The maximum resident set size (KB) = 1331776 -Test 126 conus13km_debug_intel PASS +Test 129 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_qr_intel -Checking test 127 conus13km_debug_qr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_qr_intel +Checking test 130 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4726,82 +4898,82 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 703.419408 - 0: The maximum resident set size (KB) = 997992 + 0: The total amount of wall time = 708.387168 + 0: The maximum resident set size (KB) = 981376 -Test 127 conus13km_debug_qr_intel PASS +Test 130 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_2threads_intel -Checking test 128 conus13km_debug_2threads_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_2threads_intel +Checking test 131 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 398.636484 - 0: The maximum resident set size (KB) = 1233004 + 0: The total amount of wall time = 394.298957 + 0: The maximum resident set size (KB) = 1239492 -Test 128 conus13km_debug_2threads_intel PASS +Test 131 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_radar_tten_debug_intel -Checking test 129 conus13km_radar_tten_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_radar_tten_debug_intel +Checking test 132 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 700.811067 - 0: The maximum resident set size (KB) = 1412176 + 0: The total amount of wall time = 692.167172 + 0: The maximum resident set size (KB) = 1393512 -Test 129 conus13km_radar_tten_debug_intel PASS +Test 132 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_debug_intel -Checking test 130 rap_control_dyn64_phy32_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_debug_intel +Checking test 133 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.167810 - 0: The maximum resident set size (KB) = 1155192 + 0: The total amount of wall time = 230.322269 + 0: The maximum resident set size (KB) = 1154624 -Test 130 rap_control_dyn64_phy32_debug_intel PASS +Test 133 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_intel -Checking test 131 hafs_regional_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_intel +Checking test 134 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 324.730576 - 0: The maximum resident set size (KB) = 883568 + 0: The total amount of wall time = 311.849257 + 0: The maximum resident set size (KB) = 877224 -Test 131 hafs_regional_atm_intel PASS +Test 134 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 303.203408 - 0: The maximum resident set size (KB) = 1280376 + 0: The total amount of wall time = 294.375147 + 0: The maximum resident set size (KB) = 1274880 -Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_ocn_intel -Checking test 133 hafs_regional_atm_ocn_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_ocn_intel +Checking test 136 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4809,15 +4981,15 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 386.410592 - 0: The maximum resident set size (KB) = 944528 + 0: The total amount of wall time = 372.196704 + 0: The maximum resident set size (KB) = 940400 -Test 133 hafs_regional_atm_ocn_intel PASS +Test 136 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_wav_intel -Checking test 134 hafs_regional_atm_wav_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_wav_intel +Checking test 137 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4825,15 +4997,15 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 832.722555 - 0: The maximum resident set size (KB) = 977228 + 0: The total amount of wall time = 815.189509 + 0: The maximum resident set size (KB) = 984832 -Test 134 hafs_regional_atm_wav_intel PASS +Test 137 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_atm_ocn_wav_intel -Checking test 135 hafs_regional_atm_ocn_wav_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_ocn_wav_intel +Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4843,15 +5015,15 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 905.794290 - 0: The maximum resident set size (KB) = 1003888 + 0: The total amount of wall time = 884.528063 + 0: The maximum resident set size (KB) = 1008036 -Test 135 hafs_regional_atm_ocn_wav_intel PASS +Test 138 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_1nest_atm_intel -Checking test 136 hafs_regional_1nest_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_1nest_atm_intel +Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4861,9 +5033,9 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK @@ -4872,15 +5044,15 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 316.953507 - 0: The maximum resident set size (KB) = 604264 + 0: The total amount of wall time = 315.200676 + 0: The maximum resident set size (KB) = 601744 -Test 136 hafs_regional_1nest_atm_intel PASS +Test 139 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_telescopic_2nests_atm_intel -Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_telescopic_2nests_atm_intel +Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4888,15 +5060,15 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 407.877105 - 0: The maximum resident set size (KB) = 619996 + 0: The total amount of wall time = 404.777996 + 0: The maximum resident set size (KB) = 618388 -Test 137 hafs_regional_telescopic_2nests_atm_intel PASS +Test 140 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_global_1nest_atm_intel +Checking test 141 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4925,7 +5097,7 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK @@ -4942,15 +5114,15 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 156.085969 - 0: The maximum resident set size (KB) = 433736 + 0: The total amount of wall time = 157.960120 + 0: The maximum resident set size (KB) = 436740 -Test 138 hafs_global_1nest_atm_intel PASS +Test 141 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_multiple_4nests_atm_intel -Checking test 139 hafs_global_multiple_4nests_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_global_multiple_4nests_atm_intel +Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4991,36 +5163,36 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK @@ -5031,15 +5203,15 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 462.226901 - 0: The maximum resident set size (KB) = 547132 + 0: The total amount of wall time = 450.800048 + 0: The maximum resident set size (KB) = 546180 -Test 139 hafs_global_multiple_4nests_atm_intel PASS +Test 142 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_specified_moving_1nest_atm_intel -Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_specified_moving_1nest_atm_intel +Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5047,15 +5219,15 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 223.727900 - 0: The maximum resident set size (KB) = 616300 + 0: The total amount of wall time = 225.951711 + 0: The maximum resident set size (KB) = 615620 -Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5070,21 +5242,21 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 212.472712 - 0: The maximum resident set size (KB) = 620256 + 0: The total amount of wall time = 211.052065 + 0: The maximum resident set size (KB) = 612152 -Test 141 hafs_regional_storm_following_1nest_atm_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5092,97 +5264,97 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 288.116317 - 0: The maximum resident set size (KB) = 676824 + 0: The total amount of wall time = 280.914220 + 0: The maximum resident set size (KB) = 682572 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_global_storm_following_1nest_atm_intel -Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_global_storm_following_1nest_atm_intel +Checking test 146 hafs_global_storm_following_1nest_atm_intel 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 = 76.737288 - 0: The maximum resident set size (KB) = 451580 + 0: The total amount of wall time = 73.736025 + 0: The maximum resident set size (KB) = 449564 -Test 143 hafs_global_storm_following_1nest_atm_intel PASS +Test 146 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_nested_intel -Checking test 144 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/gnv1_nested_intel +Checking test 147 gnv1_nested_intel results .... + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 243.951915 - 0: The maximum resident set size (KB) = 897024 - -Test 144 gnv1_nested_intel PASS Tries: 2 + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK + + 0: The total amount of wall time = 240.181047 + 0: The maximum resident set size (KB) = 897112 + +Test 147 gnv1_nested_intel FAIL Tries: 2 baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 667.022543 - 0: The maximum resident set size (KB) = 634396 + 0: The total amount of wall time = 664.552696 + 0: The maximum resident set size (KB) = 690108 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5192,162 +5364,197 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 957.706181 - 0: The maximum resident set size (KB) = 848040 + 0: The total amount of wall time = 1010.616918 + 0: The maximum resident set size (KB) = 763580 + +Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 966.046533 + 0: The maximum resident set size (KB) = 847292 + +Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 612.677651 + 0: The maximum resident set size (KB) = 826384 + +Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_docn_intel -Checking test 149 hafs_regional_docn_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_docn_intel +Checking test 152 hafs_regional_docn_intel 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 = 323.775451 - 0: The maximum resident set size (KB) = 952092 + 0: The total amount of wall time = 312.381029 + 0: The maximum resident set size (KB) = 935032 -Test 149 hafs_regional_docn_intel PASS +Test 152 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_docn_oisst_intel -Checking test 150 hafs_regional_docn_oisst_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_docn_oisst_intel +Checking test 153 hafs_regional_docn_oisst_intel 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 = 324.844830 - 0: The maximum resident set size (KB) = 938744 + 0: The total amount of wall time = 313.692534 + 0: The maximum resident set size (KB) = 934892 -Test 150 hafs_regional_docn_oisst_intel PASS +Test 153 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hafs_regional_datm_cdeps_intel -Checking test 151 hafs_regional_datm_cdeps_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_datm_cdeps_intel +Checking test 154 hafs_regional_datm_cdeps_intel 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 = 973.517080 - 0: The maximum resident set size (KB) = 1344836 + 0: The total amount of wall time = 977.088810 + 0: The maximum resident set size (KB) = 1336096 -Test 151 hafs_regional_datm_cdeps_intel PASS +Test 154 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_cfsr_intel -Checking test 152 datm_cdeps_control_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_control_cfsr_intel +Checking test 155 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.332679 - 0: The maximum resident set size (KB) = 1155588 + 0: The total amount of wall time = 123.661816 + 0: The maximum resident set size (KB) = 1121224 -Test 152 datm_cdeps_control_cfsr_intel PASS +Test 155 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_restart_cfsr_intel -Checking test 153 datm_cdeps_restart_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_restart_cfsr_intel +Checking test 156 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 73.180763 - 0: The maximum resident set size (KB) = 1097492 + 0: The total amount of wall time = 73.451143 + 0: The maximum resident set size (KB) = 1105124 -Test 153 datm_cdeps_restart_cfsr_intel PASS +Test 156 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_gefs_intel -Checking test 154 datm_cdeps_control_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_control_gefs_intel +Checking test 157 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.242790 - 0: The maximum resident set size (KB) = 1010916 + 0: The total amount of wall time = 117.287839 + 0: The maximum resident set size (KB) = 1011768 -Test 154 datm_cdeps_control_gefs_intel PASS +Test 157 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_iau_gefs_intel -Checking test 155 datm_cdeps_iau_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_iau_gefs_intel +Checking test 158 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.071605 - 0: The maximum resident set size (KB) = 1011076 + 0: The total amount of wall time = 120.859018 + 0: The maximum resident set size (KB) = 1021344 -Test 155 datm_cdeps_iau_gefs_intel PASS +Test 158 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_stochy_gefs_intel -Checking test 156 datm_cdeps_stochy_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_stochy_gefs_intel +Checking test 159 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.169395 - 0: The maximum resident set size (KB) = 1011552 + 0: The total amount of wall time = 120.701055 + 0: The maximum resident set size (KB) = 1014408 -Test 156 datm_cdeps_stochy_gefs_intel PASS +Test 159 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_ciceC_cfsr_intel -Checking test 157 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_ciceC_cfsr_intel +Checking test 160 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.276614 - 0: The maximum resident set size (KB) = 1150656 + 0: The total amount of wall time = 123.364387 + 0: The maximum resident set size (KB) = 1149832 -Test 157 datm_cdeps_ciceC_cfsr_intel PASS +Test 160 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_bulk_cfsr_intel -Checking test 158 datm_cdeps_bulk_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_bulk_cfsr_intel +Checking test 161 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.858840 - 0: The maximum resident set size (KB) = 1151816 + 0: The total amount of wall time = 124.485300 + 0: The maximum resident set size (KB) = 1131088 -Test 158 datm_cdeps_bulk_cfsr_intel PASS +Test 161 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_bulk_gefs_intel -Checking test 159 datm_cdeps_bulk_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_bulk_gefs_intel +Checking test 162 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.074949 - 0: The maximum resident set size (KB) = 1009032 + 0: The total amount of wall time = 118.473654 + 0: The maximum resident set size (KB) = 1014068 -Test 159 datm_cdeps_bulk_gefs_intel PASS +Test 162 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_mx025_cfsr_intel -Checking test 160 datm_cdeps_mx025_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_mx025_cfsr_intel +Checking test 163 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5355,15 +5562,15 @@ Checking test 160 datm_cdeps_mx025_cfsr_intel 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 = 286.740938 - 0: The maximum resident set size (KB) = 1162568 + 0: The total amount of wall time = 288.403698 + 0: The maximum resident set size (KB) = 1167028 -Test 160 datm_cdeps_mx025_cfsr_intel PASS +Test 163 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_mx025_gefs_intel -Checking test 161 datm_cdeps_mx025_gefs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_mx025_gefs_intel +Checking test 164 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5371,78 +5578,78 @@ Checking test 161 datm_cdeps_mx025_gefs_intel 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 = 284.765434 - 0: The maximum resident set size (KB) = 1158664 + 0: The total amount of wall time = 285.113925 + 0: The maximum resident set size (KB) = 1158960 -Test 161 datm_cdeps_mx025_gefs_intel PASS +Test 164 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_multiple_files_cfsr_intel -Checking test 162 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_multiple_files_cfsr_intel +Checking test 165 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.540808 - 0: The maximum resident set size (KB) = 1141104 + 0: The total amount of wall time = 121.983596 + 0: The maximum resident set size (KB) = 1141712 -Test 162 datm_cdeps_multiple_files_cfsr_intel PASS +Test 165 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_3072x1536_cfsr_intel -Checking test 163 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_3072x1536_cfsr_intel +Checking test 166 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 176.127626 - 0: The maximum resident set size (KB) = 2391924 + 0: The total amount of wall time = 175.875114 + 0: The maximum resident set size (KB) = 2442780 -Test 163 datm_cdeps_3072x1536_cfsr_intel PASS +Test 166 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_gfs_intel -Checking test 164 datm_cdeps_gfs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_gfs_intel +Checking test 167 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 174.362564 - 0: The maximum resident set size (KB) = 2335200 + 0: The total amount of wall time = 175.808311 + 0: The maximum resident set size (KB) = 2434584 -Test 164 datm_cdeps_gfs_intel PASS +Test 167 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_debug_cfsr_intel -Checking test 165 datm_cdeps_debug_cfsr_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_debug_cfsr_intel +Checking test 168 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 302.638209 - 0: The maximum resident set size (KB) = 1058224 + 0: The total amount of wall time = 305.264706 + 0: The maximum resident set size (KB) = 1077460 -Test 165 datm_cdeps_debug_cfsr_intel PASS +Test 168 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_control_cfsr_faster_intel -Checking test 166 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_control_cfsr_faster_intel +Checking test 169 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.349426 - 0: The maximum resident set size (KB) = 1144892 + 0: The total amount of wall time = 120.468684 + 0: The maximum resident set size (KB) = 1135792 -Test 166 datm_cdeps_control_cfsr_faster_intel PASS +Test 169 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_gswp3_intel -Checking test 167 datm_cdeps_lnd_gswp3_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_lnd_gswp3_intel +Checking test 170 datm_cdeps_lnd_gswp3_intel 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 @@ -5450,15 +5657,15 @@ Checking test 167 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 43.939883 - 0: The maximum resident set size (KB) = 326336 + 0: The total amount of wall time = 45.575550 + 0: The maximum resident set size (KB) = 335536 -Test 167 datm_cdeps_lnd_gswp3_intel PASS +Test 170 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_era5_intel -Checking test 168 datm_cdeps_lnd_era5_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_lnd_era5_intel +Checking test 171 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5466,15 +5673,15 @@ Checking test 168 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 43.386160 - 0: The maximum resident set size (KB) = 561996 + 0: The total amount of wall time = 41.858878 + 0: The maximum resident set size (KB) = 560948 -Test 168 datm_cdeps_lnd_era5_intel PASS +Test 171 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/datm_cdeps_lnd_era5_rst_intel -Checking test 169 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_lnd_era5_rst_intel +Checking test 172 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5482,15 +5689,15 @@ Checking test 169 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 27.161733 - 0: The maximum resident set size (KB) = 555864 + 0: The total amount of wall time = 32.899585 + 0: The maximum resident set size (KB) = 562000 -Test 169 datm_cdeps_lnd_era5_rst_intel PASS +Test 172 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_atmlnd_sbs_intel -Checking test 170 control_p8_atmlnd_sbs_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_atmlnd_sbs_intel +Checking test 173 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5578,15 +5785,15 @@ Checking test 170 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 336.232068 - 0: The maximum resident set size (KB) = 1649104 + 0: The total amount of wall time = 351.377905 + 0: The maximum resident set size (KB) = 1633800 -Test 170 control_p8_atmlnd_sbs_intel PASS +Test 173 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_atmlnd_intel -Checking test 171 control_p8_atmlnd_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_atmlnd_intel +Checking test 174 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5674,15 +5881,15 @@ Checking test 171 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 332.296084 - 0: The maximum resident set size (KB) = 1633772 + 0: The total amount of wall time = 348.085882 + 0: The maximum resident set size (KB) = 1649684 -Test 171 control_p8_atmlnd_intel PASS +Test 174 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_restart_p8_atmlnd_intel -Checking test 172 control_restart_p8_atmlnd_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_restart_p8_atmlnd_intel +Checking test 175 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5702,15 +5909,15 @@ Checking test 172 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 188.612905 - 0: The maximum resident set size (KB) = 934068 + 0: The total amount of wall time = 178.034460 + 0: The maximum resident set size (KB) = 943092 -Test 172 control_restart_p8_atmlnd_intel PASS +Test 175 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmwav_control_noaero_p8_intel -Checking test 173 atmwav_control_noaero_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmwav_control_noaero_p8_intel +Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5752,15 +5959,15 @@ Checking test 173 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 81.314147 - 0: The maximum resident set size (KB) = 1695240 + 0: The total amount of wall time = 84.496536 + 0: The maximum resident set size (KB) = 1705456 -Test 173 atmwav_control_noaero_p8_intel PASS +Test 176 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_atmwav_intel -Checking test 174 control_atmwav_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_atmwav_intel +Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5803,15 +6010,15 @@ Checking test 174 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 78.001288 - 0: The maximum resident set size (KB) = 698464 + 0: The total amount of wall time = 81.594532 + 0: The maximum resident set size (KB) = 697620 -Test 174 control_atmwav_intel PASS +Test 177 control_atmwav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_intel -Checking test 175 atmaero_control_p8_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmaero_control_p8_intel +Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5854,15 +6061,15 @@ Checking test 175 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.581790 - 0: The maximum resident set size (KB) = 1801968 + 0: The total amount of wall time = 198.242553 + 0: The maximum resident set size (KB) = 1796252 -Test 175 atmaero_control_p8_intel PASS +Test 178 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_rad_intel -Checking test 176 atmaero_control_p8_rad_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmaero_control_p8_rad_intel +Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5905,15 +6112,15 @@ Checking test 176 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.192215 - 0: The maximum resident set size (KB) = 1800168 + 0: The total amount of wall time = 242.714403 + 0: The maximum resident set size (KB) = 1806312 -Test 176 atmaero_control_p8_rad_intel PASS +Test 179 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/atmaero_control_p8_rad_micro_intel -Checking test 177 atmaero_control_p8_rad_micro_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmaero_control_p8_rad_micro_intel +Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5956,15 +6163,15 @@ Checking test 177 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 260.142406 - 0: The maximum resident set size (KB) = 1834644 + 0: The total amount of wall time = 254.261473 + 0: The maximum resident set size (KB) = 1817188 -Test 177 atmaero_control_p8_rad_micro_intel PASS +Test 180 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_atmaq_debug_intel -Checking test 178 regional_atmaq_debug_intel results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_atmaq_debug_intel +Checking test 181 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5977,15 +6184,15 @@ Checking test 178 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 979.546202 - 0: The maximum resident set size (KB) = 4600716 + 0: The total amount of wall time = 993.996045 + 0: The maximum resident set size (KB) = 4616132 -Test 178 regional_atmaq_debug_intel PASS +Test 181 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_c48_gnu -Checking test 179 control_c48_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c48_gnu +Checking test 182 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6023,15 +6230,15 @@ Checking test 179 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 561.380842 -0: The maximum resident set size (KB) = 861196 +0: The total amount of wall time = 564.399179 +0: The maximum resident set size (KB) = 859540 -Test 179 control_c48_gnu PASS +Test 182 control_c48_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_gnu -Checking test 180 control_stochy_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_gnu +Checking test 183 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -6041,15 +6248,15 @@ Checking test 180 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 132.735321 - 0: The maximum resident set size (KB) = 728368 + 0: The total amount of wall time = 124.614488 + 0: The maximum resident set size (KB) = 725488 -Test 180 control_stochy_gnu PASS +Test 183 control_stochy_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_gnu -Checking test 181 control_ras_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_gnu +Checking test 184 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6059,15 +6266,15 @@ Checking test 181 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.387051 - 0: The maximum resident set size (KB) = 732468 + 0: The total amount of wall time = 210.426977 + 0: The maximum resident set size (KB) = 731968 -Test 181 control_ras_gnu PASS +Test 184 control_ras_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_gnu -Checking test 182 control_p8_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_gnu +Checking test 185 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6113,15 +6320,15 @@ Checking test 182 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.614920 - 0: The maximum resident set size (KB) = 1508852 + 0: The total amount of wall time = 208.332813 + 0: The maximum resident set size (KB) = 1507496 -Test 182 control_p8_gnu PASS +Test 185 control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_p8_ugwpv1_gnu -Checking test 183 control_p8_ugwpv1_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_ugwpv1_gnu +Checking test 186 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6167,15 +6374,15 @@ Checking test 183 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.602410 - 0: The maximum resident set size (KB) = 1511976 + 0: The total amount of wall time = 208.117969 + 0: The maximum resident set size (KB) = 1511012 -Test 183 control_p8_ugwpv1_gnu PASS +Test 186 control_p8_ugwpv1_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_flake_gnu -Checking test 184 control_flake_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_flake_gnu +Checking test 187 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6185,15 +6392,15 @@ Checking test 184 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.272202 - 0: The maximum resident set size (KB) = 807136 + 0: The total amount of wall time = 251.861582 + 0: The maximum resident set size (KB) = 809316 -Test 184 control_flake_gnu PASS +Test 187 control_flake_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_gnu -Checking test 185 rap_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_gnu +Checking test 188 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6239,15 +6446,15 @@ Checking test 185 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.279155 - 0: The maximum resident set size (KB) = 1093624 + 0: The total amount of wall time = 449.037607 + 0: The maximum resident set size (KB) = 1087756 -Test 185 rap_control_gnu PASS +Test 188 rap_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_decomp_gnu -Checking test 186 rap_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_decomp_gnu +Checking test 189 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6293,15 +6500,15 @@ Checking test 186 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.943202 - 0: The maximum resident set size (KB) = 1092632 + 0: The total amount of wall time = 463.385091 + 0: The maximum resident set size (KB) = 1083348 -Test 186 rap_decomp_gnu PASS +Test 189 rap_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_gnu -Checking test 187 rap_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_gnu +Checking test 190 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6347,15 +6554,15 @@ Checking test 187 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 414.089050 - 0: The maximum resident set size (KB) = 1149612 + 0: The total amount of wall time = 413.111546 + 0: The maximum resident set size (KB) = 1124788 -Test 187 rap_2threads_gnu PASS +Test 190 rap_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_gnu -Checking test 188 rap_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_gnu +Checking test 191 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6393,15 +6600,15 @@ Checking test 188 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.342975 - 0: The maximum resident set size (KB) = 884352 + 0: The total amount of wall time = 229.181025 + 0: The maximum resident set size (KB) = 884052 -Test 188 rap_restart_gnu PASS +Test 191 rap_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_gnu -Checking test 189 rap_sfcdiff_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_gnu +Checking test 192 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6447,15 +6654,15 @@ Checking test 189 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.395486 - 0: The maximum resident set size (KB) = 1088176 + 0: The total amount of wall time = 448.106148 + 0: The maximum resident set size (KB) = 1085496 -Test 189 rap_sfcdiff_gnu PASS +Test 192 rap_sfcdiff_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_decomp_gnu -Checking test 190 rap_sfcdiff_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_decomp_gnu +Checking test 193 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6501,15 +6708,15 @@ Checking test 190 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.881318 - 0: The maximum resident set size (KB) = 1084248 + 0: The total amount of wall time = 458.143417 + 0: The maximum resident set size (KB) = 1086756 -Test 190 rap_sfcdiff_decomp_gnu PASS +Test 193 rap_sfcdiff_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_sfcdiff_restart_gnu -Checking test 191 rap_sfcdiff_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_restart_gnu +Checking test 194 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6547,15 +6754,15 @@ Checking test 191 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.956379 - 0: The maximum resident set size (KB) = 886932 + 0: The total amount of wall time = 334.409261 + 0: The maximum resident set size (KB) = 883208 -Test 191 rap_sfcdiff_restart_gnu PASS +Test 194 rap_sfcdiff_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_gnu -Checking test 192 hrrr_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_gnu +Checking test 195 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6601,15 +6808,15 @@ Checking test 192 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.728674 - 0: The maximum resident set size (KB) = 1073092 + 0: The total amount of wall time = 232.425900 + 0: The maximum resident set size (KB) = 1072456 -Test 192 hrrr_control_gnu PASS +Test 195 hrrr_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_noqr_gnu -Checking test 193 hrrr_control_noqr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_noqr_gnu +Checking test 196 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6655,15 +6862,15 @@ Checking test 193 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 232.865718 - 0: The maximum resident set size (KB) = 1134184 + 0: The total amount of wall time = 231.485182 + 0: The maximum resident set size (KB) = 1134164 -Test 193 hrrr_control_noqr_gnu PASS +Test 196 hrrr_control_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_gnu -Checking test 194 hrrr_control_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_gnu +Checking test 197 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6709,15 +6916,15 @@ Checking test 194 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.331508 - 0: The maximum resident set size (KB) = 1043920 + 0: The total amount of wall time = 206.459350 + 0: The maximum resident set size (KB) = 1033492 -Test 194 hrrr_control_2threads_gnu PASS +Test 197 hrrr_control_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_gnu -Checking test 195 hrrr_control_decomp_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_gnu +Checking test 198 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6763,43 +6970,43 @@ Checking test 195 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.001047 - 0: The maximum resident set size (KB) = 1071688 + 0: The total amount of wall time = 230.300474 + 0: The maximum resident set size (KB) = 1071660 -Test 195 hrrr_control_decomp_gnu PASS +Test 198 hrrr_control_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_gnu -Checking test 196 hrrr_control_restart_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_gnu +Checking test 199 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.995498 - 0: The maximum resident set size (KB) = 880972 + 0: The total amount of wall time = 118.842612 + 0: The maximum resident set size (KB) = 881532 -Test 196 hrrr_control_restart_gnu PASS +Test 199 hrrr_control_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_noqr_gnu -Checking test 197 hrrr_control_restart_noqr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_noqr_gnu +Checking test 200 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.349497 - 0: The maximum resident set size (KB) = 933460 + 0: The total amount of wall time = 119.442702 + 0: The maximum resident set size (KB) = 931408 -Test 197 hrrr_control_restart_noqr_gnu PASS +Test 200 hrrr_control_restart_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_gnu -Checking test 198 rrfs_v1beta_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_gnu +Checking test 201 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6845,225 +7052,225 @@ Checking test 198 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.827800 - 0: The maximum resident set size (KB) = 1079668 + 0: The total amount of wall time = 439.869563 + 0: The maximum resident set size (KB) = 1088292 -Test 198 rrfs_v1beta_gnu PASS +Test 201 rrfs_v1beta_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_diag_debug_gnu -Checking test 199 control_diag_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_diag_debug_gnu +Checking test 202 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 66.889713 - 0: The maximum resident set size (KB) = 775480 + 0: The total amount of wall time = 68.725875 + 0: The maximum resident set size (KB) = 772100 -Test 199 control_diag_debug_gnu PASS +Test 202 control_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/regional_debug_gnu -Checking test 200 regional_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_debug_gnu +Checking test 203 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 381.579032 - 0: The maximum resident set size (KB) = 923492 + 0: The total amount of wall time = 370.221420 + 0: The maximum resident set size (KB) = 922588 -Test 200 regional_debug_gnu PASS +Test 203 regional_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_gnu -Checking test 201 rap_control_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_gnu +Checking test 204 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.184094 - 0: The maximum resident set size (KB) = 1099820 + 0: The total amount of wall time = 109.336734 + 0: The maximum resident set size (KB) = 1097136 -Test 201 rap_control_debug_gnu PASS +Test 204 rap_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_gnu -Checking test 202 hrrr_control_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_gnu +Checking test 205 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.257697 - 0: The maximum resident set size (KB) = 1090168 + 0: The total amount of wall time = 106.951398 + 0: The maximum resident set size (KB) = 1088480 -Test 202 hrrr_control_debug_gnu PASS +Test 205 hrrr_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_gf_debug_gnu -Checking test 203 hrrr_gf_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_gf_debug_gnu +Checking test 206 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.621029 - 0: The maximum resident set size (KB) = 1096328 + 0: The total amount of wall time = 110.567381 + 0: The maximum resident set size (KB) = 1096000 -Test 203 hrrr_gf_debug_gnu PASS +Test 206 hrrr_gf_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_c3_debug_gnu -Checking test 204 hrrr_c3_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_c3_debug_gnu +Checking test 207 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.802900 - 0: The maximum resident set size (KB) = 1093676 + 0: The total amount of wall time = 110.061086 + 0: The maximum resident set size (KB) = 1094964 -Test 204 hrrr_c3_debug_gnu PASS +Test 207 hrrr_c3_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_diag_debug_gnu -Checking test 205 rap_diag_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_diag_debug_gnu +Checking test 208 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.729712 - 0: The maximum resident set size (KB) = 1269368 + 0: The total amount of wall time = 117.378579 + 0: The maximum resident set size (KB) = 1267224 -Test 205 rap_diag_debug_gnu PASS +Test 208 rap_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 206 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.221669 - 0: The maximum resident set size (KB) = 1095832 + 0: The total amount of wall time = 179.351800 + 0: The maximum resident set size (KB) = 1093464 -Test 206 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_progcld_thompson_debug_gnu -Checking test 207 rap_progcld_thompson_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_progcld_thompson_debug_gnu +Checking test 210 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.601310 - 0: The maximum resident set size (KB) = 1098488 + 0: The total amount of wall time = 110.564236 + 0: The maximum resident set size (KB) = 1096572 -Test 207 rap_progcld_thompson_debug_gnu PASS +Test 210 rap_progcld_thompson_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rrfs_v1beta_debug_gnu -Checking test 208 rrfs_v1beta_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_debug_gnu +Checking test 211 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.345157 - 0: The maximum resident set size (KB) = 1095576 + 0: The total amount of wall time = 109.798175 + 0: The maximum resident set size (KB) = 1093400 -Test 208 rrfs_v1beta_debug_gnu PASS +Test 211 rrfs_v1beta_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_ras_debug_gnu -Checking test 209 control_ras_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_debug_gnu +Checking test 212 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 63.405928 - 0: The maximum resident set size (KB) = 730436 + 0: The total amount of wall time = 63.835500 + 0: The maximum resident set size (KB) = 723288 -Test 209 control_ras_debug_gnu PASS +Test 212 control_ras_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_stochy_debug_gnu -Checking test 210 control_stochy_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_debug_gnu +Checking test 213 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.954082 - 0: The maximum resident set size (KB) = 722864 + 0: The total amount of wall time = 71.275746 + 0: The maximum resident set size (KB) = 719844 -Test 210 control_stochy_debug_gnu PASS +Test 213 control_stochy_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/control_debug_p8_gnu -Checking test 211 control_debug_p8_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_debug_p8_gnu +Checking test 214 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 69.254260 - 0: The maximum resident set size (KB) = 1506216 + 0: The total amount of wall time = 71.730450 + 0: The maximum resident set size (KB) = 1506176 -Test 211 control_debug_p8_gnu PASS +Test 214 control_debug_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_flake_debug_gnu -Checking test 212 rap_flake_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_flake_debug_gnu +Checking test 215 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.219670 - 0: The maximum resident set size (KB) = 1100068 + 0: The total amount of wall time = 111.701887 + 0: The maximum resident set size (KB) = 1098532 -Test 212 rap_flake_debug_gnu PASS +Test 215 rap_flake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_clm_lake_debug_gnu -Checking test 213 rap_clm_lake_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_clm_lake_debug_gnu +Checking test 216 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.685422 - 0: The maximum resident set size (KB) = 1100840 + 0: The total amount of wall time = 124.133827 + 0: The maximum resident set size (KB) = 1101496 -Test 213 rap_clm_lake_debug_gnu PASS +Test 216 rap_clm_lake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/gnv1_c96_no_nest_debug_gnu -Checking test 214 gnv1_c96_no_nest_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/gnv1_c96_no_nest_debug_gnu +Checking test 217 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7103,15 +7310,15 @@ Checking test 214 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.694786 - 0: The maximum resident set size (KB) = 1103840 + 0: The total amount of wall time = 194.500238 + 0: The maximum resident set size (KB) = 1096776 -Test 214 gnv1_c96_no_nest_debug_gnu PASS +Test 217 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn32_phy32_gnu -Checking test 215 rap_control_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn32_phy32_gnu +Checking test 218 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7157,15 +7364,15 @@ Checking test 215 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.836309 - 0: The maximum resident set size (KB) = 967220 + 0: The total amount of wall time = 426.976262 + 0: The maximum resident set size (KB) = 968100 -Test 215 rap_control_dyn32_phy32_gnu PASS +Test 218 rap_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_dyn32_phy32_gnu -Checking test 216 hrrr_control_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_dyn32_phy32_gnu +Checking test 219 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7211,15 +7418,15 @@ Checking test 216 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.611049 - 0: The maximum resident set size (KB) = 950712 + 0: The total amount of wall time = 218.710911 + 0: The maximum resident set size (KB) = 959416 -Test 216 hrrr_control_dyn32_phy32_gnu PASS +Test 219 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_2threads_dyn32_phy32_gnu -Checking test 217 rap_2threads_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_dyn32_phy32_gnu +Checking test 220 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7265,15 +7472,15 @@ Checking test 217 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.866877 - 0: The maximum resident set size (KB) = 968340 + 0: The total amount of wall time = 390.183819 + 0: The maximum resident set size (KB) = 995940 -Test 217 rap_2threads_dyn32_phy32_gnu PASS +Test 220 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7319,15 +7526,15 @@ Checking test 218 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.335322 - 0: The maximum resident set size (KB) = 891028 + 0: The total amount of wall time = 201.840945 + 0: The maximum resident set size (KB) = 878768 -Test 218 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 221 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7373,15 +7580,15 @@ Checking test 219 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.967868 - 0: The maximum resident set size (KB) = 953192 + 0: The total amount of wall time = 221.735778 + 0: The maximum resident set size (KB) = 952168 -Test 219 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 222 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_restart_dyn32_phy32_gnu -Checking test 220 rap_restart_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_dyn32_phy32_gnu +Checking test 223 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7419,29 +7626,29 @@ Checking test 220 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.057744 - 0: The maximum resident set size (KB) = 860104 + 0: The total amount of wall time = 313.769337 + 0: The maximum resident set size (KB) = 859744 -Test 220 rap_restart_dyn32_phy32_gnu PASS +Test 223 rap_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_restart_dyn32_phy32_gnu -Checking test 221 hrrr_control_restart_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_dyn32_phy32_gnu +Checking test 224 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.129742 - 0: The maximum resident set size (KB) = 856484 + 0: The total amount of wall time = 114.601364 + 0: The maximum resident set size (KB) = 856720 -Test 221 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 224 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_control_gnu -Checking test 222 conus13km_control_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_control_gnu +Checking test 225 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7456,41 +7663,41 @@ Checking test 222 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 144.693618 - 0: The maximum resident set size (KB) = 1269860 + 0: The total amount of wall time = 141.931862 + 0: The maximum resident set size (KB) = 1269136 -Test 222 conus13km_control_gnu PASS +Test 225 conus13km_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_2threads_gnu -Checking test 223 conus13km_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_2threads_gnu +Checking test 226 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 65.715676 - 0: The maximum resident set size (KB) = 1179528 + 0: The total amount of wall time = 58.262140 + 0: The maximum resident set size (KB) = 1175456 -Test 223 conus13km_2threads_gnu PASS +Test 226 conus13km_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_restart_mismatch_gnu -Checking test 224 conus13km_restart_mismatch_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_restart_mismatch_gnu +Checking test 227 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 82.857418 - 0: The maximum resident set size (KB) = 929880 + 0: The total amount of wall time = 80.637989 + 0: The maximum resident set size (KB) = 952816 -Test 224 conus13km_restart_mismatch_gnu PASS +Test 227 conus13km_restart_mismatch_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_gnu -Checking test 225 rap_control_dyn64_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_gnu +Checking test 228 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7536,43 +7743,43 @@ Checking test 225 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.642359 - 0: The maximum resident set size (KB) = 990004 + 0: The total amount of wall time = 253.645843 + 0: The maximum resident set size (KB) = 989932 -Test 225 rap_control_dyn64_phy32_gnu PASS +Test 228 rap_control_dyn64_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_debug_dyn32_phy32_gnu -Checking test 226 rap_control_debug_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_dyn32_phy32_gnu +Checking test 229 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.376541 - 0: The maximum resident set size (KB) = 975728 + 0: The total amount of wall time = 109.373905 + 0: The maximum resident set size (KB) = 973020 -Test 226 rap_control_debug_dyn32_phy32_gnu PASS +Test 229 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/hrrr_control_debug_dyn32_phy32_gnu -Checking test 227 hrrr_control_debug_dyn32_phy32_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_dyn32_phy32_gnu +Checking test 230 hrrr_control_debug_dyn32_phy32_gnu 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.978547 - 0: The maximum resident set size (KB) = 965400 + 0: The total amount of wall time = 106.373137 + 0: The maximum resident set size (KB) = 977644 -Test 227 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 230 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_gnu -Checking test 228 conus13km_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_gnu +Checking test 231 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7585,15 +7792,15 @@ Checking test 228 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 317.053317 - 0: The maximum resident set size (KB) = 1284968 + 0: The total amount of wall time = 314.978902 + 0: The maximum resident set size (KB) = 1279852 -Test 228 conus13km_debug_gnu PASS +Test 231 conus13km_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_qr_gnu -Checking test 229 conus13km_debug_qr_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_qr_gnu +Checking test 232 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7606,173 +7813,133 @@ Checking test 229 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 332.056553 - 0: The maximum resident set size (KB) = 955760 + 0: The total amount of wall time = 325.508909 + 0: The maximum resident set size (KB) = 952776 -Test 229 conus13km_debug_qr_gnu PASS +Test 232 conus13km_debug_qr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_debug_2threads_gnu -Checking test 230 conus13km_debug_2threads_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_2threads_gnu +Checking test 233 conus13km_debug_2threads_gnu 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.939726 - 0: The maximum resident set size (KB) = 1188628 + 0: The total amount of wall time = 188.021928 + 0: The maximum resident set size (KB) = 1192304 -Test 230 conus13km_debug_2threads_gnu PASS +Test 233 conus13km_debug_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/conus13km_radar_tten_debug_gnu -Checking test 231 conus13km_radar_tten_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_radar_tten_debug_gnu +Checking test 234 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 314.765979 - 0: The maximum resident set size (KB) = 1350192 + 0: The total amount of wall time = 314.356972 + 0: The maximum resident set size (KB) = 1349716 -Test 231 conus13km_radar_tten_debug_gnu PASS +Test 234 conus13km_radar_tten_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2286913/rap_control_dyn64_phy32_debug_gnu -Checking test 232 rap_control_dyn64_phy32_debug_gnu results .... +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_debug_gnu +Checking test 235 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.612834 - 0: The maximum resident set size (KB) = 1001428 + 0: The total amount of wall time = 109.595665 + 0: The maximum resident set size (KB) = 1002732 -Test 232 rap_control_dyn64_phy32_debug_gnu PASS +Test 235 rap_control_dyn64_phy32_debug_gnu PASS FAILED TESTS: -hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 147 failed in run_test -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 148 failed in run_test +147 gnv1_nested_intel failed in check_result +gnv1_nested_intel 147 failed in run_test REGRESSION TEST FAILED -Fri Feb 2 01:06:28 AM CST 2024 -Elapsed time: 03h:05m:56s. Have a nice day! -Fri Feb 2 09:10:46 AM CST 2024 +Tue Feb 6 09:49:42 AM CST 2024 +Elapsed time: 01h:19m:12s. Have a nice day! +Tue Feb 6 10:45:23 AM CST 2024 Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafs_mom6w_intel elapsed time 620 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_faster_intel elapsed time 618 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2610419/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 611.746251 - 0: The maximum resident set size (KB) = 845960 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Compile hafsw_intel elapsed time 592 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2610419/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 930.155979 - 0: The maximum resident set size (KB) = 828484 - -Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Fri Feb 2 09:50:52 AM CST 2024 -Elapsed time: 00h:40m:07s. Have a nice day! -Mon Feb 5 10:55:10 AM CST 2024 -Start Regression test - -Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafs_mom6w_intel elapsed time 588 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_faster_intel elapsed time 602 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3123442/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3468176/gnv1_nested_intel +Checking test 001 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 969.046192 - 0: The maximum resident set size (KB) = 847676 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3123442/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 632.299890 - 0: The maximum resident set size (KB) = 829264 + 0: The total amount of wall time = 267.738867 + 0: The maximum resident set size (KB) = 897496 -Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Test 001 gnv1_nested_intel PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 5 11:26:44 AM CST 2024 -Elapsed time: 00h:31m:35s. Have a nice day! +Tue Feb 6 11:02:54 AM CST 2024 +Elapsed time: 00h:17m:32s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 9daf827b69..64484facce 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,57 @@ -Fri Feb 2 02:59:08 UTC 2024 +Tue Feb 6 14:59:56 UTC 2024 Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 415 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1961 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1748 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1925 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1814 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1806 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1793 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 482 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 108 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1798 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1937 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 260 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2458 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 264 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1852 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1909 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 s2s_intel elapsed time 1843 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 327 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 316 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2717 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2117 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 340 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 3010 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5493 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_debug_dyn32_intel elapsed time 356 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1970 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1845 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1938 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 2223 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1864 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1874 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1838 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 100 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1897 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 2041 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2526 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1883 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1881 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 s2s_intel elapsed time 1853 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 306 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 2087 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 302 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 2814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2204 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 300 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 2846 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5488 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1732 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.520817 - 0: The maximum resident set size (KB) = 1755576 + 0: The total amount of wall time = 412.833407 + 0: The maximum resident set size (KB) = 1776652 -Test 001 cpld_control_p8_mixedmode_intel PASS Tries: 2 +Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1222.635991 - 0: The maximum resident set size (KB) = 1650932 + 0: The total amount of wall time = 1216.376693 + 0: The maximum resident set size (KB) = 1652076 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_gfsv17_iau_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1259.885443 - 0: The maximum resident set size (KB) = 1853988 + 0: The total amount of wall time = 1291.044500 + 0: The maximum resident set size (KB) = 1872500 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 581.997203 - 0: The maximum resident set size (KB) = 979364 + 0: The total amount of wall time = 852.734923 + 0: The maximum resident set size (KB) = 985740 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -371,73 +371,18 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1427.187177 - 0: The maximum resident set size (KB) = 1611608 + 0: The total amount of wall time = 1412.912092 + 0: The maximum resident set size (KB) = 1619760 Test 005 cpld_mpi_gfsv17_intel PASS +Test 006 cpld_debug_gfsv17_intel FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1795.489020 - 0: The maximum resident set size (KB) = 1647320 - -Test 006 cpld_debug_gfsv17_intel PASS +Test 006 cpld_debug_gfsv17_intel FAIL baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -502,15 +447,87 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.644071 - 0: The maximum resident set size (KB) = 1810460 + 0: The total amount of wall time = 447.585164 + 0: The maximum resident set size (KB) = 1793892 Test 007 cpld_control_p8_intel PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 445.785957 + 0: The maximum resident set size (KB) = 1812276 + +Test 008 cpld_control_p8.v2.sfc_intel PASS + + baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -562,15 +579,15 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.039850 - 0: The maximum resident set size (KB) = 1690004 + 0: The total amount of wall time = 255.597363 + 0: The maximum resident set size (KB) = 1710416 -Test 008 cpld_restart_p8_intel PASS +Test 009 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -634,15 +651,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 460.471477 - 0: The maximum resident set size (KB) = 1819960 + 0: The total amount of wall time = 448.420053 + 0: The maximum resident set size (KB) = 1837864 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -694,15 +711,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.933835 - 0: The maximum resident set size (KB) = 1713396 + 0: The total amount of wall time = 257.927741 + 0: The maximum resident set size (KB) = 1729008 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_2threads_p8_intel +Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -754,15 +771,15 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 438.262886 - 0: The maximum resident set size (KB) = 2193336 + 0: The total amount of wall time = 431.230323 + 0: The maximum resident set size (KB) = 2204972 -Test 011 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_decomp_p8_intel +Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -814,15 +831,15 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.656935 - 0: The maximum resident set size (KB) = 1791668 + 0: The total amount of wall time = 444.906686 + 0: The maximum resident set size (KB) = 1813684 -Test 012 cpld_decomp_p8_intel PASS +Test 013 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_mpi_p8_intel +Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -874,15 +891,15 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 385.809636 - 0: The maximum resident set size (KB) = 1753172 + 0: The total amount of wall time = 381.980580 + 0: The maximum resident set size (KB) = 1750972 -Test 013 cpld_mpi_p8_intel PASS +Test 014 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_ciceC_p8_intel +Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -946,15 +963,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.765499 - 0: The maximum resident set size (KB) = 1797500 + 0: The total amount of wall time = 444.359260 + 0: The maximum resident set size (KB) = 1812416 -Test 014 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_s2sa_p8_intel -Checking test 015 cpld_s2sa_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_s2sa_p8_intel +Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1004,15 +1021,15 @@ Checking test 015 cpld_s2sa_p8_intel 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 = 437.842078 - 0: The maximum resident set size (KB) = 1764720 + 0: The total amount of wall time = 424.740836 + 0: The maximum resident set size (KB) = 1765492 -Test 015 cpld_s2sa_p8_intel PASS +Test 016 cpld_s2sa_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_noaero_p8_intel -Checking test 016 cpld_control_noaero_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_noaero_p8_intel +Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1075,15 +1092,15 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.190339 - 0: The maximum resident set size (KB) = 1637648 + 0: The total amount of wall time = 347.895632 + 0: The maximum resident set size (KB) = 1638940 -Test 016 cpld_control_noaero_p8_intel PASS +Test 017 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_nowave_noaero_p8_intel -Checking test 017 cpld_control_nowave_noaero_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_nowave_noaero_p8_intel +Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1144,15 +1161,15 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel 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.962766 - 0: The maximum resident set size (KB) = 1687680 + 0: The total amount of wall time = 326.780739 + 0: The maximum resident set size (KB) = 1691224 -Test 017 cpld_control_nowave_noaero_p8_intel PASS +Test 018 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_p8_intel -Checking test 018 cpld_debug_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_debug_p8_intel +Checking test 019 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1204,15 +1221,15 @@ Checking test 018 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 627.323450 - 0: The maximum resident set size (KB) = 1817464 + 0: The total amount of wall time = 630.266679 + 0: The maximum resident set size (KB) = 1823484 -Test 018 cpld_debug_p8_intel PASS +Test 019 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_noaero_p8_intel -Checking test 019 cpld_debug_noaero_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_debug_noaero_p8_intel +Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1263,15 +1280,15 @@ Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.347638 - 0: The maximum resident set size (KB) = 1652584 + 0: The total amount of wall time = 418.961300 + 0: The maximum resident set size (KB) = 1651204 -Test 019 cpld_debug_noaero_p8_intel PASS +Test 020 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_noaero_p8_agrid_intel -Checking test 020 cpld_control_noaero_p8_agrid_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_noaero_p8_agrid_intel +Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1332,15 +1349,15 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel 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 = 329.102717 - 0: The maximum resident set size (KB) = 1699500 + 0: The total amount of wall time = 332.177567 + 0: The maximum resident set size (KB) = 1702256 -Test 020 cpld_control_noaero_p8_agrid_intel PASS +Test 021 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_c48_intel -Checking test 021 cpld_control_c48_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_c48_intel +Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1389,15 +1406,15 @@ Checking test 021 cpld_control_c48_intel 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 = 763.556590 - 0: The maximum resident set size (KB) = 2776692 + 0: The total amount of wall time = 760.683196 + 0: The maximum resident set size (KB) = 2785280 -Test 021 cpld_control_c48_intel PASS +Test 022 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_p8_faster_intel -Checking test 022 cpld_control_p8_faster_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8_faster_intel +Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1461,15 +1478,15 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.507124 - 0: The maximum resident set size (KB) = 1797232 + 0: The total amount of wall time = 415.236421 + 0: The maximum resident set size (KB) = 1794012 -Test 022 cpld_control_p8_faster_intel PASS +Test 023 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_control_pdlib_p8_intel -Checking test 023 cpld_control_pdlib_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_pdlib_p8_intel +Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1532,15 +1549,15 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1235.579869 - 0: The maximum resident set size (KB) = 1664632 + 0: The total amount of wall time = 1223.357299 + 0: The maximum resident set size (KB) = 1667084 -Test 023 cpld_control_pdlib_p8_intel PASS +Test 024 cpld_control_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_restart_pdlib_p8_intel -Checking test 024 cpld_restart_pdlib_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_pdlib_p8_intel +Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1591,15 +1608,15 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 580.964921 - 0: The maximum resident set size (KB) = 1025604 + 0: The total amount of wall time = 618.285926 + 0: The maximum resident set size (KB) = 1028560 -Test 024 cpld_restart_pdlib_p8_intel PASS +Test 025 cpld_restart_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_mpi_pdlib_p8_intel -Checking test 025 cpld_mpi_pdlib_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_mpi_pdlib_p8_intel +Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1662,15 +1679,15 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1475.413872 - 0: The maximum resident set size (KB) = 1636344 + 0: The total amount of wall time = 1437.040253 + 0: The maximum resident set size (KB) = 1630724 -Test 025 cpld_mpi_pdlib_p8_intel PASS +Test 026 cpld_mpi_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/cpld_debug_pdlib_p8_intel -Checking test 026 cpld_debug_pdlib_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_debug_pdlib_p8_intel +Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1721,15 +1738,15 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 2292.234248 - 0: The maximum resident set size (KB) = 1669456 + 0: The total amount of wall time = 1908.388699 + 0: The maximum resident set size (KB) = 1666224 -Test 026 cpld_debug_pdlib_p8_intel PASS +Test 027 cpld_debug_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_flake_intel -Checking test 027 control_flake_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_flake_intel +Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1739,15 +1756,15 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 276.636373 - 0: The maximum resident set size (KB) = 649344 + 0: The total amount of wall time = 255.739102 + 0: The maximum resident set size (KB) = 645688 -Test 027 control_flake_intel PASS +Test 028 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_intel -Checking test 028 control_CubedSphereGrid_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_CubedSphereGrid_intel +Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1773,37 +1790,37 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 227.954957 - 0: The maximum resident set size (KB) = 598860 + 0: The total amount of wall time = 183.162204 + 0: The maximum resident set size (KB) = 591552 -Test 028 control_CubedSphereGrid_intel PASS +Test 029 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_parallel_intel -Checking test 029 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_CubedSphereGrid_parallel_intel +Checking test 030 control_CubedSphereGrid_parallel_intel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_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 = 242.033098 - 0: The maximum resident set size (KB) = 595136 + 0: The total amount of wall time = 194.238747 + 0: The maximum resident set size (KB) = 598524 -Test 029 control_CubedSphereGrid_parallel_intel PASS +Test 030 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_latlon_intel -Checking test 030 control_latlon_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_latlon_intel +Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1813,15 +1830,15 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 239.853498 - 0: The maximum resident set size (KB) = 593380 + 0: The total amount of wall time = 185.678640 + 0: The maximum resident set size (KB) = 596924 -Test 030 control_latlon_intel PASS +Test 031 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wrtGauss_netcdf_parallel_intel -Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wrtGauss_netcdf_parallel_intel +Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1831,15 +1848,15 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 232.636730 - 0: The maximum resident set size (KB) = 597008 + 0: The total amount of wall time = 190.189538 + 0: The maximum resident set size (KB) = 593488 -Test 031 control_wrtGauss_netcdf_parallel_intel PASS +Test 032 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c48_intel -Checking test 032 control_c48_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c48_intel +Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1877,15 +1894,61 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 603.159244 -0: The maximum resident set size (KB) = 851552 +0: The total amount of wall time = 599.821675 +0: The maximum resident set size (KB) = 848164 -Test 032 control_c48_intel PASS +Test 033 control_c48_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c48.v2.sfc_intel +Checking test 034 control_c48.v2.sfc_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 596.651767 +0: The maximum resident set size (KB) = 843652 + +Test 034 control_c48.v2.sfc_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c192_intel -Checking test 033 control_c192_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c192_intel +Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1895,15 +1958,15 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 775.886480 - 0: The maximum resident set size (KB) = 725836 + 0: The total amount of wall time = 729.720712 + 0: The maximum resident set size (KB) = 723436 -Test 033 control_c192_intel PASS +Test 035 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c384_intel -Checking test 034 control_c384_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c384_intel +Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1913,15 +1976,15 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1022.102914 - 0: The maximum resident set size (KB) = 902568 + 0: The total amount of wall time = 940.599381 + 0: The maximum resident set size (KB) = 894056 -Test 034 control_c384_intel PASS +Test 036 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_c384gdas_intel -Checking test 035 control_c384gdas_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c384gdas_intel +Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1933,10 +1996,10 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK @@ -1944,9 +2007,9 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK @@ -1957,21 +2020,21 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 834.101786 - 0: The maximum resident set size (KB) = 1005800 + 0: The total amount of wall time = 801.371142 + 0: The maximum resident set size (KB) = 1013348 -Test 035 control_c384gdas_intel PASS +Test 037 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_intel -Checking test 036 control_stochy_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_stochy_intel +Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1981,29 +2044,29 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 154.767462 - 0: The maximum resident set size (KB) = 598532 + 0: The total amount of wall time = 846.029834 + 0: The maximum resident set size (KB) = 601604 -Test 036 control_stochy_intel PASS +Test 038 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_restart_intel -Checking test 037 control_stochy_restart_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_stochy_restart_intel +Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 69.061126 - 0: The maximum resident set size (KB) = 428120 + 0: The total amount of wall time = 74.295644 + 0: The maximum resident set size (KB) = 436704 -Test 037 control_stochy_restart_intel PASS +Test 039 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_lndp_intel -Checking test 038 control_lndp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_lndp_intel +Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2013,15 +2076,15 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 158.699949 - 0: The maximum resident set size (KB) = 600412 + 0: The total amount of wall time = 113.029212 + 0: The maximum resident set size (KB) = 603432 -Test 038 control_lndp_intel PASS +Test 040 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_iovr4_intel -Checking test 039 control_iovr4_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_iovr4_intel +Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2035,15 +2098,15 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 224.566423 - 0: The maximum resident set size (KB) = 593456 + 0: The total amount of wall time = 186.608850 + 0: The maximum resident set size (KB) = 591416 -Test 039 control_iovr4_intel PASS +Test 041 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_iovr5_intel -Checking test 040 control_iovr5_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_iovr5_intel +Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,15 +2120,69 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 226.888517 - 0: The maximum resident set size (KB) = 599000 + 0: The total amount of wall time = 186.760202 + 0: The maximum resident set size (KB) = 593220 -Test 040 control_iovr5_intel PASS +Test 042 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_intel -Checking test 041 control_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_intel +Checking test 043 control_p8_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 227.449723 + 0: The maximum resident set size (KB) = 1567868 + +Test 043 control_p8_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8.v2.sfc_intel +Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2111,15 +2228,15 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.717315 - 0: The maximum resident set size (KB) = 1556992 + 0: The total amount of wall time = 228.478224 + 0: The maximum resident set size (KB) = 1571556 -Test 041 control_p8_intel PASS +Test 044 control_p8.v2.sfc_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_ugwpv1_intel -Checking test 042 control_p8_ugwpv1_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_ugwpv1_intel +Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2165,15 +2282,15 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.343575 - 0: The maximum resident set size (KB) = 1556072 + 0: The total amount of wall time = 215.640116 + 0: The maximum resident set size (KB) = 1569552 -Test 042 control_p8_ugwpv1_intel PASS +Test 045 control_p8_ugwpv1_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_p8_intel -Checking test 043 control_restart_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_restart_p8_intel +Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2211,15 +2328,15 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.920757 - 0: The maximum resident set size (KB) = 812868 + 0: The total amount of wall time = 118.620006 + 0: The maximum resident set size (KB) = 814236 -Test 043 control_restart_p8_intel PASS +Test 046 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_noqr_p8_intel -Checking test 044 control_noqr_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_noqr_p8_intel +Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2265,15 +2382,15 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.605378 - 0: The maximum resident set size (KB) = 1548664 + 0: The total amount of wall time = 219.577422 + 0: The maximum resident set size (KB) = 1565140 -Test 044 control_noqr_p8_intel PASS +Test 047 control_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_noqr_p8_intel -Checking test 045 control_restart_noqr_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_restart_noqr_p8_intel +Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2311,15 +2428,15 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 120.871166 - 0: The maximum resident set size (KB) = 834232 + 0: The total amount of wall time = 115.103241 + 0: The maximum resident set size (KB) = 834676 -Test 045 control_restart_noqr_p8_intel PASS +Test 048 control_restart_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_decomp_p8_intel -Checking test 046 control_decomp_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_decomp_p8_intel +Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2361,15 +2478,15 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 240.469612 - 0: The maximum resident set size (KB) = 1558684 + 0: The total amount of wall time = 230.351940 + 0: The maximum resident set size (KB) = 1562160 -Test 046 control_decomp_p8_intel PASS +Test 049 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_2threads_p8_intel -Checking test 047 control_2threads_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_2threads_p8_intel +Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2411,15 +2528,15 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 211.501209 - 0: The maximum resident set size (KB) = 1645216 + 0: The total amount of wall time = 208.433119 + 0: The maximum resident set size (KB) = 1665340 -Test 047 control_2threads_p8_intel PASS +Test 050 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_lndp_intel -Checking test 048 control_p8_lndp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_lndp_intel +Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2437,15 +2554,15 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 409.373028 - 0: The maximum resident set size (KB) = 1561508 + 0: The total amount of wall time = 407.088574 + 0: The maximum resident set size (KB) = 1572912 -Test 048 control_p8_lndp_intel PASS +Test 051 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_rrtmgp_intel -Checking test 049 control_p8_rrtmgp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_rrtmgp_intel +Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2491,15 +2608,15 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.046370 - 0: The maximum resident set size (KB) = 1620592 + 0: The total amount of wall time = 294.982182 + 0: The maximum resident set size (KB) = 1629868 -Test 049 control_p8_rrtmgp_intel PASS +Test 052 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_mynn_intel -Checking test 050 control_p8_mynn_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_mynn_intel +Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2545,15 +2662,15 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.563238 - 0: The maximum resident set size (KB) = 1561896 + 0: The total amount of wall time = 227.117223 + 0: The maximum resident set size (KB) = 1579056 -Test 050 control_p8_mynn_intel PASS +Test 053 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/merra2_thompson_intel -Checking test 051 merra2_thompson_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/merra2_thompson_intel +Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2599,15 +2716,15 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 263.713364 - 0: The maximum resident set size (KB) = 1568648 + 0: The total amount of wall time = 265.392652 + 0: The maximum resident set size (KB) = 1591676 -Test 051 merra2_thompson_intel PASS +Test 054 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_control_intel -Checking test 052 regional_control_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_control_intel +Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2617,29 +2734,29 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 426.498804 - 0: The maximum resident set size (KB) = 751264 + 0: The total amount of wall time = 411.505781 + 0: The maximum resident set size (KB) = 758204 -Test 052 regional_control_intel PASS +Test 055 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_restart_intel -Checking test 053 regional_restart_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_restart_intel +Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 227.348313 - 0: The maximum resident set size (KB) = 936360 + 0: The total amount of wall time = 212.693106 + 0: The maximum resident set size (KB) = 926992 -Test 053 regional_restart_intel PASS +Test 056 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_decomp_intel -Checking test 054 regional_decomp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_decomp_intel +Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2649,15 +2766,15 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 435.208311 - 0: The maximum resident set size (KB) = 756964 + 0: The total amount of wall time = 438.404320 + 0: The maximum resident set size (KB) = 759660 -Test 054 regional_decomp_intel PASS +Test 057 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_2threads_intel -Checking test 055 regional_2threads_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_2threads_intel +Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2667,29 +2784,29 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.133722 - 0: The maximum resident set size (KB) = 747448 + 0: The total amount of wall time = 257.743804 + 0: The maximum resident set size (KB) = 749320 -Test 055 regional_2threads_intel PASS +Test 058 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_netcdf_parallel_intel -Checking test 056 regional_netcdf_parallel_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_netcdf_parallel_intel +Checking test 059 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 465.541618 - 0: The maximum resident set size (KB) = 753932 + 0: The total amount of wall time = 405.506700 + 0: The maximum resident set size (KB) = 759312 -Test 056 regional_netcdf_parallel_intel PASS +Test 059 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_2dwrtdecomp_intel -Checking test 057 regional_2dwrtdecomp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_2dwrtdecomp_intel +Checking test 060 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2699,15 +2816,15 @@ Checking test 057 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 430.767412 - 0: The maximum resident set size (KB) = 759852 + 0: The total amount of wall time = 409.495330 + 0: The maximum resident set size (KB) = 758396 -Test 057 regional_2dwrtdecomp_intel PASS +Test 060 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_intel -Checking test 058 rap_control_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_intel +Checking test 061 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2753,15 +2870,15 @@ Checking test 058 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 628.897293 - 0: The maximum resident set size (KB) = 966708 + 0: The total amount of wall time = 596.064222 + 0: The maximum resident set size (KB) = 976856 -Test 058 rap_control_intel PASS +Test 061 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_spp_sppt_shum_skeb_intel -Checking test 059 regional_spp_sppt_shum_skeb_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_spp_sppt_shum_skeb_intel +Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2771,15 +2888,15 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 479.220842 - 0: The maximum resident set size (KB) = 1205972 + 0: The total amount of wall time = 325.884900 + 0: The maximum resident set size (KB) = 1206396 -Test 059 regional_spp_sppt_shum_skeb_intel PASS +Test 062 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_decomp_intel -Checking test 060 rap_decomp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_decomp_intel +Checking test 063 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2825,15 +2942,15 @@ Checking test 060 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 632.227708 - 0: The maximum resident set size (KB) = 958360 + 0: The total amount of wall time = 623.533788 + 0: The maximum resident set size (KB) = 959284 -Test 060 rap_decomp_intel PASS +Test 063 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_2threads_intel -Checking test 061 rap_2threads_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_2threads_intel +Checking test 064 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2879,15 +2996,15 @@ Checking test 061 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 601.036051 - 0: The maximum resident set size (KB) = 1064436 + 0: The total amount of wall time = 566.323492 + 0: The maximum resident set size (KB) = 1072532 -Test 061 rap_2threads_intel PASS +Test 064 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_restart_intel -Checking test 062 rap_restart_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_restart_intel +Checking test 065 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2925,15 +3042,15 @@ Checking test 062 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.273813 - 0: The maximum resident set size (KB) = 968740 + 0: The total amount of wall time = 309.775868 + 0: The maximum resident set size (KB) = 981608 -Test 062 rap_restart_intel PASS +Test 065 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_intel -Checking test 063 rap_sfcdiff_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_intel +Checking test 066 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2979,15 +3096,15 @@ Checking test 063 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 598.769691 - 0: The maximum resident set size (KB) = 964536 + 0: The total amount of wall time = 598.527899 + 0: The maximum resident set size (KB) = 977036 -Test 063 rap_sfcdiff_intel PASS +Test 066 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_decomp_intel -Checking test 064 rap_sfcdiff_decomp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_decomp_intel +Checking test 067 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3033,15 +3150,15 @@ Checking test 064 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 614.927690 - 0: The maximum resident set size (KB) = 963116 + 0: The total amount of wall time = 633.864935 + 0: The maximum resident set size (KB) = 985060 -Test 064 rap_sfcdiff_decomp_intel PASS +Test 067 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_restart_intel -Checking test 065 rap_sfcdiff_restart_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_restart_intel +Checking test 068 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3079,15 +3196,15 @@ Checking test 065 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.473650 - 0: The maximum resident set size (KB) = 981408 + 0: The total amount of wall time = 447.171546 + 0: The maximum resident set size (KB) = 989876 -Test 065 rap_sfcdiff_restart_intel PASS +Test 068 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_intel -Checking test 066 hrrr_control_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_intel +Checking test 069 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3133,15 +3250,15 @@ Checking test 066 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 303.390755 - 0: The maximum resident set size (KB) = 963484 + 0: The total amount of wall time = 298.816663 + 0: The maximum resident set size (KB) = 974052 -Test 066 hrrr_control_intel PASS +Test 069 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_decomp_intel -Checking test 067 hrrr_control_decomp_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_decomp_intel +Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3187,15 +3304,15 @@ Checking test 067 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 310.795916 - 0: The maximum resident set size (KB) = 952796 + 0: The total amount of wall time = 309.949365 + 0: The maximum resident set size (KB) = 966568 -Test 067 hrrr_control_decomp_intel PASS +Test 070 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_2threads_intel -Checking test 068 hrrr_control_2threads_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_2threads_intel +Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3241,29 +3358,29 @@ Checking test 068 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.690605 - 0: The maximum resident set size (KB) = 1034104 + 0: The total amount of wall time = 281.164205 + 0: The maximum resident set size (KB) = 1054776 -Test 068 hrrr_control_2threads_intel PASS +Test 071 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_restart_intel -Checking test 069 hrrr_control_restart_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_restart_intel +Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 156.766711 - 0: The maximum resident set size (KB) = 896724 + 0: The total amount of wall time = 157.921559 + 0: The maximum resident set size (KB) = 908264 -Test 069 hrrr_control_restart_intel PASS +Test 072 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1beta_intel -Checking test 070 rrfs_v1beta_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1beta_intel +Checking test 073 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3309,15 +3426,15 @@ Checking test 070 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 592.016207 - 0: The maximum resident set size (KB) = 960200 + 0: The total amount of wall time = 583.963593 + 0: The maximum resident set size (KB) = 975884 -Test 070 rrfs_v1beta_intel PASS +Test 073 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1nssl_intel -Checking test 071 rrfs_v1nssl_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1nssl_intel +Checking test 074 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3331,15 +3448,15 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 750.197024 - 0: The maximum resident set size (KB) = 1924032 + 0: The total amount of wall time = 724.147748 + 0: The maximum resident set size (KB) = 1934080 -Test 071 rrfs_v1nssl_intel PASS +Test 074 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1nssl_nohailnoccn_intel -Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1nssl_nohailnoccn_intel +Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3353,15 +3470,15 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 728.458220 - 0: The maximum resident set size (KB) = 1921580 + 0: The total amount of wall time = 712.517861 + 0: The maximum resident set size (KB) = 1931704 -Test 072 rrfs_v1nssl_nohailnoccn_intel PASS +Test 075 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmg_intel -Checking test 073 control_csawmg_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmg_intel +Checking test 076 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3371,15 +3488,15 @@ Checking test 073 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 478.115315 - 0: The maximum resident set size (KB) = 690804 + 0: The total amount of wall time = 460.759028 + 0: The maximum resident set size (KB) = 684168 -Test 073 control_csawmg_intel PASS +Test 076 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmgt_intel -Checking test 074 control_csawmgt_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmgt_intel +Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3389,15 +3506,15 @@ Checking test 074 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 465.482148 - 0: The maximum resident set size (KB) = 682656 + 0: The total amount of wall time = 452.316774 + 0: The maximum resident set size (KB) = 681444 -Test 074 control_csawmgt_intel PASS +Test 077 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_ras_intel -Checking test 075 control_ras_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_ras_intel +Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3407,27 +3524,27 @@ Checking test 075 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.784614 - 0: The maximum resident set size (KB) = 656428 + 0: The total amount of wall time = 258.444473 + 0: The maximum resident set size (KB) = 651760 -Test 075 control_ras_intel PASS +Test 078 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wam_intel -Checking test 076 control_wam_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wam_intel +Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 168.445992 - 0: The maximum resident set size (KB) = 496720 + 0: The total amount of wall time = 153.005151 + 0: The maximum resident set size (KB) = 494896 -Test 076 control_wam_intel PASS +Test 079 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_faster_intel -Checking test 077 control_p8_faster_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_faster_intel +Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3473,15 +3590,15 @@ Checking test 077 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.329026 - 0: The maximum resident set size (KB) = 1557880 + 0: The total amount of wall time = 1542.511795 + 0: The maximum resident set size (KB) = 1554980 -Test 077 control_p8_faster_intel PASS +Test 080 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_control_faster_intel -Checking test 078 regional_control_faster_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_control_faster_intel +Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3491,15 +3608,15 @@ Checking test 078 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 401.570741 - 0: The maximum resident set size (KB) = 752992 + 0: The total amount of wall time = 406.383152 + 0: The maximum resident set size (KB) = 753392 -Test 078 regional_control_faster_intel PASS +Test 081 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_CubedSphereGrid_debug_intel -Checking test 079 control_CubedSphereGrid_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_CubedSphereGrid_debug_intel +Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3525,365 +3642,365 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 192.490407 - 0: The maximum resident set size (KB) = 750844 + 0: The total amount of wall time = 188.357477 + 0: The maximum resident set size (KB) = 749128 -Test 079 control_CubedSphereGrid_debug_intel PASS +Test 082 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 080 control_wrtGauss_netcdf_parallel_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 187.972743 - 0: The maximum resident set size (KB) = 746548 + 0: The total amount of wall time = 185.593795 + 0: The maximum resident set size (KB) = 749272 -Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_stochy_debug_intel -Checking test 081 control_stochy_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_stochy_debug_intel +Checking test 084 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.081972 - 0: The maximum resident set size (KB) = 757112 + 0: The total amount of wall time = 212.849091 + 0: The maximum resident set size (KB) = 757932 -Test 081 control_stochy_debug_intel PASS +Test 084 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_lndp_debug_intel -Checking test 082 control_lndp_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_lndp_debug_intel +Checking test 085 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.783454 - 0: The maximum resident set size (KB) = 760372 + 0: The total amount of wall time = 191.811299 + 0: The maximum resident set size (KB) = 757360 -Test 082 control_lndp_debug_intel PASS +Test 085 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmg_debug_intel -Checking test 083 control_csawmg_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmg_debug_intel +Checking test 086 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.265998 - 0: The maximum resident set size (KB) = 800744 + 0: The total amount of wall time = 299.542438 + 0: The maximum resident set size (KB) = 802284 -Test 083 control_csawmg_debug_intel PASS +Test 086 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_csawmgt_debug_intel -Checking test 084 control_csawmgt_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmgt_debug_intel +Checking test 087 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 309.849254 - 0: The maximum resident set size (KB) = 799084 + 0: The total amount of wall time = 294.660238 + 0: The maximum resident set size (KB) = 803716 -Test 084 control_csawmgt_debug_intel PASS +Test 087 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_ras_debug_intel -Checking test 085 control_ras_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_ras_debug_intel +Checking test 088 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.558943 - 0: The maximum resident set size (KB) = 762404 + 0: The total amount of wall time = 192.431456 + 0: The maximum resident set size (KB) = 762456 -Test 085 control_ras_debug_intel PASS +Test 088 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_diag_debug_intel -Checking test 086 control_diag_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_diag_debug_intel +Checking test 089 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.178858 - 0: The maximum resident set size (KB) = 812228 + 0: The total amount of wall time = 194.058677 + 0: The maximum resident set size (KB) = 804912 -Test 086 control_diag_debug_intel PASS +Test 089 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_debug_p8_intel -Checking test 087 control_debug_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_debug_p8_intel +Checking test 090 control_debug_p8_intel 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.174325 - 0: The maximum resident set size (KB) = 1577236 + 0: The total amount of wall time = 198.728666 + 0: The maximum resident set size (KB) = 1591356 -Test 087 control_debug_p8_intel PASS +Test 090 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_debug_intel -Checking test 088 regional_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_debug_intel +Checking test 091 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1317.351066 - 0: The maximum resident set size (KB) = 767440 + 0: The total amount of wall time = 1292.766440 + 0: The maximum resident set size (KB) = 774804 -Test 088 regional_debug_intel PASS +Test 091 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_debug_intel -Checking test 089 rap_control_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_debug_intel +Checking test 092 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.102257 - 0: The maximum resident set size (KB) = 1132080 + 0: The total amount of wall time = 349.905467 + 0: The maximum resident set size (KB) = 1143516 -Test 089 rap_control_debug_intel PASS +Test 092 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_debug_intel -Checking test 090 hrrr_control_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_debug_intel +Checking test 093 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.939740 - 0: The maximum resident set size (KB) = 1127016 + 0: The total amount of wall time = 346.723687 + 0: The maximum resident set size (KB) = 1135228 -Test 090 hrrr_control_debug_intel PASS +Test 093 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_gf_debug_intel -Checking test 091 hrrr_gf_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_gf_debug_intel +Checking test 094 hrrr_gf_debug_intel 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.610078 - 0: The maximum resident set size (KB) = 1132572 + 0: The total amount of wall time = 568.069211 + 0: The maximum resident set size (KB) = 1148940 -Test 091 hrrr_gf_debug_intel PASS +Test 094 hrrr_gf_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_c3_debug_intel -Checking test 092 hrrr_c3_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_c3_debug_intel +Checking test 095 hrrr_c3_debug_intel 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.234398 - 0: The maximum resident set size (KB) = 1137440 + 0: The total amount of wall time = 350.213665 + 0: The maximum resident set size (KB) = 1150412 -Test 092 hrrr_c3_debug_intel PASS +Test 095 hrrr_c3_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_unified_drag_suite_debug_intel -Checking test 093 rap_unified_drag_suite_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_unified_drag_suite_debug_intel +Checking test 096 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.950314 - 0: The maximum resident set size (KB) = 1133776 + 0: The total amount of wall time = 354.587197 + 0: The maximum resident set size (KB) = 1135364 -Test 093 rap_unified_drag_suite_debug_intel PASS +Test 096 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_diag_debug_intel -Checking test 094 rap_diag_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_diag_debug_intel +Checking test 097 rap_diag_debug_intel 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.815050 - 0: The maximum resident set size (KB) = 1217836 + 0: The total amount of wall time = 601.041242 + 0: The maximum resident set size (KB) = 1228576 -Test 094 rap_diag_debug_intel PASS +Test 097 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_cires_ugwp_debug_intel -Checking test 095 rap_cires_ugwp_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_cires_ugwp_debug_intel +Checking test 098 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.823849 - 0: The maximum resident set size (KB) = 1144100 + 0: The total amount of wall time = 363.461759 + 0: The maximum resident set size (KB) = 1136368 -Test 095 rap_cires_ugwp_debug_intel PASS +Test 098 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_unified_ugwp_debug_intel -Checking test 096 rap_unified_ugwp_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_unified_ugwp_debug_intel +Checking test 099 rap_unified_ugwp_debug_intel 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.188224 - 0: The maximum resident set size (KB) = 1140600 + 0: The total amount of wall time = 354.903126 + 0: The maximum resident set size (KB) = 1149400 -Test 096 rap_unified_ugwp_debug_intel PASS +Test 099 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_lndp_debug_intel -Checking test 097 rap_lndp_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_lndp_debug_intel +Checking test 100 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.346610 - 0: The maximum resident set size (KB) = 1143964 + 0: The total amount of wall time = 351.025359 + 0: The maximum resident set size (KB) = 1146308 -Test 097 rap_lndp_debug_intel PASS +Test 100 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_progcld_thompson_debug_intel -Checking test 098 rap_progcld_thompson_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_progcld_thompson_debug_intel +Checking test 101 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.215987 - 0: The maximum resident set size (KB) = 1143608 + 0: The total amount of wall time = 348.226125 + 0: The maximum resident set size (KB) = 1141056 -Test 098 rap_progcld_thompson_debug_intel PASS +Test 101 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_noah_debug_intel -Checking test 099 rap_noah_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_noah_debug_intel +Checking test 102 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.608019 - 0: The maximum resident set size (KB) = 1134076 + 0: The total amount of wall time = 345.430331 + 0: The maximum resident set size (KB) = 1135924 -Test 099 rap_noah_debug_intel PASS +Test 102 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_sfcdiff_debug_intel -Checking test 100 rap_sfcdiff_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_debug_intel +Checking test 103 rap_sfcdiff_debug_intel 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.642470 - 0: The maximum resident set size (KB) = 1135520 + 0: The total amount of wall time = 347.394535 + 0: The maximum resident set size (KB) = 1138804 -Test 100 rap_sfcdiff_debug_intel PASS +Test 103 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 587.859844 - 0: The maximum resident set size (KB) = 1140564 + 0: The total amount of wall time = 579.086733 + 0: The maximum resident set size (KB) = 1138424 -Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rrfs_v1beta_debug_intel -Checking test 102 rrfs_v1beta_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1beta_debug_intel +Checking test 105 rrfs_v1beta_debug_intel 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.343287 - 0: The maximum resident set size (KB) = 1128152 + 0: The total amount of wall time = 358.855515 + 0: The maximum resident set size (KB) = 1130172 -Test 102 rrfs_v1beta_debug_intel PASS +Test 105 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_clm_lake_debug_intel -Checking test 103 rap_clm_lake_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_clm_lake_debug_intel +Checking test 106 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 437.635963 - 0: The maximum resident set size (KB) = 1151172 + 0: The total amount of wall time = 424.791817 + 0: The maximum resident set size (KB) = 1145256 -Test 103 rap_clm_lake_debug_intel PASS +Test 106 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_flake_debug_intel -Checking test 104 rap_flake_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_flake_debug_intel +Checking test 107 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.621826 - 0: The maximum resident set size (KB) = 1133652 + 0: The total amount of wall time = 360.887187 + 0: The maximum resident set size (KB) = 1137688 -Test 104 rap_flake_debug_intel PASS +Test 107 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/gnv1_c96_no_nest_debug_intel -Checking test 105 gnv1_c96_no_nest_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/gnv1_c96_no_nest_debug_intel +Checking test 108 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3923,27 +4040,27 @@ Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 630.324285 - 0: The maximum resident set size (KB) = 1147808 + 0: The total amount of wall time = 635.517852 + 0: The maximum resident set size (KB) = 1150112 -Test 105 gnv1_c96_no_nest_debug_intel PASS +Test 108 gnv1_c96_no_nest_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_wam_debug_intel -Checking test 106 control_wam_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wam_debug_intel +Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 355.866710 - 0: The maximum resident set size (KB) = 426180 + 0: The total amount of wall time = 356.678515 + 0: The maximum resident set size (KB) = 428228 -Test 106 control_wam_debug_intel PASS +Test 109 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3953,15 +4070,15 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 310.545600 - 0: The maximum resident set size (KB) = 1072628 + 0: The total amount of wall time = 305.193401 + 0: The maximum resident set size (KB) = 1081728 -Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn32_phy32_intel -Checking test 108 rap_control_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_dyn32_phy32_intel +Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4007,15 +4124,15 @@ Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 540.430023 - 0: The maximum resident set size (KB) = 905464 + 0: The total amount of wall time = 490.604441 + 0: The maximum resident set size (KB) = 899680 -Test 108 rap_control_dyn32_phy32_intel PASS +Test 111 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_dyn32_phy32_intel -Checking test 109 hrrr_control_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_dyn32_phy32_intel +Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4061,15 +4178,15 @@ Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.079008 - 0: The maximum resident set size (KB) = 859340 + 0: The total amount of wall time = 253.536128 + 0: The maximum resident set size (KB) = 868732 -Test 109 hrrr_control_dyn32_phy32_intel PASS +Test 112 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_2threads_dyn32_phy32_intel -Checking test 110 rap_2threads_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_2threads_dyn32_phy32_intel +Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4115,15 +4232,15 @@ Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 519.189753 - 0: The maximum resident set size (KB) = 926748 + 0: The total amount of wall time = 467.100544 + 0: The maximum resident set size (KB) = 939524 -Test 110 rap_2threads_dyn32_phy32_intel PASS +Test 113 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_2threads_dyn32_phy32_intel -Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_2threads_dyn32_phy32_intel +Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4169,15 +4286,15 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.924772 - 0: The maximum resident set size (KB) = 911056 + 0: The total amount of wall time = 235.815004 + 0: The maximum resident set size (KB) = 908468 -Test 111 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_decomp_dyn32_phy32_intel -Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_decomp_dyn32_phy32_intel +Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4223,15 +4340,15 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.598751 - 0: The maximum resident set size (KB) = 845876 + 0: The total amount of wall time = 264.716343 + 0: The maximum resident set size (KB) = 847108 -Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_restart_dyn32_phy32_intel -Checking test 113 rap_restart_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_restart_dyn32_phy32_intel +Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4269,29 +4386,29 @@ Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 376.424202 - 0: The maximum resident set size (KB) = 886748 + 0: The total amount of wall time = 361.936582 + 0: The maximum resident set size (KB) = 894932 -Test 113 rap_restart_dyn32_phy32_intel PASS +Test 116 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_restart_dyn32_phy32_intel -Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_restart_dyn32_phy32_intel +Checking test 117 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 166.653642 - 0: The maximum resident set size (KB) = 829232 + 0: The total amount of wall time = 139.092026 + 0: The maximum resident set size (KB) = 834104 -Test 114 hrrr_control_restart_dyn32_phy32_intel PASS +Test 117 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_control_intel -Checking test 115 conus13km_control_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_control_intel +Checking test 118 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4306,123 +4423,73 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 169.747631 - 0: The maximum resident set size (KB) = 1090200 + 0: The total amount of wall time = 160.838415 + 0: The maximum resident set size (KB) = 1102664 -Test 115 conus13km_control_intel PASS +Test 118 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_2threads_intel -Checking test 116 conus13km_2threads_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_2threads_intel +Checking test 119 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 69.614378 - 0: The maximum resident set size (KB) = 1040580 + 0: The total amount of wall time = 70.081011 + 0: The maximum resident set size (KB) = 1047204 -Test 116 conus13km_2threads_intel PASS +Test 119 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_restart_mismatch_intel -Checking test 117 conus13km_restart_mismatch_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_restart_mismatch_intel +Checking test 120 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 87.990363 - 0: The maximum resident set size (KB) = 1007572 + 0: The total amount of wall time = 88.372858 + 0: The maximum resident set size (KB) = 1020236 -Test 117 conus13km_restart_mismatch_intel PASS +Test 120 conus13km_restart_mismatch_intel PASS +Test 121 rap_control_dyn64_phy32_intel FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn64_phy32_intel -Checking test 118 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 384.000363 - 0: The maximum resident set size (KB) = 891008 - -Test 118 rap_control_dyn64_phy32_intel PASS +Test 121 rap_control_dyn64_phy32_intel FAIL baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_debug_dyn32_phy32_intel -Checking test 119 rap_control_debug_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_debug_dyn32_phy32_intel +Checking test 122 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.554647 - 0: The maximum resident set size (KB) = 1023108 + 0: The total amount of wall time = 346.779114 + 0: The maximum resident set size (KB) = 1016940 -Test 119 rap_control_debug_dyn32_phy32_intel PASS +Test 122 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hrrr_control_debug_dyn32_phy32_intel -Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_debug_dyn32_phy32_intel +Checking test 123 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.123992 - 0: The maximum resident set size (KB) = 1011440 + 0: The total amount of wall time = 336.540688 + 0: The maximum resident set size (KB) = 1015156 -Test 120 hrrr_control_debug_dyn32_phy32_intel PASS +Test 123 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_intel -Checking test 121 conus13km_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_debug_intel +Checking test 124 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4435,15 +4502,15 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1076.120549 - 0: The maximum resident set size (KB) = 1133136 + 0: The total amount of wall time = 1087.799619 + 0: The maximum resident set size (KB) = 1133244 -Test 121 conus13km_debug_intel PASS +Test 124 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_qr_intel -Checking test 122 conus13km_debug_qr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_debug_qr_intel +Checking test 125 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4456,82 +4523,82 @@ Checking test 122 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1091.667718 - 0: The maximum resident set size (KB) = 837892 + 0: The total amount of wall time = 1105.620089 + 0: The maximum resident set size (KB) = 843328 -Test 122 conus13km_debug_qr_intel PASS +Test 125 conus13km_debug_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_debug_2threads_intel -Checking test 123 conus13km_debug_2threads_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_debug_2threads_intel +Checking test 126 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 619.059483 - 0: The maximum resident set size (KB) = 1075356 + 0: The total amount of wall time = 628.659268 + 0: The maximum resident set size (KB) = 1073936 -Test 123 conus13km_debug_2threads_intel PASS +Test 126 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/conus13km_radar_tten_debug_intel -Checking test 124 conus13km_radar_tten_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_radar_tten_debug_intel +Checking test 127 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1074.252553 - 0: The maximum resident set size (KB) = 1199864 + 0: The total amount of wall time = 1090.134073 + 0: The maximum resident set size (KB) = 1199392 -Test 124 conus13km_radar_tten_debug_intel PASS +Test 127 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/rap_control_dyn64_phy32_debug_intel -Checking test 125 rap_control_dyn64_phy32_debug_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_dyn64_phy32_debug_intel +Checking test 128 rap_control_dyn64_phy32_debug_intel 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.629945 - 0: The maximum resident set size (KB) = 1057328 + 0: The total amount of wall time = 351.904484 + 0: The maximum resident set size (KB) = 1060596 -Test 125 rap_control_dyn64_phy32_debug_intel PASS +Test 128 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_intel -Checking test 126 hafs_regional_atm_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_intel +Checking test 129 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 443.298821 - 0: The maximum resident set size (KB) = 706520 + 0: The total amount of wall time = 465.372109 + 0: The maximum resident set size (KB) = 712304 -Test 126 hafs_regional_atm_intel PASS +Test 129 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 403.824865 - 0: The maximum resident set size (KB) = 1080344 + 0: The total amount of wall time = 477.551739 + 0: The maximum resident set size (KB) = 1093428 -Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_ocn_intel -Checking test 128 hafs_regional_atm_ocn_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_ocn_intel +Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4539,15 +4606,15 @@ Checking test 128 hafs_regional_atm_ocn_intel 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 = 655.990409 - 0: The maximum resident set size (KB) = 759608 + 0: The total amount of wall time = 567.839293 + 0: The maximum resident set size (KB) = 764688 -Test 128 hafs_regional_atm_ocn_intel PASS +Test 131 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_wav_intel -Checking test 129 hafs_regional_atm_wav_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_wav_intel +Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4555,15 +4622,15 @@ Checking test 129 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 966.545456 - 0: The maximum resident set size (KB) = 794428 + 0: The total amount of wall time = 997.822163 + 0: The maximum resident set size (KB) = 927660 -Test 129 hafs_regional_atm_wav_intel PASS +Test 132 hafs_regional_atm_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_atm_ocn_wav_intel -Checking test 130 hafs_regional_atm_ocn_wav_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_ocn_wav_intel +Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4573,15 +4640,15 @@ Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1090.458519 - 0: The maximum resident set size (KB) = 811940 + 0: The total amount of wall time = 1105.254249 + 0: The maximum resident set size (KB) = 812168 -Test 130 hafs_regional_atm_ocn_wav_intel PASS +Test 133 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/gnv1_nested_intel -Checking test 131 gnv1_nested_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/gnv1_nested_intel +Checking test 134 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4595,25 +4662,25 @@ Checking test 131 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK @@ -4621,155 +4688,155 @@ Checking test 131 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 363.769047 - 0: The maximum resident set size (KB) = 764948 + 0: The total amount of wall time = 349.149234 + 0: The maximum resident set size (KB) = 773316 -Test 131 gnv1_nested_intel PASS +Test 134 gnv1_nested_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_docn_intel -Checking test 132 hafs_regional_docn_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_docn_intel +Checking test 135 hafs_regional_docn_intel 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 = 518.557268 - 0: The maximum resident set size (KB) = 762728 + 0: The total amount of wall time = 554.668426 + 0: The maximum resident set size (KB) = 763712 -Test 132 hafs_regional_docn_intel PASS +Test 135 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/hafs_regional_docn_oisst_intel -Checking test 133 hafs_regional_docn_oisst_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_docn_oisst_intel +Checking test 136 hafs_regional_docn_oisst_intel 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 = 517.251897 - 0: The maximum resident set size (KB) = 754184 + 0: The total amount of wall time = 579.678186 + 0: The maximum resident set size (KB) = 746072 -Test 133 hafs_regional_docn_oisst_intel PASS +Test 136 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_cfsr_intel -Checking test 134 datm_cdeps_control_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_control_cfsr_intel +Checking test 137 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 220.939666 - 0: The maximum resident set size (KB) = 1041044 + 0: The total amount of wall time = 205.297206 + 0: The maximum resident set size (KB) = 1037368 -Test 134 datm_cdeps_control_cfsr_intel PASS +Test 137 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_restart_cfsr_intel -Checking test 135 datm_cdeps_restart_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_restart_cfsr_intel +Checking test 138 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.748138 - 0: The maximum resident set size (KB) = 1010424 + 0: The total amount of wall time = 122.982174 + 0: The maximum resident set size (KB) = 1004624 -Test 135 datm_cdeps_restart_cfsr_intel PASS +Test 138 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_gefs_intel -Checking test 136 datm_cdeps_control_gefs_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_control_gefs_intel +Checking test 139 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.912886 - 0: The maximum resident set size (KB) = 912816 + 0: The total amount of wall time = 200.183999 + 0: The maximum resident set size (KB) = 909792 -Test 136 datm_cdeps_control_gefs_intel PASS +Test 139 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_iau_gefs_intel -Checking test 137 datm_cdeps_iau_gefs_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_iau_gefs_intel +Checking test 140 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 211.864442 - 0: The maximum resident set size (KB) = 916024 + 0: The total amount of wall time = 203.058704 + 0: The maximum resident set size (KB) = 917328 -Test 137 datm_cdeps_iau_gefs_intel PASS +Test 140 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_stochy_gefs_intel -Checking test 138 datm_cdeps_stochy_gefs_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_stochy_gefs_intel +Checking test 141 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 215.613949 - 0: The maximum resident set size (KB) = 912072 + 0: The total amount of wall time = 202.945604 + 0: The maximum resident set size (KB) = 915468 -Test 138 datm_cdeps_stochy_gefs_intel PASS +Test 141 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_ciceC_cfsr_intel -Checking test 139 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_ciceC_cfsr_intel +Checking test 142 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.309708 - 0: The maximum resident set size (KB) = 1034352 + 0: The total amount of wall time = 206.121399 + 0: The maximum resident set size (KB) = 1042820 -Test 139 datm_cdeps_ciceC_cfsr_intel PASS +Test 142 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_bulk_cfsr_intel -Checking test 140 datm_cdeps_bulk_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_bulk_cfsr_intel +Checking test 143 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 209.676994 - 0: The maximum resident set size (KB) = 1040748 + 0: The total amount of wall time = 207.490694 + 0: The maximum resident set size (KB) = 1038888 -Test 140 datm_cdeps_bulk_cfsr_intel PASS +Test 143 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_bulk_gefs_intel -Checking test 141 datm_cdeps_bulk_gefs_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_bulk_gefs_intel +Checking test 144 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.204584 - 0: The maximum resident set size (KB) = 916436 + 0: The total amount of wall time = 199.872745 + 0: The maximum resident set size (KB) = 915980 -Test 141 datm_cdeps_bulk_gefs_intel PASS +Test 144 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_mx025_cfsr_intel -Checking test 142 datm_cdeps_mx025_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_mx025_cfsr_intel +Checking test 145 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4777,15 +4844,15 @@ Checking test 142 datm_cdeps_mx025_cfsr_intel 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 = 483.159532 - 0: The maximum resident set size (KB) = 876200 + 0: The total amount of wall time = 467.346769 + 0: The maximum resident set size (KB) = 882220 -Test 142 datm_cdeps_mx025_cfsr_intel PASS +Test 145 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_mx025_gefs_intel -Checking test 143 datm_cdeps_mx025_gefs_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_mx025_gefs_intel +Checking test 146 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4793,78 +4860,78 @@ Checking test 143 datm_cdeps_mx025_gefs_intel 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 = 470.759085 - 0: The maximum resident set size (KB) = 835960 + 0: The total amount of wall time = 468.781817 + 0: The maximum resident set size (KB) = 832900 -Test 143 datm_cdeps_mx025_gefs_intel PASS +Test 146 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_multiple_files_cfsr_intel -Checking test 144 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_multiple_files_cfsr_intel +Checking test 147 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.941141 - 0: The maximum resident set size (KB) = 1034344 + 0: The total amount of wall time = 205.929763 + 0: The maximum resident set size (KB) = 1040264 -Test 144 datm_cdeps_multiple_files_cfsr_intel PASS +Test 147 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_3072x1536_cfsr_intel -Checking test 145 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_3072x1536_cfsr_intel +Checking test 148 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 286.844545 - 0: The maximum resident set size (KB) = 2342548 + 0: The total amount of wall time = 295.179018 + 0: The maximum resident set size (KB) = 2389416 -Test 145 datm_cdeps_3072x1536_cfsr_intel PASS +Test 148 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_gfs_intel -Checking test 146 datm_cdeps_gfs_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_gfs_intel +Checking test 149 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 319.705100 - 0: The maximum resident set size (KB) = 2391576 + 0: The total amount of wall time = 298.332500 + 0: The maximum resident set size (KB) = 2349332 -Test 146 datm_cdeps_gfs_intel PASS +Test 149 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_debug_cfsr_intel -Checking test 147 datm_cdeps_debug_cfsr_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_debug_cfsr_intel +Checking test 150 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 468.447559 - 0: The maximum resident set size (KB) = 990680 + 0: The total amount of wall time = 474.510845 + 0: The maximum resident set size (KB) = 982944 -Test 147 datm_cdeps_debug_cfsr_intel PASS +Test 150 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_control_cfsr_faster_intel -Checking test 148 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_control_cfsr_faster_intel +Checking test 151 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 219.323172 - 0: The maximum resident set size (KB) = 1034180 + 0: The total amount of wall time = 206.218043 + 0: The maximum resident set size (KB) = 1036948 -Test 148 datm_cdeps_control_cfsr_faster_intel PASS +Test 151 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_gswp3_intel -Checking test 149 datm_cdeps_lnd_gswp3_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_lnd_gswp3_intel +Checking test 152 datm_cdeps_lnd_gswp3_intel 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 @@ -4872,15 +4939,15 @@ Checking test 149 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 90.188574 - 0: The maximum resident set size (KB) = 223740 + 0: The total amount of wall time = 99.391731 + 0: The maximum resident set size (KB) = 226916 -Test 149 datm_cdeps_lnd_gswp3_intel PASS +Test 152 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_era5_intel -Checking test 150 datm_cdeps_lnd_era5_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_lnd_era5_intel +Checking test 153 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4888,15 +4955,15 @@ Checking test 150 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 65.236300 - 0: The maximum resident set size (KB) = 251264 + 0: The total amount of wall time = 72.979412 + 0: The maximum resident set size (KB) = 250596 -Test 150 datm_cdeps_lnd_era5_intel PASS +Test 153 datm_cdeps_lnd_era5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/datm_cdeps_lnd_era5_rst_intel -Checking test 151 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_lnd_era5_rst_intel +Checking test 154 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4904,15 +4971,15 @@ Checking test 151 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 36.899065 - 0: The maximum resident set size (KB) = 244708 + 0: The total amount of wall time = 77.868172 + 0: The maximum resident set size (KB) = 245364 -Test 151 datm_cdeps_lnd_era5_rst_intel PASS +Test 154 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_atmlnd_sbs_intel -Checking test 152 control_p8_atmlnd_sbs_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_atmlnd_sbs_intel +Checking test 155 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5000,15 +5067,15 @@ Checking test 152 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 616.627105 - 0: The maximum resident set size (KB) = 1577792 + 0: The total amount of wall time = 708.106718 + 0: The maximum resident set size (KB) = 1596332 -Test 152 control_p8_atmlnd_sbs_intel PASS +Test 155 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_p8_atmlnd_intel -Checking test 153 control_p8_atmlnd_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_atmlnd_intel +Checking test 156 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5096,15 +5163,15 @@ Checking test 153 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 660.431612 - 0: The maximum resident set size (KB) = 1586640 + 0: The total amount of wall time = 743.021733 + 0: The maximum resident set size (KB) = 1576572 -Test 153 control_p8_atmlnd_intel PASS +Test 156 control_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_restart_p8_atmlnd_intel -Checking test 154 control_restart_p8_atmlnd_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_restart_p8_atmlnd_intel +Checking test 157 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5124,15 +5191,15 @@ Checking test 154 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 299.971510 - 0: The maximum resident set size (KB) = 847156 + 0: The total amount of wall time = 296.205425 + 0: The maximum resident set size (KB) = 861812 -Test 154 control_restart_p8_atmlnd_intel PASS +Test 157 control_restart_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmwav_control_noaero_p8_intel -Checking test 155 atmwav_control_noaero_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmwav_control_noaero_p8_intel +Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5174,15 +5241,15 @@ Checking test 155 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 126.897672 - 0: The maximum resident set size (KB) = 1578440 + 0: The total amount of wall time = 127.991521 + 0: The maximum resident set size (KB) = 1595684 -Test 155 atmwav_control_noaero_p8_intel PASS +Test 158 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/control_atmwav_intel -Checking test 156 control_atmwav_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_atmwav_intel +Checking test 159 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5225,15 +5292,15 @@ Checking test 156 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 126.754232 - 0: The maximum resident set size (KB) = 597980 + 0: The total amount of wall time = 120.866261 + 0: The maximum resident set size (KB) = 599780 -Test 156 control_atmwav_intel PASS +Test 159 control_atmwav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_intel -Checking test 157 atmaero_control_p8_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmaero_control_p8_intel +Checking test 160 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5276,15 +5343,15 @@ Checking test 157 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.736648 - 0: The maximum resident set size (KB) = 1667380 + 0: The total amount of wall time = 387.190035 + 0: The maximum resident set size (KB) = 1692196 -Test 157 atmaero_control_p8_intel PASS +Test 160 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_rad_intel -Checking test 158 atmaero_control_p8_rad_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmaero_control_p8_rad_intel +Checking test 161 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5327,15 +5394,15 @@ Checking test 158 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.562073 - 0: The maximum resident set size (KB) = 1690284 + 0: The total amount of wall time = 439.024329 + 0: The maximum resident set size (KB) = 1714636 -Test 158 atmaero_control_p8_rad_intel PASS +Test 161 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_43104/atmaero_control_p8_rad_micro_intel -Checking test 159 atmaero_control_p8_rad_micro_intel results .... +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmaero_control_p8_rad_micro_intel +Checking test 162 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5378,12 +5445,151 @@ Checking test 159 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.158796 - 0: The maximum resident set size (KB) = 1709132 + 0: The total amount of wall time = 449.967384 + 0: The maximum resident set size (KB) = 1726520 + +Test 162 atmaero_control_p8_rad_micro_intel PASS + +FAILED TESTS: +cpld_debug_gfsv17_intel 006 failed in run_test +rap_control_dyn64_phy32_intel 121 failed in run_test + +REGRESSION TEST FAILED +Tue Feb 6 18:33:40 UTC 2024 +Elapsed time: 03h:33m:44s. Have a nice day! +Tue Feb 6 19:04:24 UTC 2024 +Start Regression test + +Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile rrfs_dyn64_phy32_intel elapsed time 1815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 312 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_256125/cpld_debug_gfsv17_intel +Checking test 001 cpld_debug_gfsv17_intel results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1796.716592 + 0: The maximum resident set size (KB) = 1643048 + +Test 001 cpld_debug_gfsv17_intel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_256125/rap_control_dyn64_phy32_intel +Checking test 002 rap_control_dyn64_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 327.515893 + 0: The maximum resident set size (KB) = 905720 -Test 159 atmaero_control_p8_rad_micro_intel PASS +Test 002 rap_control_dyn64_phy32_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 2 06:43:44 UTC 2024 -Elapsed time: 03h:44m:37s. Have a nice day! +Tue Feb 6 19:46:33 UTC 2024 +Elapsed time: 00h:42m:09s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 7add30c7a4..093e7bbfef 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,62 +1,62 @@ -Thu Feb 1 22:01:33 CST 2024 +Tue Feb 6 08:29:59 CST 2024 Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 694 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 218 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 702 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 337 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 702 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 728 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 718 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 704 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 276 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 515 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 70 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 678 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 893 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 233 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 892 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 800 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 846 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 704 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 256 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 633 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 740 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 775 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 874 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 352 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1106 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 313 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 852 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 309 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 823 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1202 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 715 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 201 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 285 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 803 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 788 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 709 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 250 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 406 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 462 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 692 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 849 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 236 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 779 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 822 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 851 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 685 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 745 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 778 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 747 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 857 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 307 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1305 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 323 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 880 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 307 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 898 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 288 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 294.046227 - 0: The maximum resident set size (KB) = 3176816 + 0: The total amount of wall time = 298.445963 + 0: The maximum resident set size (KB) = 3185776 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 966.565559 - 0: The maximum resident set size (KB) = 1742380 + 0: The total amount of wall time = 971.884941 + 0: The maximum resident set size (KB) = 1738240 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1064.414508 - 0: The maximum resident set size (KB) = 2026092 + 0: The total amount of wall time = 1024.208345 + 0: The maximum resident set size (KB) = 2019756 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 468.605638 - 0: The maximum resident set size (KB) = 1115996 + 0: The total amount of wall time = 473.318101 + 0: The maximum resident set size (KB) = 1108648 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1091.503730 - 0: The maximum resident set size (KB) = 1636144 + 0: The total amount of wall time = 1104.485319 + 0: The maximum resident set size (KB) = 1640668 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1355.400569 - 0: The maximum resident set size (KB) = 1689140 + 0: The total amount of wall time = 1360.597226 + 0: The maximum resident set size (KB) = 1690896 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -507,15 +507,87 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.640949 - 0: The maximum resident set size (KB) = 3218128 + 0: The total amount of wall time = 325.813042 + 0: The maximum resident set size (KB) = 3216768 Test 007 cpld_control_p8_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 322.594867 + 0: The maximum resident set size (KB) = 3211332 + +Test 008 cpld_control_p8.v2.sfc_intel PASS + + baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -567,15 +639,15 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 188.512875 - 0: The maximum resident set size (KB) = 3259248 + 0: The total amount of wall time = 188.941609 + 0: The maximum resident set size (KB) = 3251456 -Test 008 cpld_restart_p8_intel PASS +Test 009 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -639,15 +711,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.929311 - 0: The maximum resident set size (KB) = 3160688 + 0: The total amount of wall time = 327.737561 + 0: The maximum resident set size (KB) = 3238924 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -699,15 +771,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.390015 - 0: The maximum resident set size (KB) = 3273800 + 0: The total amount of wall time = 190.386312 + 0: The maximum resident set size (KB) = 3270864 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_2threads_p8_intel +Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -759,15 +831,15 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.961573 - 0: The maximum resident set size (KB) = 3554640 + 0: The total amount of wall time = 348.265402 + 0: The maximum resident set size (KB) = 3551252 -Test 011 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_decomp_p8_intel +Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -819,15 +891,15 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.932221 - 0: The maximum resident set size (KB) = 3208728 + 0: The total amount of wall time = 323.582100 + 0: The maximum resident set size (KB) = 3206244 -Test 012 cpld_decomp_p8_intel PASS +Test 013 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_mpi_p8_intel +Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -879,15 +951,15 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 271.839824 - 0: The maximum resident set size (KB) = 3074456 + 0: The total amount of wall time = 269.814145 + 0: The maximum resident set size (KB) = 3069696 -Test 013 cpld_mpi_p8_intel PASS +Test 014 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_ciceC_p8_intel +Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -951,15 +1023,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.524557 - 0: The maximum resident set size (KB) = 3216920 + 0: The total amount of wall time = 326.105808 + 0: The maximum resident set size (KB) = 3215068 -Test 014 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_c192_p8_intel +Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1011,15 +1083,15 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 575.326427 - 0: The maximum resident set size (KB) = 3346456 + 0: The total amount of wall time = 583.188567 + 0: The maximum resident set size (KB) = 3340328 -Test 015 cpld_control_c192_p8_intel PASS +Test 016 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_c192_p8_intel +Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1071,15 +1143,15 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 364.745418 - 0: The maximum resident set size (KB) = 3619300 + 0: The total amount of wall time = 362.419364 + 0: The maximum resident set size (KB) = 3628012 -Test 016 cpld_restart_c192_p8_intel PASS +Test 017 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_bmark_p8_intel -Checking test 017 cpld_bmark_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_bmark_p8_intel +Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1126,15 +1198,15 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 633.792675 - 0: The maximum resident set size (KB) = 4125356 + 0: The total amount of wall time = 624.663774 + 0: The maximum resident set size (KB) = 4121996 -Test 017 cpld_bmark_p8_intel PASS +Test 018 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_bmark_p8_intel -Checking test 018 cpld_restart_bmark_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_bmark_p8_intel +Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1181,15 +1253,15 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 389.539242 - 0: The maximum resident set size (KB) = 4355964 + 0: The total amount of wall time = 386.058002 + 0: The maximum resident set size (KB) = 4366468 -Test 018 cpld_restart_bmark_p8_intel PASS +Test 019 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_s2sa_p8_intel -Checking test 019 cpld_s2sa_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_s2sa_p8_intel +Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1239,15 +1311,15 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 306.647417 - 0: The maximum resident set size (KB) = 3179640 + 0: The total amount of wall time = 308.780221 + 0: The maximum resident set size (KB) = 3177428 -Test 019 cpld_s2sa_p8_intel PASS +Test 020 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_noaero_p8_intel -Checking test 020 cpld_control_noaero_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_noaero_p8_intel +Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1310,15 +1382,15 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 252.632524 - 0: The maximum resident set size (KB) = 1733068 + 0: The total amount of wall time = 248.993660 + 0: The maximum resident set size (KB) = 1736464 -Test 020 cpld_control_noaero_p8_intel PASS +Test 021 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_nowave_noaero_p8_intel -Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_nowave_noaero_p8_intel +Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1379,15 +1451,15 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel 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 = 249.114124 - 0: The maximum resident set size (KB) = 1785904 + 0: The total amount of wall time = 244.609227 + 0: The maximum resident set size (KB) = 1781164 -Test 021 cpld_control_nowave_noaero_p8_intel PASS +Test 022 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_p8_intel -Checking test 022 cpld_debug_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_p8_intel +Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1439,15 +1511,15 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 499.646961 - 0: The maximum resident set size (KB) = 3248592 + 0: The total amount of wall time = 492.358234 + 0: The maximum resident set size (KB) = 3243392 -Test 022 cpld_debug_p8_intel PASS +Test 023 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_noaero_p8_intel -Checking test 023 cpld_debug_noaero_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_noaero_p8_intel +Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1498,15 +1570,15 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.395066 - 0: The maximum resident set size (KB) = 1756828 + 0: The total amount of wall time = 341.384803 + 0: The maximum resident set size (KB) = 1750804 -Test 023 cpld_debug_noaero_p8_intel PASS +Test 024 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_noaero_p8_agrid_intel -Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_noaero_p8_agrid_intel +Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1567,15 +1639,15 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel 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 = 246.734504 - 0: The maximum resident set size (KB) = 1781532 + 0: The total amount of wall time = 246.822809 + 0: The maximum resident set size (KB) = 1782768 -Test 024 cpld_control_noaero_p8_agrid_intel PASS +Test 025 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_c48_intel -Checking test 025 cpld_control_c48_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_c48_intel +Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1624,15 +1696,15 @@ Checking test 025 cpld_control_c48_intel 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 = 470.914637 - 0: The maximum resident set size (KB) = 2828148 + 0: The total amount of wall time = 475.514696 + 0: The maximum resident set size (KB) = 2826040 -Test 025 cpld_control_c48_intel PASS +Test 026 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_p8_faster_intel -Checking test 026 cpld_control_p8_faster_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8_faster_intel +Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1696,15 +1768,15 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.059168 - 0: The maximum resident set size (KB) = 3209460 + 0: The total amount of wall time = 304.011398 + 0: The maximum resident set size (KB) = 3210364 -Test 026 cpld_control_p8_faster_intel PASS +Test 027 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_control_pdlib_p8_intel -Checking test 027 cpld_control_pdlib_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_pdlib_p8_intel +Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1767,15 +1839,15 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 976.993130 - 0: The maximum resident set size (KB) = 1773884 + 0: The total amount of wall time = 970.854195 + 0: The maximum resident set size (KB) = 1772404 -Test 027 cpld_control_pdlib_p8_intel PASS +Test 028 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_restart_pdlib_p8_intel -Checking test 028 cpld_restart_pdlib_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_pdlib_p8_intel +Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1826,15 +1898,15 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 477.590817 - 0: The maximum resident set size (KB) = 1170924 + 0: The total amount of wall time = 469.237423 + 0: The maximum resident set size (KB) = 1171160 -Test 028 cpld_restart_pdlib_p8_intel PASS +Test 029 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_mpi_pdlib_p8_intel -Checking test 029 cpld_mpi_pdlib_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_mpi_pdlib_p8_intel +Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1897,15 +1969,15 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1103.760909 - 0: The maximum resident set size (KB) = 1632284 + 0: The total amount of wall time = 1091.315165 + 0: The maximum resident set size (KB) = 1684468 -Test 029 cpld_mpi_pdlib_p8_intel PASS +Test 030 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/cpld_debug_pdlib_p8_intel -Checking test 030 cpld_debug_pdlib_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_pdlib_p8_intel +Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1956,15 +2028,15 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1462.550741 - 0: The maximum resident set size (KB) = 1716116 + 0: The total amount of wall time = 1468.540401 + 0: The maximum resident set size (KB) = 1718044 -Test 030 cpld_debug_pdlib_p8_intel PASS +Test 031 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_flake_intel -Checking test 031 control_flake_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_flake_intel +Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1974,15 +2046,15 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.072155 - 0: The maximum resident set size (KB) = 701008 + 0: The total amount of wall time = 196.904449 + 0: The maximum resident set size (KB) = 692928 -Test 031 control_flake_intel PASS +Test 032 control_flake_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_intel -Checking test 032 control_CubedSphereGrid_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_CubedSphereGrid_intel +Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2008,20 +2080,20 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 134.048445 - 0: The maximum resident set size (KB) = 647724 + 0: The total amount of wall time = 135.805410 + 0: The maximum resident set size (KB) = 645604 -Test 032 control_CubedSphereGrid_intel PASS +Test 033 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_parallel_intel -Checking test 033 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_CubedSphereGrid_parallel_intel +Checking test 034 control_CubedSphereGrid_parallel_intel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK @@ -2030,15 +2102,15 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.901042 - 0: The maximum resident set size (KB) = 659308 + 0: The total amount of wall time = 140.668957 + 0: The maximum resident set size (KB) = 658108 -Test 033 control_CubedSphereGrid_parallel_intel PASS +Test 034 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_latlon_intel -Checking test 034 control_latlon_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_latlon_intel +Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2048,15 +2120,15 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.671306 - 0: The maximum resident set size (KB) = 648088 + 0: The total amount of wall time = 138.046549 + 0: The maximum resident set size (KB) = 654424 -Test 034 control_latlon_intel PASS +Test 035 control_latlon_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wrtGauss_netcdf_parallel_intel -Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wrtGauss_netcdf_parallel_intel +Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2066,15 +2138,61 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.249040 - 0: The maximum resident set size (KB) = 654920 + 0: The total amount of wall time = 140.795898 + 0: The maximum resident set size (KB) = 653864 -Test 035 control_wrtGauss_netcdf_parallel_intel PASS +Test 036 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c48_intel -Checking test 036 control_c48_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c48_intel +Checking test 037 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 346.505407 +0: The maximum resident set size (KB) = 875520 + +Test 037 control_c48_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c48.v2.sfc_intel +Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2112,15 +2230,15 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 345.978202 -0: The maximum resident set size (KB) = 877988 +0: The total amount of wall time = 346.946855 +0: The maximum resident set size (KB) = 870880 -Test 036 control_c48_intel PASS +Test 038 control_c48.v2.sfc_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c192_intel -Checking test 037 control_c192_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c192_intel +Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2130,15 +2248,15 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.140770 - 0: The maximum resident set size (KB) = 859184 + 0: The total amount of wall time = 529.436604 + 0: The maximum resident set size (KB) = 850876 -Test 037 control_c192_intel PASS +Test 039 control_c192_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c384_intel -Checking test 038 control_c384_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c384_intel +Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2148,15 +2266,15 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 590.185195 - 0: The maximum resident set size (KB) = 1199536 + 0: The total amount of wall time = 581.329296 + 0: The maximum resident set size (KB) = 1246528 -Test 038 control_c384_intel PASS +Test 040 control_c384_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_c384gdas_intel -Checking test 039 control_c384gdas_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c384gdas_intel +Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -2170,7 +2288,7 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK @@ -2178,7 +2296,7 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK @@ -2198,15 +2316,15 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.254308 - 0: The maximum resident set size (KB) = 1339444 + 0: The total amount of wall time = 514.805750 + 0: The maximum resident set size (KB) = 1355344 -Test 039 control_c384gdas_intel PASS +Test 041 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_intel -Checking test 040 control_stochy_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_stochy_intel +Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2216,29 +2334,29 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.220532 - 0: The maximum resident set size (KB) = 659592 + 0: The total amount of wall time = 88.856508 + 0: The maximum resident set size (KB) = 619120 -Test 040 control_stochy_intel PASS +Test 042 control_stochy_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_restart_intel -Checking test 041 control_stochy_restart_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_stochy_restart_intel +Checking test 043 control_stochy_restart_intel 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.543131 - 0: The maximum resident set size (KB) = 507940 + 0: The total amount of wall time = 49.663215 + 0: The maximum resident set size (KB) = 506108 -Test 041 control_stochy_restart_intel PASS +Test 043 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_lndp_intel -Checking test 042 control_lndp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_lndp_intel +Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2248,15 +2366,15 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.321342 - 0: The maximum resident set size (KB) = 658892 + 0: The total amount of wall time = 86.010475 + 0: The maximum resident set size (KB) = 656736 -Test 042 control_lndp_intel PASS +Test 044 control_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_iovr4_intel -Checking test 043 control_iovr4_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_iovr4_intel +Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2270,15 +2388,15 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.682410 - 0: The maximum resident set size (KB) = 653460 + 0: The total amount of wall time = 135.935899 + 0: The maximum resident set size (KB) = 652256 -Test 043 control_iovr4_intel PASS +Test 045 control_iovr4_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_iovr5_intel -Checking test 044 control_iovr5_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_iovr5_intel +Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2292,15 +2410,15 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.993128 - 0: The maximum resident set size (KB) = 648396 + 0: The total amount of wall time = 137.996551 + 0: The maximum resident set size (KB) = 653452 -Test 044 control_iovr5_intel PASS +Test 046 control_iovr5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_intel -Checking test 045 control_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_intel +Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2346,15 +2464,69 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.250103 - 0: The maximum resident set size (KB) = 1633920 + 0: The total amount of wall time = 167.737329 + 0: The maximum resident set size (KB) = 1629868 -Test 045 control_p8_intel PASS +Test 047 control_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8.v2.sfc_intel +Checking test 048 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 168.689370 + 0: The maximum resident set size (KB) = 1637288 + +Test 048 control_p8.v2.sfc_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_ugwpv1_intel -Checking test 046 control_p8_ugwpv1_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_ugwpv1_intel +Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2400,15 +2572,15 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.830730 - 0: The maximum resident set size (KB) = 1633780 + 0: The total amount of wall time = 159.320481 + 0: The maximum resident set size (KB) = 1634508 -Test 046 control_p8_ugwpv1_intel PASS +Test 049 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_p8_intel -Checking test 047 control_restart_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_restart_p8_intel +Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2446,15 +2618,15 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.466824 - 0: The maximum resident set size (KB) = 892936 + 0: The total amount of wall time = 86.925044 + 0: The maximum resident set size (KB) = 887344 -Test 047 control_restart_p8_intel PASS +Test 050 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_noqr_p8_intel -Checking test 048 control_noqr_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_noqr_p8_intel +Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2500,15 +2672,15 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.565574 - 0: The maximum resident set size (KB) = 1615488 + 0: The total amount of wall time = 160.333395 + 0: The maximum resident set size (KB) = 1616648 -Test 048 control_noqr_p8_intel PASS +Test 051 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_noqr_p8_intel -Checking test 049 control_restart_noqr_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_restart_noqr_p8_intel +Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2546,15 +2718,15 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 86.332897 - 0: The maximum resident set size (KB) = 928828 + 0: The total amount of wall time = 84.918284 + 0: The maximum resident set size (KB) = 931100 -Test 049 control_restart_noqr_p8_intel PASS +Test 052 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_decomp_p8_intel -Checking test 050 control_decomp_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_decomp_p8_intel +Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2596,15 +2768,15 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.381256 - 0: The maximum resident set size (KB) = 1611584 + 0: The total amount of wall time = 171.746062 + 0: The maximum resident set size (KB) = 1571984 -Test 050 control_decomp_p8_intel PASS +Test 053 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_2threads_p8_intel -Checking test 051 control_2threads_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_2threads_p8_intel +Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2646,15 +2818,15 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.854785 - 0: The maximum resident set size (KB) = 1717128 + 0: The total amount of wall time = 172.273654 + 0: The maximum resident set size (KB) = 1717328 -Test 051 control_2threads_p8_intel PASS +Test 054 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_lndp_intel -Checking test 052 control_p8_lndp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_lndp_intel +Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2672,15 +2844,15 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 301.354020 - 0: The maximum resident set size (KB) = 1624044 + 0: The total amount of wall time = 299.122936 + 0: The maximum resident set size (KB) = 1628164 -Test 052 control_p8_lndp_intel PASS +Test 055 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_rrtmgp_intel -Checking test 053 control_p8_rrtmgp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_rrtmgp_intel +Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2726,15 +2898,15 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.184009 - 0: The maximum resident set size (KB) = 1691512 + 0: The total amount of wall time = 223.737719 + 0: The maximum resident set size (KB) = 1691160 -Test 053 control_p8_rrtmgp_intel PASS +Test 056 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_mynn_intel +Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2780,15 +2952,15 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.293915 - 0: The maximum resident set size (KB) = 1629992 + 0: The total amount of wall time = 165.771588 + 0: The maximum resident set size (KB) = 1638400 -Test 054 control_p8_mynn_intel PASS +Test 057 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/merra2_thompson_intel +Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2834,15 +3006,15 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.767157 - 0: The maximum resident set size (KB) = 1631796 + 0: The total amount of wall time = 198.087473 + 0: The maximum resident set size (KB) = 1637836 -Test 055 merra2_thompson_intel PASS +Test 058 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_control_intel -Checking test 056 regional_control_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_control_intel +Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2852,29 +3024,29 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.059980 - 0: The maximum resident set size (KB) = 859848 + 0: The total amount of wall time = 294.968151 + 0: The maximum resident set size (KB) = 856096 -Test 056 regional_control_intel PASS +Test 059 regional_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_restart_intel -Checking test 057 regional_restart_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_restart_intel +Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.471064 - 0: The maximum resident set size (KB) = 988296 + 0: The total amount of wall time = 158.207357 + 0: The maximum resident set size (KB) = 1024324 -Test 057 regional_restart_intel PASS +Test 060 regional_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_decomp_intel +Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2884,15 +3056,15 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.786850 - 0: The maximum resident set size (KB) = 852068 + 0: The total amount of wall time = 314.543303 + 0: The maximum resident set size (KB) = 848720 -Test 058 regional_decomp_intel PASS +Test 061 regional_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_2threads_intel +Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2902,44 +3074,44 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 210.884786 - 0: The maximum resident set size (KB) = 864060 + 0: The total amount of wall time = 206.685530 + 0: The maximum resident set size (KB) = 848356 -Test 059 regional_2threads_intel PASS +Test 062 regional_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_noquilt_intel -Checking test 060 regional_noquilt_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_noquilt_intel +Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 293.236074 - 0: The maximum resident set size (KB) = 1359252 + 0: The total amount of wall time = 292.527427 + 0: The maximum resident set size (KB) = 1365440 -Test 060 regional_noquilt_intel PASS +Test 063 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_netcdf_parallel_intel +Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.567591 - 0: The maximum resident set size (KB) = 855680 + 0: The total amount of wall time = 300.243755 + 0: The maximum resident set size (KB) = 857960 -Test 061 regional_netcdf_parallel_intel PASS +Test 064 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_2dwrtdecomp_intel +Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2949,15 +3121,15 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.353093 - 0: The maximum resident set size (KB) = 855364 + 0: The total amount of wall time = 294.523284 + 0: The maximum resident set size (KB) = 852392 -Test 062 regional_2dwrtdecomp_intel PASS +Test 065 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_wofs_intel +Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2967,15 +3139,15 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 387.872943 - 0: The maximum resident set size (KB) = 1919028 + 0: The total amount of wall time = 383.680496 + 0: The maximum resident set size (KB) = 1921124 -Test 063 regional_wofs_intel PASS +Test 066 regional_wofs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_intel -Checking test 064 rap_control_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_intel +Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3021,15 +3193,15 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.587194 - 0: The maximum resident set size (KB) = 1108696 + 0: The total amount of wall time = 452.745353 + 0: The maximum resident set size (KB) = 1120444 -Test 064 rap_control_intel PASS +Test 067 rap_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_spp_sppt_shum_skeb_intel -Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_spp_sppt_shum_skeb_intel +Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3039,15 +3211,15 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 267.829959 - 0: The maximum resident set size (KB) = 1235240 + 0: The total amount of wall time = 268.230976 + 0: The maximum resident set size (KB) = 1301304 -Test 065 regional_spp_sppt_shum_skeb_intel PASS +Test 068 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_decomp_intel -Checking test 066 rap_decomp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_decomp_intel +Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3093,15 +3265,15 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.746087 - 0: The maximum resident set size (KB) = 1031056 + 0: The total amount of wall time = 476.568039 + 0: The maximum resident set size (KB) = 989280 -Test 066 rap_decomp_intel PASS +Test 069 rap_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_2threads_intel +Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3147,15 +3319,15 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.601814 - 0: The maximum resident set size (KB) = 1186196 + 0: The total amount of wall time = 465.337058 + 0: The maximum resident set size (KB) = 1183212 -Test 067 rap_2threads_intel PASS +Test 070 rap_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_restart_intel -Checking test 068 rap_restart_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_restart_intel +Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3193,15 +3365,15 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.904229 - 0: The maximum resident set size (KB) = 1099260 + 0: The total amount of wall time = 230.798240 + 0: The maximum resident set size (KB) = 1095072 -Test 068 rap_restart_intel PASS +Test 071 rap_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_intel +Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3247,15 +3419,15 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.192953 - 0: The maximum resident set size (KB) = 1103668 + 0: The total amount of wall time = 450.806751 + 0: The maximum resident set size (KB) = 1103520 -Test 069 rap_sfcdiff_intel PASS +Test 072 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_decomp_intel +Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3301,15 +3473,15 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.936899 - 0: The maximum resident set size (KB) = 1031172 + 0: The total amount of wall time = 474.349140 + 0: The maximum resident set size (KB) = 1027232 -Test 070 rap_sfcdiff_decomp_intel PASS +Test 073 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_restart_intel +Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3347,15 +3519,15 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 336.538798 - 0: The maximum resident set size (KB) = 1136652 + 0: The total amount of wall time = 337.943627 + 0: The maximum resident set size (KB) = 1137348 -Test 071 rap_sfcdiff_restart_intel PASS +Test 074 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_intel -Checking test 072 hrrr_control_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_intel +Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3401,15 +3573,15 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.518541 - 0: The maximum resident set size (KB) = 1037372 + 0: The total amount of wall time = 229.076962 + 0: The maximum resident set size (KB) = 1034636 -Test 072 hrrr_control_intel PASS +Test 075 hrrr_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_decomp_intel -Checking test 073 hrrr_control_decomp_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_decomp_intel +Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3455,15 +3627,15 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.592295 - 0: The maximum resident set size (KB) = 1022288 + 0: The total amount of wall time = 235.042568 + 0: The maximum resident set size (KB) = 1019416 -Test 073 hrrr_control_decomp_intel PASS +Test 076 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_2threads_intel +Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3509,29 +3681,29 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.356244 - 0: The maximum resident set size (KB) = 1105804 + 0: The total amount of wall time = 195.477501 + 0: The maximum resident set size (KB) = 1105748 -Test 074 hrrr_control_2threads_intel PASS +Test 077 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_restart_intel -Checking test 075 hrrr_control_restart_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_restart_intel +Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.874929 - 0: The maximum resident set size (KB) = 998724 + 0: The total amount of wall time = 119.809296 + 0: The maximum resident set size (KB) = 999420 -Test 075 hrrr_control_restart_intel PASS +Test 078 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1beta_intel -Checking test 076 rrfs_v1beta_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1beta_intel +Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3577,15 +3749,15 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.692762 - 0: The maximum resident set size (KB) = 1095508 + 0: The total amount of wall time = 443.240812 + 0: The maximum resident set size (KB) = 1094236 -Test 076 rrfs_v1beta_intel PASS +Test 079 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1nssl_intel -Checking test 077 rrfs_v1nssl_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1nssl_intel +Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3599,15 +3771,15 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.486514 - 0: The maximum resident set size (KB) = 1994968 + 0: The total amount of wall time = 537.717221 + 0: The maximum resident set size (KB) = 1994560 -Test 077 rrfs_v1nssl_intel PASS +Test 080 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1nssl_nohailnoccn_intel -Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1nssl_nohailnoccn_intel +Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3621,15 +3793,15 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.511275 - 0: The maximum resident set size (KB) = 2067680 + 0: The total amount of wall time = 522.488368 + 0: The maximum resident set size (KB) = 2068264 -Test 078 rrfs_v1nssl_nohailnoccn_intel PASS +Test 081 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmg_intel +Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3639,15 +3811,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 351.513316 - 0: The maximum resident set size (KB) = 745800 + 0: The total amount of wall time = 339.882205 + 0: The maximum resident set size (KB) = 744296 -Test 079 control_csawmg_intel PASS +Test 082 control_csawmg_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmgt_intel +Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3657,15 +3829,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.534995 - 0: The maximum resident set size (KB) = 752500 + 0: The total amount of wall time = 332.743009 + 0: The maximum resident set size (KB) = 746136 -Test 080 control_csawmgt_intel PASS +Test 083 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_ras_intel -Checking test 081 control_ras_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_ras_intel +Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3675,27 +3847,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.743280 - 0: The maximum resident set size (KB) = 737752 + 0: The total amount of wall time = 186.773274 + 0: The maximum resident set size (KB) = 731428 -Test 081 control_ras_intel PASS +Test 084 control_ras_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wam_intel -Checking test 082 control_wam_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wam_intel +Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 118.141813 - 0: The maximum resident set size (KB) = 656728 + 0: The total amount of wall time = 114.444346 + 0: The maximum resident set size (KB) = 654532 -Test 082 control_wam_intel PASS +Test 085 control_wam_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_faster_intel +Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3741,15 +3913,15 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.387190 - 0: The maximum resident set size (KB) = 1626136 + 0: The total amount of wall time = 146.595884 + 0: The maximum resident set size (KB) = 1624484 -Test 083 control_p8_faster_intel PASS +Test 086 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_control_faster_intel +Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3759,15 +3931,15 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.796542 - 0: The maximum resident set size (KB) = 853180 + 0: The total amount of wall time = 263.155084 + 0: The maximum resident set size (KB) = 849768 -Test 084 regional_control_faster_intel PASS +Test 087 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_CubedSphereGrid_debug_intel +Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3793,365 +3965,365 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 155.193834 - 0: The maximum resident set size (KB) = 813240 + 0: The total amount of wall time = 156.256833 + 0: The maximum resident set size (KB) = 815284 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 088 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.563773 - 0: The maximum resident set size (KB) = 813036 + 0: The total amount of wall time = 152.857256 + 0: The maximum resident set size (KB) = 814376 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_stochy_debug_intel +Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.802756 - 0: The maximum resident set size (KB) = 817356 + 0: The total amount of wall time = 176.160601 + 0: The maximum resident set size (KB) = 815552 -Test 087 control_stochy_debug_intel PASS +Test 090 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_lndp_debug_intel +Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.166029 - 0: The maximum resident set size (KB) = 817260 + 0: The total amount of wall time = 152.876142 + 0: The maximum resident set size (KB) = 817124 -Test 088 control_lndp_debug_intel PASS +Test 091 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmg_debug_intel +Checking test 092 control_csawmg_debug_intel 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.175400 - 0: The maximum resident set size (KB) = 866804 + 0: The total amount of wall time = 234.127181 + 0: The maximum resident set size (KB) = 862232 -Test 089 control_csawmg_debug_intel PASS +Test 092 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmgt_debug_intel +Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.373841 - 0: The maximum resident set size (KB) = 865712 + 0: The total amount of wall time = 234.253887 + 0: The maximum resident set size (KB) = 868304 -Test 090 control_csawmgt_debug_intel PASS +Test 093 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_ras_debug_intel +Checking test 094 control_ras_debug_intel 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.913225 - 0: The maximum resident set size (KB) = 829840 + 0: The total amount of wall time = 156.785686 + 0: The maximum resident set size (KB) = 831660 -Test 091 control_ras_debug_intel PASS +Test 094 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_diag_debug_intel +Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.470835 - 0: The maximum resident set size (KB) = 871404 + 0: The total amount of wall time = 162.264704 + 0: The maximum resident set size (KB) = 872788 -Test 092 control_diag_debug_intel PASS +Test 095 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_debug_p8_intel +Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.843232 - 0: The maximum resident set size (KB) = 1648588 + 0: The total amount of wall time = 163.161442 + 0: The maximum resident set size (KB) = 1647264 -Test 093 control_debug_p8_intel PASS +Test 096 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_debug_intel -Checking test 094 regional_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_debug_intel +Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1015.316758 - 0: The maximum resident set size (KB) = 840928 + 0: The total amount of wall time = 1065.077162 + 0: The maximum resident set size (KB) = 836216 -Test 094 regional_debug_intel PASS +Test 097 regional_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_debug_intel +Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.253865 - 0: The maximum resident set size (KB) = 1203932 + 0: The total amount of wall time = 283.073877 + 0: The maximum resident set size (KB) = 1199212 -Test 095 rap_control_debug_intel PASS +Test 098 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_debug_intel +Checking test 099 hrrr_control_debug_intel 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.221773 - 0: The maximum resident set size (KB) = 1199036 + 0: The total amount of wall time = 279.395187 + 0: The maximum resident set size (KB) = 1198388 -Test 096 hrrr_control_debug_intel PASS +Test 099 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_gf_debug_intel -Checking test 097 hrrr_gf_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_gf_debug_intel +Checking test 100 hrrr_gf_debug_intel 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.954394 - 0: The maximum resident set size (KB) = 1200100 + 0: The total amount of wall time = 284.663963 + 0: The maximum resident set size (KB) = 1215380 -Test 097 hrrr_gf_debug_intel PASS +Test 100 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_c3_debug_intel -Checking test 098 hrrr_c3_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_c3_debug_intel +Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.281324 - 0: The maximum resident set size (KB) = 1198072 + 0: The total amount of wall time = 284.275909 + 0: The maximum resident set size (KB) = 1203568 -Test 098 hrrr_c3_debug_intel PASS +Test 101 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_unified_drag_suite_debug_intel -Checking test 099 rap_unified_drag_suite_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_unified_drag_suite_debug_intel +Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.073560 - 0: The maximum resident set size (KB) = 1203100 + 0: The total amount of wall time = 278.991625 + 0: The maximum resident set size (KB) = 1210044 -Test 099 rap_unified_drag_suite_debug_intel PASS +Test 102 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_diag_debug_intel -Checking test 100 rap_diag_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_diag_debug_intel +Checking test 103 rap_diag_debug_intel 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.623565 - 0: The maximum resident set size (KB) = 1292588 + 0: The total amount of wall time = 294.640832 + 0: The maximum resident set size (KB) = 1284784 -Test 100 rap_diag_debug_intel PASS +Test 103 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_cires_ugwp_debug_intel -Checking test 101 rap_cires_ugwp_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_cires_ugwp_debug_intel +Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.169373 - 0: The maximum resident set size (KB) = 1202396 + 0: The total amount of wall time = 282.414849 + 0: The maximum resident set size (KB) = 1209824 -Test 101 rap_cires_ugwp_debug_intel PASS +Test 104 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_unified_ugwp_debug_intel -Checking test 102 rap_unified_ugwp_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_unified_ugwp_debug_intel +Checking test 105 rap_unified_ugwp_debug_intel 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.848392 - 0: The maximum resident set size (KB) = 1209412 + 0: The total amount of wall time = 290.628502 + 0: The maximum resident set size (KB) = 1197324 -Test 102 rap_unified_ugwp_debug_intel PASS +Test 105 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_lndp_debug_intel -Checking test 103 rap_lndp_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_lndp_debug_intel +Checking test 106 rap_lndp_debug_intel 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.601213 - 0: The maximum resident set size (KB) = 1201944 + 0: The total amount of wall time = 289.472989 + 0: The maximum resident set size (KB) = 1204044 -Test 103 rap_lndp_debug_intel PASS +Test 106 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_progcld_thompson_debug_intel -Checking test 104 rap_progcld_thompson_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_progcld_thompson_debug_intel +Checking test 107 rap_progcld_thompson_debug_intel 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.910159 - 0: The maximum resident set size (KB) = 1203068 + 0: The total amount of wall time = 291.535564 + 0: The maximum resident set size (KB) = 1202024 -Test 104 rap_progcld_thompson_debug_intel PASS +Test 107 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_noah_debug_intel -Checking test 105 rap_noah_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_noah_debug_intel +Checking test 108 rap_noah_debug_intel 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.531014 - 0: The maximum resident set size (KB) = 1202876 + 0: The total amount of wall time = 278.610158 + 0: The maximum resident set size (KB) = 1199428 -Test 105 rap_noah_debug_intel PASS +Test 108 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_sfcdiff_debug_intel -Checking test 106 rap_sfcdiff_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_debug_intel +Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.702054 - 0: The maximum resident set size (KB) = 1211116 + 0: The total amount of wall time = 285.722778 + 0: The maximum resident set size (KB) = 1161580 -Test 106 rap_sfcdiff_debug_intel PASS +Test 109 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 471.891647 - 0: The maximum resident set size (KB) = 1201680 + 0: The total amount of wall time = 467.437460 + 0: The maximum resident set size (KB) = 1193444 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rrfs_v1beta_debug_intel -Checking test 108 rrfs_v1beta_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1beta_debug_intel +Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.451865 - 0: The maximum resident set size (KB) = 1200684 + 0: The total amount of wall time = 280.075702 + 0: The maximum resident set size (KB) = 1195268 -Test 108 rrfs_v1beta_debug_intel PASS +Test 111 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_clm_lake_debug_intel -Checking test 109 rap_clm_lake_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_clm_lake_debug_intel +Checking test 112 rap_clm_lake_debug_intel 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.692709 - 0: The maximum resident set size (KB) = 1209208 + 0: The total amount of wall time = 332.524383 + 0: The maximum resident set size (KB) = 1207316 -Test 109 rap_clm_lake_debug_intel PASS +Test 112 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_flake_debug_intel -Checking test 110 rap_flake_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_flake_debug_intel +Checking test 113 rap_flake_debug_intel 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.392311 - 0: The maximum resident set size (KB) = 1196828 + 0: The total amount of wall time = 284.173088 + 0: The maximum resident set size (KB) = 1201660 -Test 110 rap_flake_debug_intel PASS +Test 113 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/gnv1_c96_no_nest_debug_intel -Checking test 111 gnv1_c96_no_nest_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/gnv1_c96_no_nest_debug_intel +Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4191,27 +4363,27 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 495.115111 - 0: The maximum resident set size (KB) = 1203440 + 0: The total amount of wall time = 497.239003 + 0: The maximum resident set size (KB) = 1204856 -Test 111 gnv1_c96_no_nest_debug_intel PASS +Test 114 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wam_debug_intel +Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.352549 - 0: The maximum resident set size (KB) = 529600 + 0: The total amount of wall time = 283.135608 + 0: The maximum resident set size (KB) = 473188 -Test 112 control_wam_debug_intel PASS +Test 115 control_wam_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4221,15 +4393,15 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 253.608185 - 0: The maximum resident set size (KB) = 1156884 + 0: The total amount of wall time = 253.241816 + 0: The maximum resident set size (KB) = 1158388 -Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_dyn32_phy32_intel +Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4275,15 +4447,15 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.644639 - 0: The maximum resident set size (KB) = 1046848 + 0: The total amount of wall time = 371.573762 + 0: The maximum resident set size (KB) = 1056460 -Test 114 rap_control_dyn32_phy32_intel PASS +Test 117 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_dyn32_phy32_intel +Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4329,15 +4501,15 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.236591 - 0: The maximum resident set size (KB) = 968924 + 0: The total amount of wall time = 193.636976 + 0: The maximum resident set size (KB) = 982472 -Test 115 hrrr_control_dyn32_phy32_intel PASS +Test 118 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_2threads_dyn32_phy32_intel -Checking test 116 rap_2threads_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_2threads_dyn32_phy32_intel +Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4383,15 +4555,15 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.682360 - 0: The maximum resident set size (KB) = 1091148 + 0: The total amount of wall time = 390.143672 + 0: The maximum resident set size (KB) = 1087648 -Test 116 rap_2threads_dyn32_phy32_intel PASS +Test 119 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_2threads_dyn32_phy32_intel -Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_2threads_dyn32_phy32_intel +Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4437,15 +4609,15 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.957295 - 0: The maximum resident set size (KB) = 958140 + 0: The total amount of wall time = 167.267943 + 0: The maximum resident set size (KB) = 966280 -Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_decomp_dyn32_phy32_intel -Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_decomp_dyn32_phy32_intel +Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4491,15 +4663,15 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.601097 - 0: The maximum resident set size (KB) = 936296 + 0: The total amount of wall time = 206.033748 + 0: The maximum resident set size (KB) = 921684 -Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_restart_dyn32_phy32_intel -Checking test 119 rap_restart_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_restart_dyn32_phy32_intel +Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4537,29 +4709,29 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.138280 - 0: The maximum resident set size (KB) = 1029996 + 0: The total amount of wall time = 278.098475 + 0: The maximum resident set size (KB) = 998936 -Test 119 rap_restart_dyn32_phy32_intel PASS +Test 122 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_restart_dyn32_phy32_intel -Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_restart_dyn32_phy32_intel +Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.153701 - 0: The maximum resident set size (KB) = 936448 + 0: The total amount of wall time = 102.269225 + 0: The maximum resident set size (KB) = 930488 -Test 120 hrrr_control_restart_dyn32_phy32_intel PASS +Test 123 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_control_intel -Checking test 121 conus13km_control_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_control_intel +Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4574,41 +4746,41 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 116.103507 - 0: The maximum resident set size (KB) = 1203792 + 0: The total amount of wall time = 117.522697 + 0: The maximum resident set size (KB) = 1201456 -Test 121 conus13km_control_intel PASS +Test 124 conus13km_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_2threads_intel -Checking test 122 conus13km_2threads_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_2threads_intel +Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 49.449560 - 0: The maximum resident set size (KB) = 1119732 + 0: The total amount of wall time = 49.968359 + 0: The maximum resident set size (KB) = 1121652 -Test 122 conus13km_2threads_intel PASS +Test 125 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_restart_mismatch_intel -Checking test 123 conus13km_restart_mismatch_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_restart_mismatch_intel +Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.169105 - 0: The maximum resident set size (KB) = 1108792 + 0: The total amount of wall time = 65.303057 + 0: The maximum resident set size (KB) = 1114932 -Test 123 conus13km_restart_mismatch_intel PASS +Test 126 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_dyn64_phy32_intel +Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4654,43 +4826,43 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.933551 - 0: The maximum resident set size (KB) = 990316 + 0: The total amount of wall time = 246.139598 + 0: The maximum resident set size (KB) = 988620 -Test 124 rap_control_dyn64_phy32_intel PASS +Test 127 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_debug_dyn32_phy32_intel +Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.284641 - 0: The maximum resident set size (KB) = 1081844 + 0: The total amount of wall time = 282.022479 + 0: The maximum resident set size (KB) = 1081144 -Test 125 rap_control_debug_dyn32_phy32_intel PASS +Test 128 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_debug_dyn32_phy32_intel +Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.973838 - 0: The maximum resident set size (KB) = 1080108 + 0: The total amount of wall time = 276.744385 + 0: The maximum resident set size (KB) = 1079380 -Test 126 hrrr_control_debug_dyn32_phy32_intel PASS +Test 129 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_intel -Checking test 127 conus13km_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_debug_intel +Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4703,15 +4875,15 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 850.192416 - 0: The maximum resident set size (KB) = 1225408 + 0: The total amount of wall time = 842.066041 + 0: The maximum resident set size (KB) = 1227864 -Test 127 conus13km_debug_intel PASS +Test 130 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_qr_intel -Checking test 128 conus13km_debug_qr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_debug_qr_intel +Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4724,82 +4896,82 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 837.995998 - 0: The maximum resident set size (KB) = 933124 + 0: The total amount of wall time = 863.441328 + 0: The maximum resident set size (KB) = 928352 -Test 128 conus13km_debug_qr_intel PASS +Test 131 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_debug_2threads_intel -Checking test 129 conus13km_debug_2threads_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_debug_2threads_intel +Checking test 132 conus13km_debug_2threads_intel 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.078178 - 0: The maximum resident set size (KB) = 1155204 + 0: The total amount of wall time = 497.676287 + 0: The maximum resident set size (KB) = 1161520 -Test 129 conus13km_debug_2threads_intel PASS +Test 132 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/conus13km_radar_tten_debug_intel -Checking test 130 conus13km_radar_tten_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_radar_tten_debug_intel +Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 930.494572 - 0: The maximum resident set size (KB) = 1291772 + 0: The total amount of wall time = 833.097687 + 0: The maximum resident set size (KB) = 1294472 -Test 130 conus13km_radar_tten_debug_intel PASS +Test 133 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/rap_control_dyn64_phy32_debug_intel -Checking test 131 rap_control_dyn64_phy32_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_dyn64_phy32_debug_intel +Checking test 134 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.137751 - 0: The maximum resident set size (KB) = 1128160 + 0: The total amount of wall time = 288.382728 + 0: The maximum resident set size (KB) = 1087692 -Test 131 rap_control_dyn64_phy32_debug_intel PASS +Test 134 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_intel -Checking test 132 hafs_regional_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_intel +Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 312.869667 - 0: The maximum resident set size (KB) = 739984 + 0: The total amount of wall time = 320.783232 + 0: The maximum resident set size (KB) = 740940 -Test 132 hafs_regional_atm_intel PASS +Test 135 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 334.731662 - 0: The maximum resident set size (KB) = 1118808 + 0: The total amount of wall time = 339.492355 + 0: The maximum resident set size (KB) = 1118940 -Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_ocn_intel -Checking test 134 hafs_regional_atm_ocn_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_ocn_intel +Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4807,15 +4979,15 @@ Checking test 134 hafs_regional_atm_ocn_intel 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 = 400.904579 - 0: The maximum resident set size (KB) = 827352 + 0: The total amount of wall time = 401.373523 + 0: The maximum resident set size (KB) = 832912 -Test 134 hafs_regional_atm_ocn_intel PASS +Test 137 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_wav_intel -Checking test 135 hafs_regional_atm_wav_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_wav_intel +Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4823,15 +4995,15 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 763.867549 - 0: The maximum resident set size (KB) = 860584 + 0: The total amount of wall time = 767.095232 + 0: The maximum resident set size (KB) = 866628 -Test 135 hafs_regional_atm_wav_intel PASS +Test 138 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_atm_ocn_wav_intel -Checking test 136 hafs_regional_atm_ocn_wav_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_ocn_wav_intel +Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4841,15 +5013,15 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 854.263696 - 0: The maximum resident set size (KB) = 880316 + 0: The total amount of wall time = 853.173180 + 0: The maximum resident set size (KB) = 880052 -Test 136 hafs_regional_atm_ocn_wav_intel PASS +Test 139 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_1nest_atm_intel -Checking test 137 hafs_regional_1nest_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_1nest_atm_intel +Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4870,15 +5042,15 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 353.724207 - 0: The maximum resident set size (KB) = 504352 + 0: The total amount of wall time = 352.855498 + 0: The maximum resident set size (KB) = 500836 -Test 137 hafs_regional_1nest_atm_intel PASS +Test 140 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_telescopic_2nests_atm_intel -Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_telescopic_2nests_atm_intel +Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4886,15 +5058,15 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 433.392755 - 0: The maximum resident set size (KB) = 524856 + 0: The total amount of wall time = 433.555596 + 0: The maximum resident set size (KB) = 520264 -Test 138 hafs_regional_telescopic_2nests_atm_intel PASS +Test 141 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_1nest_atm_intel -Checking test 139 hafs_global_1nest_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_global_1nest_atm_intel +Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4903,18 +5075,18 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -4940,15 +5112,15 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 172.103736 - 0: The maximum resident set size (KB) = 375308 + 0: The total amount of wall time = 174.732692 + 0: The maximum resident set size (KB) = 373364 -Test 139 hafs_global_1nest_atm_intel PASS +Test 142 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_global_multiple_4nests_atm_intel +Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4978,18 +5150,18 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -5012,7 +5184,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5029,15 +5201,15 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 457.358617 - 0: The maximum resident set size (KB) = 481964 + 0: The total amount of wall time = 456.353040 + 0: The maximum resident set size (KB) = 481540 -Test 140 hafs_global_multiple_4nests_atm_intel PASS +Test 143 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_specified_moving_1nest_atm_intel -Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_specified_moving_1nest_atm_intel +Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5045,15 +5217,15 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 237.273960 - 0: The maximum resident set size (KB) = 531680 + 0: The total amount of wall time = 232.092972 + 0: The maximum resident set size (KB) = 528864 -Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5070,19 +5242,19 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 222.459335 - 0: The maximum resident set size (KB) = 533628 + 0: The total amount of wall time = 219.296926 + 0: The maximum resident set size (KB) = 529180 -Test 142 hafs_regional_storm_following_1nest_atm_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5090,97 +5262,97 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 305.071769 - 0: The maximum resident set size (KB) = 537344 + 0: The total amount of wall time = 304.658936 + 0: The maximum resident set size (KB) = 588612 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_global_storm_following_1nest_atm_intel -Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_global_storm_following_1nest_atm_intel +Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 73.083308 - 0: The maximum resident set size (KB) = 402184 + 0: The total amount of wall time = 75.817324 + 0: The maximum resident set size (KB) = 405468 -Test 144 hafs_global_storm_following_1nest_atm_intel PASS +Test 147 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/gnv1_nested_intel -Checking test 145 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/gnv1_nested_intel +Checking test 148 gnv1_nested_intel results .... + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 257.256221 - 0: The maximum resident set size (KB) = 803116 - -Test 145 gnv1_nested_intel PASS + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK + + 0: The total amount of wall time = 259.178396 + 0: The maximum resident set size (KB) = 804588 + +Test 148 gnv1_nested_intel FAIL Tries: 2 baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 766.036949 - 0: The maximum resident set size (KB) = 573372 + 0: The total amount of wall time = 815.129999 + 0: The maximum resident set size (KB) = 570804 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5190,162 +5362,197 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 556.049326 - 0: The maximum resident set size (KB) = 674728 + 0: The total amount of wall time = 557.142689 + 0: The maximum resident set size (KB) = 674672 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 564.686497 + 0: The maximum resident set size (KB) = 746016 + +Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 401.329133 + 0: The maximum resident set size (KB) = 692208 + +Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_docn_intel -Checking test 150 hafs_regional_docn_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_docn_intel +Checking test 153 hafs_regional_docn_intel 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 = 360.745329 - 0: The maximum resident set size (KB) = 828192 + 0: The total amount of wall time = 363.407247 + 0: The maximum resident set size (KB) = 831772 -Test 150 hafs_regional_docn_intel PASS +Test 153 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_docn_oisst_intel -Checking test 151 hafs_regional_docn_oisst_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_docn_oisst_intel +Checking test 154 hafs_regional_docn_oisst_intel 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 = 364.519175 - 0: The maximum resident set size (KB) = 812092 + 0: The total amount of wall time = 369.879821 + 0: The maximum resident set size (KB) = 813308 -Test 151 hafs_regional_docn_oisst_intel PASS +Test 154 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/hafs_regional_datm_cdeps_intel -Checking test 152 hafs_regional_datm_cdeps_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_datm_cdeps_intel +Checking test 155 hafs_regional_datm_cdeps_intel 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 = 953.146730 - 0: The maximum resident set size (KB) = 1211268 + 0: The total amount of wall time = 953.176089 + 0: The maximum resident set size (KB) = 1209980 -Test 152 hafs_regional_datm_cdeps_intel PASS +Test 155 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_cfsr_intel -Checking test 153 datm_cdeps_control_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_control_cfsr_intel +Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.431118 - 0: The maximum resident set size (KB) = 1130160 + 0: The total amount of wall time = 149.403045 + 0: The maximum resident set size (KB) = 1125252 -Test 153 datm_cdeps_control_cfsr_intel PASS +Test 156 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_restart_cfsr_intel -Checking test 154 datm_cdeps_restart_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_restart_cfsr_intel +Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.944488 - 0: The maximum resident set size (KB) = 1091800 + 0: The total amount of wall time = 91.182377 + 0: The maximum resident set size (KB) = 1079364 -Test 154 datm_cdeps_restart_cfsr_intel PASS +Test 157 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_gefs_intel -Checking test 155 datm_cdeps_control_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_control_gefs_intel +Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.493663 - 0: The maximum resident set size (KB) = 1013004 + 0: The total amount of wall time = 143.002254 + 0: The maximum resident set size (KB) = 1011444 -Test 155 datm_cdeps_control_gefs_intel PASS +Test 158 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_iau_gefs_intel -Checking test 156 datm_cdeps_iau_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_iau_gefs_intel +Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.580964 - 0: The maximum resident set size (KB) = 1009740 + 0: The total amount of wall time = 144.165180 + 0: The maximum resident set size (KB) = 1019488 -Test 156 datm_cdeps_iau_gefs_intel PASS +Test 159 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_stochy_gefs_intel -Checking test 157 datm_cdeps_stochy_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_stochy_gefs_intel +Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.264839 - 0: The maximum resident set size (KB) = 1015556 + 0: The total amount of wall time = 143.149106 + 0: The maximum resident set size (KB) = 1014672 -Test 157 datm_cdeps_stochy_gefs_intel PASS +Test 160 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_ciceC_cfsr_intel -Checking test 158 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_ciceC_cfsr_intel +Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.843649 - 0: The maximum resident set size (KB) = 1130784 + 0: The total amount of wall time = 149.763271 + 0: The maximum resident set size (KB) = 1129716 -Test 158 datm_cdeps_ciceC_cfsr_intel PASS +Test 161 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_bulk_cfsr_intel -Checking test 159 datm_cdeps_bulk_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_bulk_cfsr_intel +Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.428024 - 0: The maximum resident set size (KB) = 1119756 + 0: The total amount of wall time = 150.998073 + 0: The maximum resident set size (KB) = 1121420 -Test 159 datm_cdeps_bulk_cfsr_intel PASS +Test 162 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_bulk_gefs_intel -Checking test 160 datm_cdeps_bulk_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_bulk_gefs_intel +Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.124314 - 0: The maximum resident set size (KB) = 1012792 + 0: The total amount of wall time = 141.609635 + 0: The maximum resident set size (KB) = 1018056 -Test 160 datm_cdeps_bulk_gefs_intel PASS +Test 163 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_mx025_cfsr_intel -Checking test 161 datm_cdeps_mx025_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_mx025_cfsr_intel +Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5353,15 +5560,15 @@ Checking test 161 datm_cdeps_mx025_cfsr_intel 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 = 342.329502 - 0: The maximum resident set size (KB) = 1062936 + 0: The total amount of wall time = 335.695977 + 0: The maximum resident set size (KB) = 1055956 -Test 161 datm_cdeps_mx025_cfsr_intel PASS +Test 164 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_mx025_gefs_intel -Checking test 162 datm_cdeps_mx025_gefs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_mx025_gefs_intel +Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5369,78 +5576,78 @@ Checking test 162 datm_cdeps_mx025_gefs_intel 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 = 333.524588 - 0: The maximum resident set size (KB) = 1040412 + 0: The total amount of wall time = 341.102543 + 0: The maximum resident set size (KB) = 1036060 -Test 162 datm_cdeps_mx025_gefs_intel PASS +Test 165 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_multiple_files_cfsr_intel -Checking test 163 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_multiple_files_cfsr_intel +Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.279752 - 0: The maximum resident set size (KB) = 1125476 + 0: The total amount of wall time = 146.308729 + 0: The maximum resident set size (KB) = 1133360 -Test 163 datm_cdeps_multiple_files_cfsr_intel PASS +Test 166 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_3072x1536_cfsr_intel -Checking test 164 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_3072x1536_cfsr_intel +Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.880101 - 0: The maximum resident set size (KB) = 2439448 + 0: The total amount of wall time = 207.718694 + 0: The maximum resident set size (KB) = 2409432 -Test 164 datm_cdeps_3072x1536_cfsr_intel PASS +Test 167 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_gfs_intel -Checking test 165 datm_cdeps_gfs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_gfs_intel +Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 213.231501 - 0: The maximum resident set size (KB) = 2454844 + 0: The total amount of wall time = 211.179966 + 0: The maximum resident set size (KB) = 2436264 -Test 165 datm_cdeps_gfs_intel PASS +Test 168 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_debug_cfsr_intel -Checking test 166 datm_cdeps_debug_cfsr_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_debug_cfsr_intel +Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 355.357397 - 0: The maximum resident set size (KB) = 1045600 + 0: The total amount of wall time = 352.182105 + 0: The maximum resident set size (KB) = 1061740 -Test 166 datm_cdeps_debug_cfsr_intel PASS +Test 169 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_control_cfsr_faster_intel -Checking test 167 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_control_cfsr_faster_intel +Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.589452 - 0: The maximum resident set size (KB) = 1139220 + 0: The total amount of wall time = 146.177197 + 0: The maximum resident set size (KB) = 1130064 -Test 167 datm_cdeps_control_cfsr_faster_intel PASS +Test 170 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_gswp3_intel -Checking test 168 datm_cdeps_lnd_gswp3_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_lnd_gswp3_intel +Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5448,15 +5655,15 @@ Checking test 168 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 38.604186 - 0: The maximum resident set size (KB) = 262260 + 0: The total amount of wall time = 37.904671 + 0: The maximum resident set size (KB) = 263516 -Test 168 datm_cdeps_lnd_gswp3_intel PASS +Test 171 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_era5_intel -Checking test 169 datm_cdeps_lnd_era5_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_lnd_era5_intel +Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5464,15 +5671,15 @@ Checking test 169 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 39.558001 - 0: The maximum resident set size (KB) = 326640 + 0: The total amount of wall time = 37.729440 + 0: The maximum resident set size (KB) = 323360 -Test 169 datm_cdeps_lnd_era5_intel PASS +Test 172 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/datm_cdeps_lnd_era5_rst_intel -Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_lnd_era5_rst_intel +Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5480,15 +5687,15 @@ Checking test 170 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 21.244567 - 0: The maximum resident set size (KB) = 321412 + 0: The total amount of wall time = 22.053200 + 0: The maximum resident set size (KB) = 320592 -Test 170 datm_cdeps_lnd_era5_rst_intel PASS +Test 173 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_atmlnd_sbs_intel -Checking test 171 control_p8_atmlnd_sbs_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_atmlnd_sbs_intel +Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5576,15 +5783,15 @@ Checking test 171 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 243.719275 - 0: The maximum resident set size (KB) = 1608580 + 0: The total amount of wall time = 241.782125 + 0: The maximum resident set size (KB) = 1615044 -Test 171 control_p8_atmlnd_sbs_intel PASS +Test 174 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_p8_atmlnd_intel -Checking test 172 control_p8_atmlnd_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_atmlnd_intel +Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5672,15 +5879,15 @@ Checking test 172 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 242.390820 - 0: The maximum resident set size (KB) = 1598724 + 0: The total amount of wall time = 240.768056 + 0: The maximum resident set size (KB) = 1599008 -Test 172 control_p8_atmlnd_intel PASS +Test 175 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_restart_p8_atmlnd_intel -Checking test 173 control_restart_p8_atmlnd_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_restart_p8_atmlnd_intel +Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5700,15 +5907,15 @@ Checking test 173 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 126.452301 - 0: The maximum resident set size (KB) = 900380 + 0: The total amount of wall time = 124.145740 + 0: The maximum resident set size (KB) = 893168 -Test 173 control_restart_p8_atmlnd_intel PASS +Test 176 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmwav_control_noaero_p8_intel -Checking test 174 atmwav_control_noaero_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmwav_control_noaero_p8_intel +Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5750,15 +5957,15 @@ Checking test 174 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.223030 - 0: The maximum resident set size (KB) = 1667612 + 0: The total amount of wall time = 92.947722 + 0: The maximum resident set size (KB) = 1668948 -Test 174 atmwav_control_noaero_p8_intel PASS +Test 177 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/control_atmwav_intel -Checking test 175 control_atmwav_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_atmwav_intel +Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5801,15 +6008,15 @@ Checking test 175 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.561386 - 0: The maximum resident set size (KB) = 675648 + 0: The total amount of wall time = 88.831730 + 0: The maximum resident set size (KB) = 677492 -Test 175 control_atmwav_intel PASS +Test 178 control_atmwav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_intel -Checking test 176 atmaero_control_p8_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmaero_control_p8_intel +Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5852,15 +6059,15 @@ Checking test 176 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.873739 - 0: The maximum resident set size (KB) = 3028680 + 0: The total amount of wall time = 223.176823 + 0: The maximum resident set size (KB) = 3023212 -Test 176 atmaero_control_p8_intel PASS +Test 179 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_rad_intel -Checking test 177 atmaero_control_p8_rad_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmaero_control_p8_rad_intel +Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5903,15 +6110,15 @@ Checking test 177 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.747097 - 0: The maximum resident set size (KB) = 3091436 + 0: The total amount of wall time = 274.749826 + 0: The maximum resident set size (KB) = 3086372 -Test 177 atmaero_control_p8_rad_intel PASS +Test 180 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/atmaero_control_p8_rad_micro_intel -Checking test 178 atmaero_control_p8_rad_micro_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmaero_control_p8_rad_micro_intel +Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5954,15 +6161,15 @@ Checking test 178 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.152060 - 0: The maximum resident set size (KB) = 3109360 + 0: The total amount of wall time = 292.802408 + 0: The maximum resident set size (KB) = 3046776 -Test 178 atmaero_control_p8_rad_micro_intel PASS +Test 181 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_362925/regional_atmaq_debug_intel -Checking test 179 regional_atmaq_debug_intel results .... +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_atmaq_debug_intel +Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5975,131 +6182,92 @@ Checking test 179 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1191.414389 - 0: The maximum resident set size (KB) = 4584744 + 0: The total amount of wall time = 1234.763566 + 0: The maximum resident set size (KB) = 4574720 -Test 179 regional_atmaq_debug_intel PASS +Test 182 regional_atmaq_debug_intel PASS FAILED TESTS: -hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 148 failed in run_test -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 149 failed in run_test +148 gnv1_nested_intel failed in check_result +gnv1_nested_intel 148 failed in run_test REGRESSION TEST FAILED -Thu Feb 1 23:30:49 CST 2024 -Elapsed time: 01h:29m:19s. Have a nice day! -Fri Feb 2 09:10:24 CST 2024 -Start Regression test - -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafs_mom6w_intel elapsed time 756 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_faster_intel elapsed time 775 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Tue Feb 6 09:55:54 CST 2024 +Elapsed time: 01h:25m:56s. Have a nice day! -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_368563/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 412.473254 - 0: The maximum resident set size (KB) = 750244 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_368563/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 569.198920 - 0: The maximum resident set size (KB) = 751644 - -Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Fri Feb 2 09:37:47 CST 2024 -Elapsed time: 00h:27m:25s. Have a nice day! -Mon Feb 5 10:54:15 CST 2024 +Tue Feb 6 13:42:02 CST 2024 Start Regression test -Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing UFSWM Hash: baa5df9bc1ecd7a6848cc63a4caba044b66a2573 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - c9c4c23b3c3b079dfeb62197a8b9f49c2e105ec7 CMEPS-interface/CMEPS (cmeps0.9.13-80-gc9c4c23b) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafs_mom6w_intel elapsed time 793 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_faster_intel elapsed time 854 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 782 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_267683/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_124937/gnv1_nested_intel +Checking test 001 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 574.416959 - 0: The maximum resident set size (KB) = 751768 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_267683/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 418.021390 - 0: The maximum resident set size (KB) = 726436 + 0: The total amount of wall time = 256.778223 + 0: The maximum resident set size (KB) = 804676 -Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Test 001 gnv1_nested_intel PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 5 11:23:29 CST 2024 -Elapsed time: 00h:29m:16s. Have a nice day! +Tue Feb 6 14:04:00 CST 2024 +Elapsed time: 00h:22m:00s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 4a15cb7f33..57899b0f9b 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,54 +1,54 @@ -Mon Feb 5 16:07:22 UTC 2024 +Wed Feb 7 15:53:44 UTC 2024 Start Regression test -Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) -+eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 881 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 646 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 751 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 275 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 987 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 1095 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 674 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 573 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 1000 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 404 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 960 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 582 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 860 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 772 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 2480 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1924 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1303 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 717 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1321 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 663 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 636 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 1665 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 984 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 660 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 1074 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 741 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 1456 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 581 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 715 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 266 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 907 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1091 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 1180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 2086 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1775 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 662 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 1010 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 683 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 959 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1328 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 276 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1477 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.531120 -The maximum resident set size (KB) = 2975832 +The total amount of wall time = 330.513243 +The maximum resident set size (KB) = 2974844 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 920.432397 -The maximum resident set size (KB) = 1585660 +The total amount of wall time = 918.624876 +The maximum resident set size (KB) = 1590416 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 973.324188 -The maximum resident set size (KB) = 1715464 +The total amount of wall time = 1008.782052 +The maximum resident set size (KB) = 1714808 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 455.931854 -The maximum resident set size (KB) = 848976 +The total amount of wall time = 472.710851 +The maximum resident set size (KB) = 846280 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1069.396702 -The maximum resident set size (KB) = 1569336 +The total amount of wall time = 1069.206931 +The maximum resident set size (KB) = 1569008 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1402.962355 -The maximum resident set size (KB) = 1606776 +The total amount of wall time = 1407.709316 +The maximum resident set size (KB) = 1604712 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -499,15 +499,87 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.435897 -The maximum resident set size (KB) = 3001572 +The total amount of wall time = 364.657167 +The maximum resident set size (KB) = 3001628 Test 007 cpld_control_p8_intel PASS +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 363.472293 +The maximum resident set size (KB) = 3000956 + +Test 008 cpld_control_p8.v2.sfc_intel PASS + + baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -559,15 +631,15 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.728306 -The maximum resident set size (KB) = 3061588 +The total amount of wall time = 215.964856 +The maximum resident set size (KB) = 3059360 -Test 008 cpld_restart_p8_intel PASS +Test 009 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -631,15 +703,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.622916 -The maximum resident set size (KB) = 3026808 +The total amount of wall time = 367.013057 +The maximum resident set size (KB) = 3028440 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -691,15 +763,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 220.554849 -The maximum resident set size (KB) = 3080264 +The total amount of wall time = 221.360615 +The maximum resident set size (KB) = 3080500 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_2threads_p8_intel +Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -751,15 +823,15 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 328.454132 -The maximum resident set size (KB) = 3316180 +The total amount of wall time = 329.300456 +The maximum resident set size (KB) = 3316088 -Test 011 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_decomp_p8_intel +Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -811,15 +883,15 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.313035 -The maximum resident set size (KB) = 3002192 +The total amount of wall time = 357.879871 +The maximum resident set size (KB) = 2997776 -Test 012 cpld_decomp_p8_intel PASS +Test 013 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_mpi_p8_intel +Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -871,15 +943,15 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 306.564132 -The maximum resident set size (KB) = 2926876 +The total amount of wall time = 302.249143 +The maximum resident set size (KB) = 2924608 -Test 013 cpld_mpi_p8_intel PASS +Test 014 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_ciceC_p8_intel +Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -943,15 +1015,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 371.473340 -The maximum resident set size (KB) = 3002648 +The total amount of wall time = 365.355738 +The maximum resident set size (KB) = 3000832 -Test 014 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_bmark_p8_intel -Checking test 015 cpld_bmark_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_bmark_p8_intel +Checking test 016 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -998,15 +1070,15 @@ Checking test 015 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 768.743799 -The maximum resident set size (KB) = 3949748 +The total amount of wall time = 755.333633 +The maximum resident set size (KB) = 3952344 -Test 015 cpld_bmark_p8_intel PASS +Test 016 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_bmark_p8_intel -Checking test 016 cpld_restart_bmark_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_bmark_p8_intel +Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1053,15 +1125,15 @@ Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 520.684958 -The maximum resident set size (KB) = 4254932 +The total amount of wall time = 521.140415 +The maximum resident set size (KB) = 4250524 -Test 016 cpld_restart_bmark_p8_intel PASS +Test 017 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_s2sa_p8_intel -Checking test 017 cpld_s2sa_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_s2sa_p8_intel +Checking test 018 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1111,15 +1183,15 @@ Checking test 017 cpld_s2sa_p8_intel 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 = 348.368067 -The maximum resident set size (KB) = 2967884 +The total amount of wall time = 342.927362 +The maximum resident set size (KB) = 2967324 -Test 017 cpld_s2sa_p8_intel PASS +Test 018 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_noaero_p8_intel -Checking test 018 cpld_control_noaero_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_noaero_p8_intel +Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1182,15 +1254,15 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 274.274643 -The maximum resident set size (KB) = 1586468 +The total amount of wall time = 273.397148 +The maximum resident set size (KB) = 1585756 -Test 018 cpld_control_noaero_p8_intel PASS +Test 019 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_nowave_noaero_p8_intel -Checking test 019 cpld_control_nowave_noaero_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_nowave_noaero_p8_intel +Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1251,15 +1323,15 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel 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 = 280.304986 -The maximum resident set size (KB) = 1638168 +The total amount of wall time = 276.827902 +The maximum resident set size (KB) = 1635196 -Test 019 cpld_control_nowave_noaero_p8_intel PASS +Test 020 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_noaero_p8_agrid_intel -Checking test 020 cpld_control_noaero_p8_agrid_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_noaero_p8_agrid_intel +Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1320,15 +1392,15 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel 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 = 274.602689 -The maximum resident set size (KB) = 1631304 +The total amount of wall time = 283.147633 +The maximum resident set size (KB) = 1638880 -Test 020 cpld_control_noaero_p8_agrid_intel PASS +Test 021 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_c48_intel -Checking test 021 cpld_control_c48_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_c48_intel +Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1377,15 +1449,15 @@ Checking test 021 cpld_control_c48_intel 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 = 406.995202 -The maximum resident set size (KB) = 2652852 +The total amount of wall time = 412.286901 +The maximum resident set size (KB) = 2655792 -Test 021 cpld_control_c48_intel PASS +Test 022 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_p8_faster_intel -Checking test 022 cpld_control_p8_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8_faster_intel +Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1449,15 +1521,15 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 356.723515 -The maximum resident set size (KB) = 3007744 +The total amount of wall time = 361.122304 +The maximum resident set size (KB) = 3002096 -Test 022 cpld_control_p8_faster_intel PASS +Test 023 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_control_pdlib_p8_intel -Checking test 023 cpld_control_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_pdlib_p8_intel +Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1520,15 +1592,15 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 945.265745 -The maximum resident set size (KB) = 1597352 +The total amount of wall time = 931.458020 +The maximum resident set size (KB) = 1598116 -Test 023 cpld_control_pdlib_p8_intel PASS +Test 024 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_restart_pdlib_p8_intel -Checking test 024 cpld_restart_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_pdlib_p8_intel +Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1579,15 +1651,15 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 457.259131 -The maximum resident set size (KB) = 899448 +The total amount of wall time = 468.094791 +The maximum resident set size (KB) = 899216 -Test 024 cpld_restart_pdlib_p8_intel PASS +Test 025 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_mpi_pdlib_p8_intel -Checking test 025 cpld_mpi_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_mpi_pdlib_p8_intel +Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1650,15 +1722,15 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1070.053788 -The maximum resident set size (KB) = 1573160 +The total amount of wall time = 1082.320252 +The maximum resident set size (KB) = 1569540 -Test 025 cpld_mpi_pdlib_p8_intel PASS +Test 026 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/cpld_debug_pdlib_p8_intel -Checking test 026 cpld_debug_pdlib_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_debug_pdlib_p8_intel +Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1709,15 +1781,15 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1483.886447 -The maximum resident set size (KB) = 1616296 +The total amount of wall time = 1495.742655 +The maximum resident set size (KB) = 1613380 -Test 026 cpld_debug_pdlib_p8_intel PASS +Test 027 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_flake_intel -Checking test 027 control_flake_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_flake_intel +Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1727,15 +1799,15 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.739480 -The maximum resident set size (KB) = 577216 +The total amount of wall time = 215.964981 +The maximum resident set size (KB) = 572284 -Test 027 control_flake_intel PASS +Test 028 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_intel -Checking test 028 control_CubedSphereGrid_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_CubedSphereGrid_intel +Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1761,15 +1833,15 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.493146 -The maximum resident set size (KB) = 523340 +The total amount of wall time = 131.416683 +The maximum resident set size (KB) = 524040 -Test 028 control_CubedSphereGrid_intel PASS +Test 029 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_parallel_intel -Checking test 029 control_CubedSphereGrid_parallel_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_CubedSphereGrid_parallel_intel +Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1783,15 +1855,15 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.971074 -The maximum resident set size (KB) = 527072 +The total amount of wall time = 138.999875 +The maximum resident set size (KB) = 526468 -Test 029 control_CubedSphereGrid_parallel_intel PASS +Test 030 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_latlon_intel -Checking test 030 control_latlon_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_latlon_intel +Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1801,15 +1873,15 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.160319 -The maximum resident set size (KB) = 525568 +The total amount of wall time = 133.424029 +The maximum resident set size (KB) = 521612 -Test 030 control_latlon_intel PASS +Test 031 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wrtGauss_netcdf_parallel_intel -Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wrtGauss_netcdf_parallel_intel +Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1819,15 +1891,61 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.306465 -The maximum resident set size (KB) = 523124 +The total amount of wall time = 135.899182 +The maximum resident set size (KB) = 523820 -Test 031 control_wrtGauss_netcdf_parallel_intel PASS +Test 032 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c48_intel -Checking test 032 control_c48_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c48_intel +Checking test 033 control_c48_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 329.421638 +The maximum resident set size (KB) = 717204 + +Test 033 control_c48_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c48.v2.sfc_intel +Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1865,15 +1983,15 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.559212 -The maximum resident set size (KB) = 715244 +The total amount of wall time = 335.344933 +The maximum resident set size (KB) = 715104 -Test 032 control_c48_intel PASS +Test 034 control_c48.v2.sfc_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c192_intel -Checking test 033 control_c192_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c192_intel +Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1883,15 +2001,15 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.142068 -The maximum resident set size (KB) = 638316 +The total amount of wall time = 537.255373 +The maximum resident set size (KB) = 638084 -Test 033 control_c192_intel PASS +Test 035 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c384_intel -Checking test 034 control_c384_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c384_intel +Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1901,15 +2019,15 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 580.192842 -The maximum resident set size (KB) = 956628 +The total amount of wall time = 604.466260 +The maximum resident set size (KB) = 949568 -Test 034 control_c384_intel PASS +Test 036 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_c384gdas_intel -Checking test 035 control_c384gdas_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c384gdas_intel +Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1951,15 +2069,15 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 513.190043 +The total amount of wall time = 561.651934 The maximum resident set size (KB) = 1093284 -Test 035 control_c384gdas_intel PASS +Test 037 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_intel -Checking test 036 control_stochy_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_stochy_intel +Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1969,29 +2087,29 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.059489 -The maximum resident set size (KB) = 532384 +The total amount of wall time = 88.767666 +The maximum resident set size (KB) = 535380 -Test 036 control_stochy_intel PASS +Test 038 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_restart_intel -Checking test 037 control_stochy_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_stochy_restart_intel +Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.076882 -The maximum resident set size (KB) = 330860 +The total amount of wall time = 49.453910 +The maximum resident set size (KB) = 331088 -Test 037 control_stochy_restart_intel PASS +Test 039 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_lndp_intel -Checking test 038 control_lndp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_lndp_intel +Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2001,15 +2119,15 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.033124 -The maximum resident set size (KB) = 532064 +The total amount of wall time = 85.160856 +The maximum resident set size (KB) = 533604 -Test 038 control_lndp_intel PASS +Test 040 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_iovr4_intel -Checking test 039 control_iovr4_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_iovr4_intel +Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2023,15 +2141,15 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.536992 -The maximum resident set size (KB) = 522024 +The total amount of wall time = 133.968061 +The maximum resident set size (KB) = 524756 -Test 039 control_iovr4_intel PASS +Test 041 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_iovr5_intel -Checking test 040 control_iovr5_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_iovr5_intel +Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2045,15 +2163,15 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.281043 -The maximum resident set size (KB) = 524716 +The total amount of wall time = 134.240492 +The maximum resident set size (KB) = 522308 -Test 040 control_iovr5_intel PASS +Test 042 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_intel -Checking test 041 control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_intel +Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,15 +2217,69 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.709643 -The maximum resident set size (KB) = 1506200 +The total amount of wall time = 167.380858 +The maximum resident set size (KB) = 1506936 -Test 041 control_p8_intel PASS +Test 043 control_p8_intel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8.v2.sfc_intel +Checking test 044 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 166.603604 +The maximum resident set size (KB) = 1504792 + +Test 044 control_p8.v2.sfc_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_ugwpv1_intel -Checking test 042 control_p8_ugwpv1_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_ugwpv1_intel +Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2153,15 +2325,15 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.959802 -The maximum resident set size (KB) = 1496736 +The total amount of wall time = 162.750044 +The maximum resident set size (KB) = 1501460 -Test 042 control_p8_ugwpv1_intel PASS +Test 045 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_p8_intel -Checking test 043 control_restart_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_restart_p8_intel +Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2199,15 +2371,15 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 89.329328 -The maximum resident set size (KB) = 695132 +The total amount of wall time = 91.971087 +The maximum resident set size (KB) = 692192 -Test 043 control_restart_p8_intel PASS +Test 046 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_noqr_p8_intel -Checking test 044 control_noqr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_noqr_p8_intel +Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2253,15 +2425,15 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 166.190133 -The maximum resident set size (KB) = 1489644 +The total amount of wall time = 168.902673 +The maximum resident set size (KB) = 1488876 -Test 044 control_noqr_p8_intel PASS +Test 047 control_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_noqr_p8_intel -Checking test 045 control_restart_noqr_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_restart_noqr_p8_intel +Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2299,15 +2471,15 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 87.827060 -The maximum resident set size (KB) = 697692 +The total amount of wall time = 95.664512 +The maximum resident set size (KB) = 696304 -Test 045 control_restart_noqr_p8_intel PASS +Test 048 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_decomp_p8_intel -Checking test 046 control_decomp_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_decomp_p8_intel +Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2349,15 +2521,15 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 168.582876 -The maximum resident set size (KB) = 1499680 +The total amount of wall time = 172.798270 +The maximum resident set size (KB) = 1502776 -Test 046 control_decomp_p8_intel PASS +Test 049 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_2threads_p8_intel -Checking test 047 control_2threads_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_2threads_p8_intel +Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2399,15 +2571,15 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.196509 -The maximum resident set size (KB) = 1592128 +The total amount of wall time = 149.847120 +The maximum resident set size (KB) = 1589448 -Test 047 control_2threads_p8_intel PASS +Test 050 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_lndp_intel -Checking test 048 control_p8_lndp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_lndp_intel +Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2425,15 +2597,15 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 294.485642 -The maximum resident set size (KB) = 1511100 +The total amount of wall time = 294.503327 +The maximum resident set size (KB) = 1500668 -Test 048 control_p8_lndp_intel PASS +Test 051 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_rrtmgp_intel -Checking test 049 control_p8_rrtmgp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_rrtmgp_intel +Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2479,15 +2651,15 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 220.833191 -The maximum resident set size (KB) = 1552416 +The total amount of wall time = 223.787528 +The maximum resident set size (KB) = 1567736 -Test 049 control_p8_rrtmgp_intel PASS +Test 052 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_mynn_intel -Checking test 050 control_p8_mynn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_mynn_intel +Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2533,15 +2705,15 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.471675 -The maximum resident set size (KB) = 1507612 +The total amount of wall time = 169.087446 +The maximum resident set size (KB) = 1510760 -Test 050 control_p8_mynn_intel PASS +Test 053 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/merra2_thompson_intel -Checking test 051 merra2_thompson_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/merra2_thompson_intel +Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2587,15 +2759,15 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 199.283476 -The maximum resident set size (KB) = 1510912 +The total amount of wall time = 199.983725 +The maximum resident set size (KB) = 1509708 -Test 051 merra2_thompson_intel PASS +Test 054 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_control_intel -Checking test 052 regional_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_control_intel +Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2605,29 +2777,29 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.582760 -The maximum resident set size (KB) = 606580 +The total amount of wall time = 293.472118 +The maximum resident set size (KB) = 607800 -Test 052 regional_control_intel PASS +Test 055 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_restart_intel -Checking test 053 regional_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_restart_intel +Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.745832 -The maximum resident set size (KB) = 778412 +The total amount of wall time = 159.440091 +The maximum resident set size (KB) = 778004 -Test 053 regional_restart_intel PASS +Test 056 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_decomp_intel -Checking test 054 regional_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_decomp_intel +Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2637,15 +2809,15 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 304.228303 -The maximum resident set size (KB) = 606120 +The total amount of wall time = 305.711290 +The maximum resident set size (KB) = 604648 -Test 054 regional_decomp_intel PASS +Test 057 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_2threads_intel -Checking test 055 regional_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_2threads_intel +Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2655,44 +2827,44 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 174.474582 -The maximum resident set size (KB) = 661500 +The total amount of wall time = 172.884082 +The maximum resident set size (KB) = 662004 -Test 055 regional_2threads_intel PASS +Test 058 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_noquilt_intel -Checking test 056 regional_noquilt_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_noquilt_intel +Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 289.664966 -The maximum resident set size (KB) = 1143328 +The total amount of wall time = 283.471570 +The maximum resident set size (KB) = 1143584 -Test 056 regional_noquilt_intel PASS +Test 059 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_netcdf_parallel_intel -Checking test 057 regional_netcdf_parallel_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_netcdf_parallel_intel +Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 288.424861 -The maximum resident set size (KB) = 606996 +The total amount of wall time = 288.751028 +The maximum resident set size (KB) = 607272 -Test 057 regional_netcdf_parallel_intel PASS +Test 060 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_2dwrtdecomp_intel -Checking test 058 regional_2dwrtdecomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_2dwrtdecomp_intel +Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2702,15 +2874,15 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.973982 -The maximum resident set size (KB) = 606532 +The total amount of wall time = 289.923947 +The maximum resident set size (KB) = 608404 -Test 058 regional_2dwrtdecomp_intel PASS +Test 061 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_wofs_intel -Checking test 059 regional_wofs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_wofs_intel +Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2720,15 +2892,15 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 379.950826 -The maximum resident set size (KB) = 1577728 +The total amount of wall time = 390.057341 +The maximum resident set size (KB) = 1578388 -Test 059 regional_wofs_intel PASS +Test 062 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_intel -Checking test 060 rap_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_intel +Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2774,15 +2946,15 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.201296 -The maximum resident set size (KB) = 919068 +The total amount of wall time = 415.346375 +The maximum resident set size (KB) = 915168 -Test 060 rap_control_intel PASS +Test 063 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_spp_sppt_shum_skeb_intel +Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2792,15 +2964,15 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.505090 -The maximum resident set size (KB) = 1092060 +The total amount of wall time = 243.872370 +The maximum resident set size (KB) = 1089128 -Test 061 regional_spp_sppt_shum_skeb_intel PASS +Test 064 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_decomp_intel -Checking test 062 rap_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_decomp_intel +Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2846,15 +3018,15 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.852131 -The maximum resident set size (KB) = 918852 +The total amount of wall time = 428.051462 +The maximum resident set size (KB) = 917212 -Test 062 rap_decomp_intel PASS +Test 065 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_2threads_intel -Checking test 063 rap_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_2threads_intel +Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2900,15 +3072,15 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 368.891787 -The maximum resident set size (KB) = 1012080 +The total amount of wall time = 373.960842 +The maximum resident set size (KB) = 1006472 -Test 063 rap_2threads_intel PASS +Test 066 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_restart_intel -Checking test 064 rap_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_restart_intel +Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2946,15 +3118,15 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.562685 -The maximum resident set size (KB) = 784396 +The total amount of wall time = 209.685683 +The maximum resident set size (KB) = 784528 -Test 064 rap_restart_intel PASS +Test 067 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_intel +Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3000,15 +3172,15 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.366350 -The maximum resident set size (KB) = 910340 +The total amount of wall time = 409.685192 +The maximum resident set size (KB) = 913196 -Test 065 rap_sfcdiff_intel PASS +Test 068 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_decomp_intel +Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3054,15 +3226,15 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.837315 -The maximum resident set size (KB) = 911400 +The total amount of wall time = 427.604618 +The maximum resident set size (KB) = 912596 -Test 066 rap_sfcdiff_decomp_intel PASS +Test 069 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_restart_intel +Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3100,15 +3272,15 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 303.213651 -The maximum resident set size (KB) = 783836 +The total amount of wall time = 304.102430 +The maximum resident set size (KB) = 787752 -Test 067 rap_sfcdiff_restart_intel PASS +Test 070 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_intel +Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3154,15 +3326,15 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.895673 -The maximum resident set size (KB) = 907236 +The total amount of wall time = 211.050979 +The maximum resident set size (KB) = 908852 -Test 068 hrrr_control_intel PASS +Test 071 hrrr_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_decomp_intel -Checking test 069 hrrr_control_decomp_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_decomp_intel +Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3208,15 +3380,15 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.040487 -The maximum resident set size (KB) = 906928 +The total amount of wall time = 214.497744 +The maximum resident set size (KB) = 907884 -Test 069 hrrr_control_decomp_intel PASS +Test 072 hrrr_control_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_2threads_intel -Checking test 070 hrrr_control_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_2threads_intel +Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3262,29 +3434,29 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.370333 -The maximum resident set size (KB) = 991688 +The total amount of wall time = 188.754311 +The maximum resident set size (KB) = 996164 -Test 070 hrrr_control_2threads_intel PASS +Test 073 hrrr_control_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_restart_intel -Checking test 071 hrrr_control_restart_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_restart_intel +Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.149755 -The maximum resident set size (KB) = 741740 +The total amount of wall time = 116.017535 +The maximum resident set size (KB) = 742048 -Test 071 hrrr_control_restart_intel PASS +Test 074 hrrr_control_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1beta_intel -Checking test 072 rrfs_v1beta_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1beta_intel +Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3330,15 +3502,15 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 395.981669 -The maximum resident set size (KB) = 911496 +The total amount of wall time = 402.628732 +The maximum resident set size (KB) = 908068 -Test 072 rrfs_v1beta_intel PASS +Test 075 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1nssl_intel -Checking test 073 rrfs_v1nssl_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1nssl_intel +Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3352,15 +3524,15 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 487.387565 -The maximum resident set size (KB) = 1876984 +The total amount of wall time = 490.056607 +The maximum resident set size (KB) = 1873752 -Test 073 rrfs_v1nssl_intel PASS +Test 076 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1nssl_nohailnoccn_intel -Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1nssl_nohailnoccn_intel +Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3374,15 +3546,15 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.299762 -The maximum resident set size (KB) = 1860748 +The total amount of wall time = 477.536426 +The maximum resident set size (KB) = 1860264 -Test 074 rrfs_v1nssl_nohailnoccn_intel PASS +Test 077 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmg_intel +Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3392,15 +3564,15 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.332951 -The maximum resident set size (KB) = 600148 +The total amount of wall time = 340.700332 +The maximum resident set size (KB) = 600372 -Test 075 control_csawmg_intel PASS +Test 078 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmgt_intel +Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3410,15 +3582,15 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 337.610265 -The maximum resident set size (KB) = 595504 +The total amount of wall time = 341.729656 +The maximum resident set size (KB) = 596900 -Test 076 control_csawmgt_intel PASS +Test 079 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_ras_intel -Checking test 077 control_ras_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_ras_intel +Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3428,27 +3600,27 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.522390 -The maximum resident set size (KB) = 562056 +The total amount of wall time = 184.901098 +The maximum resident set size (KB) = 562052 -Test 077 control_ras_intel PASS +Test 080 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wam_intel -Checking test 078 control_wam_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wam_intel +Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.125073 -The maximum resident set size (KB) = 272952 +The total amount of wall time = 123.407945 +The maximum resident set size (KB) = 272580 -Test 078 control_wam_intel PASS +Test 081 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_faster_intel -Checking test 079 control_p8_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_faster_intel +Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3494,15 +3666,15 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.897364 -The maximum resident set size (KB) = 1515500 +The total amount of wall time = 169.377258 +The maximum resident set size (KB) = 1501476 -Test 079 control_p8_faster_intel PASS +Test 082 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_control_faster_intel +Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3512,15 +3684,15 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 278.367088 -The maximum resident set size (KB) = 610868 +The total amount of wall time = 283.648520 +The maximum resident set size (KB) = 611940 -Test 080 regional_control_faster_intel PASS +Test 083 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_CubedSphereGrid_debug_intel -Checking test 081 control_CubedSphereGrid_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_CubedSphereGrid_debug_intel +Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3546,365 +3718,365 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.307595 -The maximum resident set size (KB) = 684092 +The total amount of wall time = 162.699391 +The maximum resident set size (KB) = 689012 -Test 081 control_CubedSphereGrid_debug_intel PASS +Test 084 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.225124 -The maximum resident set size (KB) = 688684 +The total amount of wall time = 162.707859 +The maximum resident set size (KB) = 690668 -Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_stochy_debug_intel -Checking test 083 control_stochy_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_stochy_debug_intel +Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.523581 -The maximum resident set size (KB) = 687552 +The total amount of wall time = 181.279197 +The maximum resident set size (KB) = 689716 -Test 083 control_stochy_debug_intel PASS +Test 086 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_lndp_debug_intel -Checking test 084 control_lndp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_lndp_debug_intel +Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.454490 -The maximum resident set size (KB) = 692740 +The total amount of wall time = 164.391404 +The maximum resident set size (KB) = 693492 -Test 084 control_lndp_debug_intel PASS +Test 087 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmg_debug_intel -Checking test 085 control_csawmg_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmg_debug_intel +Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.645733 -The maximum resident set size (KB) = 730760 +The total amount of wall time = 253.674496 +The maximum resident set size (KB) = 731928 -Test 085 control_csawmg_debug_intel PASS +Test 088 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_csawmgt_debug_intel -Checking test 086 control_csawmgt_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmgt_debug_intel +Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 247.237055 -The maximum resident set size (KB) = 731308 +The total amount of wall time = 392.407883 +The maximum resident set size (KB) = 729960 -Test 086 control_csawmgt_debug_intel PASS +Test 089 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_ras_debug_intel -Checking test 087 control_ras_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_ras_debug_intel +Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.745336 -The maximum resident set size (KB) = 702880 +The total amount of wall time = 165.302493 +The maximum resident set size (KB) = 705168 -Test 087 control_ras_debug_intel PASS +Test 090 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_diag_debug_intel -Checking test 088 control_diag_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_diag_debug_intel +Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.175829 -The maximum resident set size (KB) = 745480 +The total amount of wall time = 306.950019 +The maximum resident set size (KB) = 744616 -Test 088 control_diag_debug_intel PASS +Test 091 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_debug_p8_intel -Checking test 089 control_debug_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_debug_p8_intel +Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.738007 -The maximum resident set size (KB) = 1519212 +The total amount of wall time = 310.254619 +The maximum resident set size (KB) = 1520100 -Test 089 control_debug_p8_intel PASS +Test 092 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_debug_intel -Checking test 090 regional_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_debug_intel +Checking test 093 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1050.898220 -The maximum resident set size (KB) = 631156 +The total amount of wall time = 1064.558758 +The maximum resident set size (KB) = 629556 -Test 090 regional_debug_intel PASS +Test 093 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_debug_intel -Checking test 091 rap_control_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_debug_intel +Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.930615 -The maximum resident set size (KB) = 1073204 +The total amount of wall time = 302.011903 +The maximum resident set size (KB) = 1074088 -Test 091 rap_control_debug_intel PASS +Test 094 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_debug_intel -Checking test 092 hrrr_control_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_debug_intel +Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.395457 -The maximum resident set size (KB) = 1066920 +The total amount of wall time = 296.416471 +The maximum resident set size (KB) = 1066616 -Test 092 hrrr_control_debug_intel PASS +Test 095 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_gf_debug_intel -Checking test 093 hrrr_gf_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_gf_debug_intel +Checking test 096 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.771736 -The maximum resident set size (KB) = 1071292 +The total amount of wall time = 302.029740 +The maximum resident set size (KB) = 1078092 -Test 093 hrrr_gf_debug_intel PASS +Test 096 hrrr_gf_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_c3_debug_intel -Checking test 094 hrrr_c3_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_c3_debug_intel +Checking test 097 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.330531 -The maximum resident set size (KB) = 1070692 +The total amount of wall time = 302.489699 +The maximum resident set size (KB) = 1069828 -Test 094 hrrr_c3_debug_intel PASS +Test 097 hrrr_c3_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_unified_drag_suite_debug_intel -Checking test 095 rap_unified_drag_suite_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_unified_drag_suite_debug_intel +Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.274538 -The maximum resident set size (KB) = 1077480 +The total amount of wall time = 308.202265 +The maximum resident set size (KB) = 1077420 -Test 095 rap_unified_drag_suite_debug_intel PASS +Test 098 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_diag_debug_intel -Checking test 096 rap_diag_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_diag_debug_intel +Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.657542 -The maximum resident set size (KB) = 1160732 +The total amount of wall time = 317.323312 +The maximum resident set size (KB) = 1162900 -Test 096 rap_diag_debug_intel PASS +Test 099 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_cires_ugwp_debug_intel -Checking test 097 rap_cires_ugwp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_cires_ugwp_debug_intel +Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.079269 -The maximum resident set size (KB) = 1076312 +The total amount of wall time = 311.767029 +The maximum resident set size (KB) = 1076684 -Test 097 rap_cires_ugwp_debug_intel PASS +Test 100 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_unified_ugwp_debug_intel -Checking test 098 rap_unified_ugwp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_unified_ugwp_debug_intel +Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.845273 -The maximum resident set size (KB) = 1074432 +The total amount of wall time = 311.000754 +The maximum resident set size (KB) = 1075944 -Test 098 rap_unified_ugwp_debug_intel PASS +Test 101 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_lndp_debug_intel -Checking test 099 rap_lndp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_lndp_debug_intel +Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.152046 -The maximum resident set size (KB) = 1078748 +The total amount of wall time = 306.330130 +The maximum resident set size (KB) = 1079796 -Test 099 rap_lndp_debug_intel PASS +Test 102 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_progcld_thompson_debug_intel -Checking test 100 rap_progcld_thompson_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_progcld_thompson_debug_intel +Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.216265 -The maximum resident set size (KB) = 1073368 +The total amount of wall time = 301.995172 +The maximum resident set size (KB) = 1073152 -Test 100 rap_progcld_thompson_debug_intel PASS +Test 103 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_noah_debug_intel -Checking test 101 rap_noah_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_noah_debug_intel +Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.228902 -The maximum resident set size (KB) = 1073772 +The total amount of wall time = 300.778462 +The maximum resident set size (KB) = 1078908 -Test 101 rap_noah_debug_intel PASS +Test 104 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_sfcdiff_debug_intel -Checking test 102 rap_sfcdiff_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_debug_intel +Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.705212 -The maximum resident set size (KB) = 1072312 +The total amount of wall time = 305.284280 +The maximum resident set size (KB) = 1074928 -Test 102 rap_sfcdiff_debug_intel PASS +Test 105 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 488.357145 -The maximum resident set size (KB) = 1075784 +The total amount of wall time = 494.631992 +The maximum resident set size (KB) = 1071600 -Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rrfs_v1beta_debug_intel -Checking test 104 rrfs_v1beta_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1beta_debug_intel +Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.997889 -The maximum resident set size (KB) = 1068416 +The total amount of wall time = 297.798437 +The maximum resident set size (KB) = 1072476 -Test 104 rrfs_v1beta_debug_intel PASS +Test 107 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_clm_lake_debug_intel -Checking test 105 rap_clm_lake_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_clm_lake_debug_intel +Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 349.048860 -The maximum resident set size (KB) = 1074340 +The total amount of wall time = 353.292868 +The maximum resident set size (KB) = 1075312 -Test 105 rap_clm_lake_debug_intel PASS +Test 108 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_flake_debug_intel -Checking test 106 rap_flake_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_flake_debug_intel +Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.340182 -The maximum resident set size (KB) = 1077224 +The total amount of wall time = 302.531471 +The maximum resident set size (KB) = 1078596 -Test 106 rap_flake_debug_intel PASS +Test 109 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/gnv1_c96_no_nest_debug_intel -Checking test 107 gnv1_c96_no_nest_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/gnv1_c96_no_nest_debug_intel +Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3944,27 +4116,27 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 520.242913 -The maximum resident set size (KB) = 1080840 +The total amount of wall time = 529.239028 +The maximum resident set size (KB) = 1076592 -Test 107 gnv1_c96_no_nest_debug_intel PASS +Test 110 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_wam_debug_intel -Checking test 108 control_wam_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wam_debug_intel +Checking test 111 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.991489 -The maximum resident set size (KB) = 300996 +The total amount of wall time = 297.153766 +The maximum resident set size (KB) = 298180 -Test 108 control_wam_debug_intel PASS +Test 111 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3974,15 +4146,15 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 227.332747 -The maximum resident set size (KB) = 956524 +The total amount of wall time = 247.993229 +The maximum resident set size (KB) = 953804 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn32_phy32_intel -Checking test 110 rap_control_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_dyn32_phy32_intel +Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4028,15 +4200,15 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 334.676524 -The maximum resident set size (KB) = 791828 +The total amount of wall time = 349.607595 +The maximum resident set size (KB) = 789432 -Test 110 rap_control_dyn32_phy32_intel PASS +Test 113 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_dyn32_phy32_intel -Checking test 111 hrrr_control_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_dyn32_phy32_intel +Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4082,15 +4254,15 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.551392 -The maximum resident set size (KB) = 787428 +The total amount of wall time = 189.085784 +The maximum resident set size (KB) = 788244 -Test 111 hrrr_control_dyn32_phy32_intel PASS +Test 114 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_2threads_dyn32_phy32_intel -Checking test 112 rap_2threads_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_2threads_dyn32_phy32_intel +Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4136,15 +4308,15 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.771117 -The maximum resident set size (KB) = 852816 +The total amount of wall time = 322.752539 +The maximum resident set size (KB) = 852820 -Test 112 rap_2threads_dyn32_phy32_intel PASS +Test 115 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_2threads_dyn32_phy32_intel -Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_2threads_dyn32_phy32_intel +Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4190,15 +4362,15 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.676030 -The maximum resident set size (KB) = 838136 +The total amount of wall time = 170.937391 +The maximum resident set size (KB) = 839900 -Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_decomp_dyn32_phy32_intel -Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_decomp_dyn32_phy32_intel +Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4244,15 +4416,15 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.629075 -The maximum resident set size (KB) = 788732 +The total amount of wall time = 204.163299 +The maximum resident set size (KB) = 788500 -Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_restart_dyn32_phy32_intel -Checking test 115 rap_restart_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_restart_dyn32_phy32_intel +Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4290,29 +4462,29 @@ Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.912089 +The total amount of wall time = 251.751808 The maximum resident set size (KB) = 688512 -Test 115 rap_restart_dyn32_phy32_intel PASS +Test 118 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_restart_dyn32_phy32_intel -Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_restart_dyn32_phy32_intel +Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.752287 -The maximum resident set size (KB) = 666736 +The total amount of wall time = 95.749365 +The maximum resident set size (KB) = 670148 -Test 116 hrrr_control_restart_dyn32_phy32_intel PASS +Test 119 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_control_intel -Checking test 117 conus13km_control_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_control_intel +Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4327,41 +4499,41 @@ Checking test 117 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 115.843466 -The maximum resident set size (KB) = 1004228 +The total amount of wall time = 122.351734 +The maximum resident set size (KB) = 1006164 -Test 117 conus13km_control_intel PASS +Test 120 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_2threads_intel -Checking test 118 conus13km_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_2threads_intel +Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 56.767403 -The maximum resident set size (KB) = 1006864 +The total amount of wall time = 68.820318 +The maximum resident set size (KB) = 1006100 -Test 118 conus13km_2threads_intel PASS +Test 121 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_restart_mismatch_intel -Checking test 119 conus13km_restart_mismatch_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_restart_mismatch_intel +Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.721775 -The maximum resident set size (KB) = 881900 +The total amount of wall time = 77.317389 +The maximum resident set size (KB) = 881608 -Test 119 conus13km_restart_mismatch_intel PASS +Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn64_phy32_intel -Checking test 120 rap_control_dyn64_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_dyn64_phy32_intel +Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4407,43 +4579,43 @@ Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.930174 -The maximum resident set size (KB) = 810388 +The total amount of wall time = 230.368168 +The maximum resident set size (KB) = 812344 -Test 120 rap_control_dyn64_phy32_intel PASS +Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_debug_dyn32_phy32_intel -Checking test 121 rap_control_debug_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_debug_dyn32_phy32_intel +Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.269752 -The maximum resident set size (KB) = 955036 +The total amount of wall time = 295.559679 +The maximum resident set size (KB) = 945724 -Test 121 rap_control_debug_dyn32_phy32_intel PASS +Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hrrr_control_debug_dyn32_phy32_intel -Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_debug_dyn32_phy32_intel +Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 284.224786 -The maximum resident set size (KB) = 949900 +The total amount of wall time = 290.214124 +The maximum resident set size (KB) = 949904 -Test 122 hrrr_control_debug_dyn32_phy32_intel PASS +Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_intel -Checking test 123 conus13km_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_debug_intel +Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4456,15 +4628,15 @@ Checking test 123 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 881.116654 -The maximum resident set size (KB) = 1034364 +The total amount of wall time = 896.293792 +The maximum resident set size (KB) = 1039444 -Test 123 conus13km_debug_intel PASS +Test 126 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_qr_intel -Checking test 124 conus13km_debug_qr_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_debug_qr_intel +Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4477,82 +4649,82 @@ Checking test 124 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 888.680290 -The maximum resident set size (KB) = 708944 +The total amount of wall time = 908.427563 +The maximum resident set size (KB) = 710836 -Test 124 conus13km_debug_qr_intel PASS +Test 127 conus13km_debug_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_debug_2threads_intel -Checking test 125 conus13km_debug_2threads_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_debug_2threads_intel +Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 506.045127 -The maximum resident set size (KB) = 1036624 +The total amount of wall time = 511.351738 +The maximum resident set size (KB) = 1037524 -Test 125 conus13km_debug_2threads_intel PASS +Test 128 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/conus13km_radar_tten_debug_intel -Checking test 126 conus13km_radar_tten_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_radar_tten_debug_intel +Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 889.250940 -The maximum resident set size (KB) = 1098100 +The total amount of wall time = 892.895547 +The maximum resident set size (KB) = 1102480 -Test 126 conus13km_radar_tten_debug_intel PASS +Test 129 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/rap_control_dyn64_phy32_debug_intel -Checking test 127 rap_control_dyn64_phy32_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_dyn64_phy32_debug_intel +Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.226676 -The maximum resident set size (KB) = 980808 +The total amount of wall time = 299.650813 +The maximum resident set size (KB) = 981688 -Test 127 rap_control_dyn64_phy32_debug_intel PASS +Test 130 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_intel -Checking test 128 hafs_regional_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_intel +Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 339.341882 -The maximum resident set size (KB) = 617048 +The total amount of wall time = 394.481721 +The maximum resident set size (KB) = 619516 -Test 128 hafs_regional_atm_intel PASS +Test 131 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 312.115118 -The maximum resident set size (KB) = 970992 +The total amount of wall time = 411.301803 +The maximum resident set size (KB) = 967176 -Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_ocn_intel +Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4560,15 +4732,15 @@ Checking test 130 hafs_regional_atm_ocn_intel 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 = 418.317307 -The maximum resident set size (KB) = 664064 +The total amount of wall time = 453.285626 +The maximum resident set size (KB) = 661900 -Test 130 hafs_regional_atm_ocn_intel PASS +Test 133 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_wav_intel -Checking test 131 hafs_regional_atm_wav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_wav_intel +Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4576,15 +4748,15 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 736.308195 -The maximum resident set size (KB) = 691680 +The total amount of wall time = 803.447349 +The maximum resident set size (KB) = 686644 -Test 131 hafs_regional_atm_wav_intel PASS +Test 134 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_atm_ocn_wav_intel -Checking test 132 hafs_regional_atm_ocn_wav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_ocn_wav_intel +Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4594,15 +4766,15 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 928.951865 -The maximum resident set size (KB) = 704136 +The total amount of wall time = 971.357791 +The maximum resident set size (KB) = 705148 -Test 132 hafs_regional_atm_ocn_wav_intel PASS +Test 135 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_1nest_atm_intel -Checking test 133 hafs_regional_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_1nest_atm_intel +Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4623,15 +4795,15 @@ Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 318.175712 -The maximum resident set size (KB) = 390872 +The total amount of wall time = 330.889285 +The maximum resident set size (KB) = 389728 -Test 133 hafs_regional_1nest_atm_intel PASS +Test 136 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_telescopic_2nests_atm_intel -Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_telescopic_2nests_atm_intel +Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4639,15 +4811,15 @@ Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 404.594728 -The maximum resident set size (KB) = 405600 +The total amount of wall time = 419.473789 +The maximum resident set size (KB) = 410768 -Test 134 hafs_regional_telescopic_2nests_atm_intel PASS +Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_1nest_atm_intel -Checking test 135 hafs_global_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_global_1nest_atm_intel +Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4693,15 +4865,15 @@ Checking test 135 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 170.923854 -The maximum resident set size (KB) = 285956 +The total amount of wall time = 222.731207 +The maximum resident set size (KB) = 288720 -Test 135 hafs_global_1nest_atm_intel PASS +Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_multiple_4nests_atm_intel -Checking test 136 hafs_global_multiple_4nests_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_global_multiple_4nests_atm_intel +Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4782,15 +4954,15 @@ Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 486.827132 -The maximum resident set size (KB) = 372212 +The total amount of wall time = 527.320235 +The maximum resident set size (KB) = 372472 -Test 136 hafs_global_multiple_4nests_atm_intel PASS +Test 139 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_specified_moving_1nest_atm_intel -Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_specified_moving_1nest_atm_intel +Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4798,15 +4970,15 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 225.810505 -The maximum resident set size (KB) = 415816 +The total amount of wall time = 269.303929 +The maximum resident set size (KB) = 420256 -Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4827,15 +4999,15 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 210.271454 -The maximum resident set size (KB) = 412356 +The total amount of wall time = 256.250607 +The maximum resident set size (KB) = 419680 -Test 138 hafs_regional_storm_following_1nest_atm_intel PASS +Test 141 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4843,29 +5015,29 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 263.960036 -The maximum resident set size (KB) = 497732 +The total amount of wall time = 308.416034 +The maximum resident set size (KB) = 486664 -Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_global_storm_following_1nest_atm_intel -Checking test 140 hafs_global_storm_following_1nest_atm_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_global_storm_following_1nest_atm_intel +Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 92.326270 -The maximum resident set size (KB) = 311016 +The total amount of wall time = 120.711061 +The maximum resident set size (KB) = 314292 -Test 140 hafs_global_storm_following_1nest_atm_intel PASS +Test 143 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/gnv1_nested_intel -Checking test 141 gnv1_nested_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/gnv1_nested_intel +Checking test 144 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......NOT OK Comparing sfcf006.nc ............ALT CHECK......NOT OK Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK @@ -4911,29 +5083,29 @@ Checking test 141 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK -The total amount of wall time = 240.946793 -The maximum resident set size (KB) = 673928 +The total amount of wall time = 261.270732 +The maximum resident set size (KB) = 676472 -Test 141 gnv1_nested_intel FAIL Tries: 2 +Test 144 gnv1_nested_intel FAIL Tries: 2 baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 820.727904 -The maximum resident set size (KB) = 500736 +The total amount of wall time = 823.355236 +The maximum resident set size (KB) = 501744 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4943,15 +5115,15 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 523.263300 -The maximum resident set size (KB) = 535496 +The total amount of wall time = 568.327644 +The maximum resident set size (KB) = 533552 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4961,75 +5133,75 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 523.704740 -The maximum resident set size (KB) = 709988 +The total amount of wall time = 538.223518 +The maximum resident set size (KB) = 709040 -Test 144 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS +Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc ............ALT CHECK......NOT OK + Comparing sfcf003.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f003.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f003.nc ............ALT CHECK......NOT OK + Comparing ocn_2020_08_25_15.nc ............ALT CHECK......NOT OK + Comparing 20200825.150000.out_grd.ww3 .........NOT OK + Comparing 20200825.150000.out_pnt.ww3 .........NOT OK -The total amount of wall time = 386.995791 -The maximum resident set size (KB) = 729736 +The total amount of wall time = 392.510766 +The maximum resident set size (KB) = 709580 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_docn_intel -Checking test 146 hafs_regional_docn_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_docn_intel +Checking test 149 hafs_regional_docn_intel 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 -The total amount of wall time = 388.195384 -The maximum resident set size (KB) = 652408 +The total amount of wall time = 519.842307 +The maximum resident set size (KB) = 658060 -Test 146 hafs_regional_docn_intel PASS +Test 149 hafs_regional_docn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_docn_oisst_intel -Checking test 147 hafs_regional_docn_oisst_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_docn_oisst_intel +Checking test 150 hafs_regional_docn_oisst_intel 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 -The total amount of wall time = 389.395813 -The maximum resident set size (KB) = 640260 +The total amount of wall time = 498.404810 +The maximum resident set size (KB) = 639940 -Test 147 hafs_regional_docn_oisst_intel PASS +Test 150 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/hafs_regional_datm_cdeps_intel -Checking test 148 hafs_regional_datm_cdeps_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_datm_cdeps_intel +Checking test 151 hafs_regional_datm_cdeps_intel 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 = 946.433480 -The maximum resident set size (KB) = 881108 +The total amount of wall time = 958.258521 +The maximum resident set size (KB) = 881448 -Test 148 hafs_regional_datm_cdeps_intel PASS +Test 151 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_atmlnd_sbs_intel -Checking test 149 control_p8_atmlnd_sbs_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_atmlnd_sbs_intel +Checking test 152 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5117,15 +5289,15 @@ Checking test 149 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 275.283497 -The maximum resident set size (KB) = 1547052 +The total amount of wall time = 285.081771 +The maximum resident set size (KB) = 1541728 -Test 149 control_p8_atmlnd_sbs_intel PASS +Test 152 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_p8_atmlnd_intel -Checking test 150 control_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_atmlnd_intel +Checking test 153 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5213,15 +5385,15 @@ Checking test 150 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 275.056041 -The maximum resident set size (KB) = 1551752 +The total amount of wall time = 283.940278 +The maximum resident set size (KB) = 1543680 -Test 150 control_p8_atmlnd_intel PASS +Test 153 control_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/control_restart_p8_atmlnd_intel -Checking test 151 control_restart_p8_atmlnd_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_restart_p8_atmlnd_intel +Checking test 154 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5241,15 +5413,15 @@ Checking test 151 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 151.401036 -The maximum resident set size (KB) = 744728 +The total amount of wall time = 152.222866 +The maximum resident set size (KB) = 739032 -Test 151 control_restart_p8_atmlnd_intel PASS +Test 154 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_intel -Checking test 152 atmaero_control_p8_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/atmaero_control_p8_intel +Checking test 155 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5292,15 +5464,15 @@ Checking test 152 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 237.752937 -The maximum resident set size (KB) = 2849540 +The total amount of wall time = 252.266101 +The maximum resident set size (KB) = 2854724 -Test 152 atmaero_control_p8_intel PASS +Test 155 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_rad_intel -Checking test 153 atmaero_control_p8_rad_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/atmaero_control_p8_rad_intel +Checking test 156 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5343,15 +5515,15 @@ Checking test 153 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 276.436664 -The maximum resident set size (KB) = 2911808 +The total amount of wall time = 291.411057 +The maximum resident set size (KB) = 2910232 -Test 153 atmaero_control_p8_rad_intel PASS +Test 156 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/atmaero_control_p8_rad_micro_intel -Checking test 154 atmaero_control_p8_rad_micro_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/atmaero_control_p8_rad_micro_intel +Checking test 157 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5394,15 +5566,15 @@ Checking test 154 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 291.421303 -The maximum resident set size (KB) = 2927188 +The total amount of wall time = 303.860176 +The maximum resident set size (KB) = 2925568 -Test 154 atmaero_control_p8_rad_micro_intel PASS +Test 157 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_243361/regional_atmaq_debug_intel -Checking test 155 regional_atmaq_debug_intel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_atmaq_debug_intel +Checking test 158 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5415,91 +5587,114 @@ Checking test 155 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1318.771189 -The maximum resident set size (KB) = 4442336 +The total amount of wall time = 1338.763818 +The maximum resident set size (KB) = 4440144 -Test 155 regional_atmaq_debug_intel PASS +Test 158 regional_atmaq_debug_intel PASS FAILED TESTS: -141 gnv1_nested_intel failed in check_result -gnv1_nested_intel 141 failed in run_test +144 gnv1_nested_intel failed in check_result +gnv1_nested_intel 144 failed in run_test +148 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 148 failed in run_test REGRESSION TEST FAILED -Mon Feb 5 17:23:32 UTC 2024 -Elapsed time: 01h:16m:11s. Have a nice day! -Mon Feb 5 17:33:53 UTC 2024 +Wed Feb 7 17:26:02 UTC 2024 +Elapsed time: 01h:32m:19s. Have a nice day! +Wed Feb 7 18:57:08 UTC 2024 Start Regression test -Testing UFSWM Hash: 005cd33ccd96ba39fcac4587eda738aa7553809c +Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) -+eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 597 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 584 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_178233/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182304/gnv1_nested_intel Checking test 001 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK + +The total amount of wall time = 242.176367 +The maximum resident set size (KB) = 678668 + +Test 001 gnv1_nested_intel FAIL Tries: 2 + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182304/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 240.528010 -The maximum resident set size (KB) = 677600 +The total amount of wall time = 385.362715 +The maximum resident set size (KB) = 712144 -Test 001 gnv1_nested_intel PASS +Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +FAILED TESTS: +001 gnv1_nested_intel failed in check_result +gnv1_nested_intel 001 failed in run_test -REGRESSION TEST WAS SUCCESSFUL -Mon Feb 5 17:50:03 UTC 2024 -Elapsed time: 00h:16m:11s. Have a nice day! +REGRESSION TEST FAILED +Wed Feb 7 19:21:03 UTC 2024 +Elapsed time: 00h:23m:56s. Have a nice day! diff --git a/tests/rt.conf b/tests/rt.conf index 332ffe1b73..19c1f90733 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -36,6 +36,7 @@ RUN | cpld_debug_gfsv17 | - noaacloud COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | +RUN | cpld_control_p8.v2.sfc | - noaacloud | baseline | RUN | cpld_restart_p8 | - noaacloud | | cpld_control_p8 RUN | cpld_control_qr_p8 | - noaacloud | | RUN | cpld_restart_qr_p8 | - noaacloud | | cpld_control_qr_p8 @@ -90,6 +91,7 @@ RUN | control_CubedSphereGrid_parallel | - noaacloud RUN | control_latlon | | baseline | RUN | control_wrtGauss_netcdf_parallel | | baseline | RUN | control_c48 | | baseline | +RUN | control_c48.v2.sfc | | baseline | RUN | control_c192 | - noaacloud | baseline | RUN | control_c384 | | baseline | RUN | control_c384gdas | - noaacloud | baseline | @@ -99,6 +101,7 @@ RUN | control_lndp | RUN | control_iovr4 | | baseline | RUN | control_iovr5 | | baseline | RUN | control_p8 | - noaacloud | baseline | +RUN | control_p8.v2.sfc | - noaacloud | baseline | RUN | control_p8_ugwpv1 | - noaacloud | baseline | RUN | control_restart_p8 | - noaacloud | | control_p8 RUN | control_noqr_p8 | - noaacloud | | @@ -240,7 +243,7 @@ RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | # This probably works on S4, but I cannot know for certain. I don't have access to the machine. -RUN | gnv1_nested | - s4 noaacloud | baseline | +RUN | gnv1_nested | - wcoss2 s4 noaacloud | baseline | COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | diff --git a/tests/tests/control_c48.v2.sfc b/tests/tests/control_c48.v2.sfc new file mode 100644 index 0000000000..9e435d8aaa --- /dev/null +++ b/tests/tests/control_c48.v2.sfc @@ -0,0 +1,84 @@ +############################################################################### +# +# global control v2 surface file test: GFSv16 atmosphere only at C48L127 +# +############################################################################### + +export TEST_DESCR="Compare global control C48L127 v2.sfc results with previous trunk version" + +export CNTL_DIR=control_c48.v2.sfc + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNALBC="'global_snowfree_albedo.bosu.t62.192.94.rg.grb'," +export FNVETC="'global_vegtype.igbp.t62.192.94.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t62.192.94.rg.grb'," +export FNABSC="'global_mxsnoalb.uariz.t62.192.94.rg.grb'," +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'," +export FNMSKH_control="'global_slmask.t62.192.94.grb'," + + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v16 +export INPUT_NML=control.nml.IN +export V2_SFC_FILE=true diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc new file mode 100644 index 0000000000..3f0c360b53 --- /dev/null +++ b/tests/tests/control_p8.v2.sfc @@ -0,0 +1,181 @@ +############################################################################### +# +# Global control v2 surface file test: GFSv16 atmosphere only at C96L127, +# P8 configuration. +# +############################################################################### + +export TEST_DESCR="Compare global control v2.sfc results with previous trunk version" + +export CNTL_DIR=control_p8.v2.sfc + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.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='gaussian_grid' +export WRITE_DOPOST=.true. +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 +export IOPT_DIAG=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="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSOCC="'C96.soil_color.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'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_OUTPUT_DIR=./MOM6_OUTPUT +export MOM6_RESTART_DIR=./RESTART/ +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_cpld.IN +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN +export V2_SFC_FILE=true + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +export SATMEDMF=.true. + +if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc new file mode 100644 index 0000000000..1612b044ff --- /dev/null +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -0,0 +1,88 @@ +# +# cpld_control P8 v2 surface file test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 with v2 sfc file" + +export CNTL_DIR=cpld_control_p8.v2.sfc + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN +export V2_SFC_FILE=true + +if [[ $MACHINE_ID = derecho ]]; then + TPN=96 +fi From b4c59bb902076c6cc1e5167305182d2fab0cb253 Mon Sep 17 00:00:00 2001 From: Jili Dong Date: Thu, 8 Feb 2024 16:54:31 -0500 Subject: [PATCH 03/10] Post update (#2113) UPP will be brought to the commit to fix the missing reflectivity bug for NSSL MP cases. --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 1548 +++++------ tests/logs/RegressionTests_derecho.log | 2411 +++++++++-------- tests/logs/RegressionTests_hera.log | 2104 +++++++------- tests/logs/RegressionTests_hercules.log | 2062 +++++++------- tests/logs/RegressionTests_jet.log | 1614 +++++------ tests/logs/RegressionTests_orion.log | 1605 ++++++----- tests/logs/RegressionTests_wcoss2.log | 1558 +++++------ 12 files changed, 6512 insertions(+), 6490 deletions(-) diff --git a/FV3 b/FV3 index b8f7b0f33d..9dec0faa6e 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit b8f7b0f33df6dc712f241dcd6818c9ec27134e26 +Subproject commit 9dec0faa6eafefc4b01f3cd117231619fb0670f4 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index cceb7d2ba7..68d139e13c 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240126 +export BL_DATE=20240208 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index bd09967f84..50c3840ea4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Feb 7 15:21:44 UTC 2024 +Thu Feb 8 14:00:04 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.101386 - 0: The maximum resident set size (KB) = 1303960 + 0: The total amount of wall time = 277.080729 + 0: The maximum resident set size (KB) = 1311728 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 909.113285 - 0: The maximum resident set size (KB) = 1288940 + 0: The total amount of wall time = 903.668548 + 0: The maximum resident set size (KB) = 1287728 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.389257 - 0: The maximum resident set size (KB) = 1282176 + 0: The total amount of wall time = 249.952287 + 0: The maximum resident set size (KB) = 1281684 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.494145 - 0: The maximum resident set size (KB) = 1285116 + 0: The total amount of wall time = 251.057241 + 0: The maximum resident set size (KB) = 1283180 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.300567 - 0: The maximum resident set size (KB) = 1282776 + 0: The total amount of wall time = 247.649190 + 0: The maximum resident set size (KB) = 1283604 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.844583 - 0: The maximum resident set size (KB) = 1279596 + 0: The total amount of wall time = 247.317862 + 0: The maximum resident set size (KB) = 1286884 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_230699/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.282302 - 0: The maximum resident set size (KB) = 1282532 + 0: The total amount of wall time = 249.513148 + 0: The maximum resident set size (KB) = 1282944 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Feb 7 17:37:17 UTC 2024 -Elapsed time: 02h:15m:34s. Have a nice day! +Thu Feb 8 15:16:58 UTC 2024 +Elapsed time: 01h:16m:54s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index c37f181b6e..440c27b5ec 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Feb 7 18:45:23 UTC 2024 +Thu Feb 8 16:09:31 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_101366/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1238.891075 - 0: The maximum resident set size (KB) = 1412672 + 0: The total amount of wall time = 1240.052369 + 0: The maximum resident set size (KB) = 1416160 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_101366/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu 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 = 390.905866 - 0: The maximum resident set size (KB) = 1402368 + 0: The total amount of wall time = 377.256407 + 0: The maximum resident set size (KB) = 1404068 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_101366/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 380.815768 - 0: The maximum resident set size (KB) = 1404516 + 0: The total amount of wall time = 379.461864 + 0: The maximum resident set size (KB) = 1402872 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Feb 7 21:01:45 UTC 2024 -Elapsed time: 02h:16m:23s. Have a nice day! +Thu Feb 8 19:05:11 UTC 2024 +Elapsed time: 02h:55m:44s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 5526a04f5c..1cd548a1e2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Feb 7 17:48:14 UTC 2024 +Thu Feb 8 15:19:18 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18410/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 514.965169 - 0: The maximum resident set size (KB) = 589908 + 0: The total amount of wall time = 517.095038 + 0: The maximum resident set size (KB) = 600236 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18410/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 513.938502 - 0: The maximum resident set size (KB) = 589468 + 0: The total amount of wall time = 520.741238 + 0: The maximum resident set size (KB) = 598704 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18410/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 515.645515 - 0: The maximum resident set size (KB) = 592364 + 0: The total amount of wall time = 520.308317 + 0: The maximum resident set size (KB) = 592456 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Feb 7 18:44:38 UTC 2024 -Elapsed time: 00h:56m:24s. Have a nice day! +Thu Feb 8 15:59:45 UTC 2024 +Elapsed time: 00h:40m:27s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 82a83a8a2e..4a1a537e4f 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,60 +1,60 @@ -Wed Feb 7 16:36:54 UTC 2024 +Thu Feb 8 12:11:33 UTC 2024 Start Regression test -Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc +Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 521 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 571 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 526 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 522 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 512 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 539 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 523 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 572 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 205 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 563 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 624 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 555 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 567 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 620 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 936 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 887 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 620 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 585 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 989 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 511 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 182 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 556 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 516 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 550 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 536 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 531 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 561 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 201 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 572 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 562 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 617 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 550 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 550 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 983 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 899 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 614 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 619 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 924 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.686386 -The maximum resident set size (KB) = 2977080 +The total amount of wall time = 318.611772 +The maximum resident set size (KB) = 2976096 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 901.686286 -The maximum resident set size (KB) = 1596316 +The total amount of wall time = 902.811006 +The maximum resident set size (KB) = 1593072 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 967.884252 -The maximum resident set size (KB) = 1721860 +The total amount of wall time = 970.179773 +The maximum resident set size (KB) = 1719444 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 448.765437 -The maximum resident set size (KB) = 846996 +The total amount of wall time = 450.513848 +The maximum resident set size (KB) = 849240 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1053.915349 -The maximum resident set size (KB) = 1579004 +The total amount of wall time = 1057.532561 +The maximum resident set size (KB) = 1580320 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_debug_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1411.799276 -The maximum resident set size (KB) = 1601784 +The total amount of wall time = 1403.718457 +The maximum resident set size (KB) = 1607576 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.512521 -The maximum resident set size (KB) = 3003684 +The total amount of wall time = 363.818493 +The maximum resident set size (KB) = 3005040 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 361.538293 -The maximum resident set size (KB) = 3001180 +The total amount of wall time = 362.272785 +The maximum resident set size (KB) = 3002316 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.363471 -The maximum resident set size (KB) = 3060028 +The total amount of wall time = 213.283078 +The maximum resident set size (KB) = 3058252 Test 009 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.795526 -The maximum resident set size (KB) = 3025764 +The total amount of wall time = 365.896427 +The maximum resident set size (KB) = 3026668 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 216.875523 -The maximum resident set size (KB) = 3081528 +The total amount of wall time = 217.069512 +The maximum resident set size (KB) = 3079264 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.060668 -The maximum resident set size (KB) = 3313600 +The total amount of wall time = 323.289607 +The maximum resident set size (KB) = 3313068 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.996427 -The maximum resident set size (KB) = 2997460 +The total amount of wall time = 357.730839 +The maximum resident set size (KB) = 2995164 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -949,14 +949,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 301.556085 -The maximum resident set size (KB) = 2922812 +The total amount of wall time = 300.218678 +The maximum resident set size (KB) = 2925712 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 362.589716 -The maximum resident set size (KB) = 3000252 +The total amount of wall time = 364.462067 +The maximum resident set size (KB) = 3000584 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_s2sa_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 016 cpld_s2sa_p8_intel 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 = 343.255355 -The maximum resident set size (KB) = 2968992 +The total amount of wall time = 342.692238 +The maximum resident set size (KB) = 2966420 Test 016 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 268.714879 -The maximum resident set size (KB) = 1595720 +The total amount of wall time = 269.362524 +The maximum resident set size (KB) = 1588368 Test 017 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1219,14 +1219,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 273.690681 -The maximum resident set size (KB) = 1637660 +The total amount of wall time = 273.708208 +The maximum resident set size (KB) = 1639808 Test 018 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1288,14 +1288,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel 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 = 276.570006 -The maximum resident set size (KB) = 1639792 +The total amount of wall time = 276.517542 +The maximum resident set size (KB) = 1635132 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1345,14 +1345,14 @@ Checking test 020 cpld_control_c48_intel 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 = 403.617897 -The maximum resident set size (KB) = 2650608 +The total amount of wall time = 406.771645 +The maximum resident set size (KB) = 2660260 Test 020 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 355.782555 -The maximum resident set size (KB) = 2999840 +The total amount of wall time = 355.478873 +The maximum resident set size (KB) = 3001988 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 918.945634 -The maximum resident set size (KB) = 1613532 +The total amount of wall time = 919.139744 +The maximum resident set size (KB) = 1609776 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 458.590579 -The maximum resident set size (KB) = 906044 +The total amount of wall time = 455.281404 +The maximum resident set size (KB) = 908976 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1618,14 +1618,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1066.977445 -The maximum resident set size (KB) = 1598064 +The total amount of wall time = 1064.929281 +The maximum resident set size (KB) = 1593800 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1677,14 +1677,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1497.015242 -The maximum resident set size (KB) = 1611696 +The total amount of wall time = 1499.100932 +The maximum resident set size (KB) = 1610892 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1695,14 +1695,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 211.566484 -The maximum resident set size (KB) = 582792 +The total amount of wall time = 212.378864 +The maximum resident set size (KB) = 580296 Test 026 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.506717 -The maximum resident set size (KB) = 527588 +The total amount of wall time = 130.453285 +The maximum resident set size (KB) = 530040 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,14 +1751,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.699047 -The maximum resident set size (KB) = 532944 +The total amount of wall time = 137.220507 +The maximum resident set size (KB) = 535736 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1769,14 +1769,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.603058 -The maximum resident set size (KB) = 531068 +The total amount of wall time = 132.066392 +The maximum resident set size (KB) = 529512 Test 029 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1787,14 +1787,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.082879 -The maximum resident set size (KB) = 528748 +The total amount of wall time = 133.859422 +The maximum resident set size (KB) = 530496 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.697294 -The maximum resident set size (KB) = 721808 +The total amount of wall time = 330.440419 +The maximum resident set size (KB) = 721588 Test 031 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c48.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c48.v2.sfc_intel Checking test 032 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1879,14 +1879,14 @@ Checking test 032 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 325.499105 -The maximum resident set size (KB) = 721312 +The total amount of wall time = 328.756213 +The maximum resident set size (KB) = 721768 Test 032 control_c48.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1897,14 +1897,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 526.468920 -The maximum resident set size (KB) = 648336 +The total amount of wall time = 525.577716 +The maximum resident set size (KB) = 644504 Test 033 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1915,14 +1915,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 582.435855 -The maximum resident set size (KB) = 957984 +The total amount of wall time = 580.108798 +The maximum resident set size (KB) = 959496 Test 034 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1965,14 +1965,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 513.009125 -The maximum resident set size (KB) = 1097440 +The total amount of wall time = 511.625560 +The maximum resident set size (KB) = 1097996 Test 035 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1983,28 +1983,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 87.954792 -The maximum resident set size (KB) = 533280 +The total amount of wall time = 88.399486 +The maximum resident set size (KB) = 534596 Test 036 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 48.952973 -The maximum resident set size (KB) = 340568 +The total amount of wall time = 49.297610 +The maximum resident set size (KB) = 338920 Test 037 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.542029 -The maximum resident set size (KB) = 536572 +The total amount of wall time = 84.662009 +The maximum resident set size (KB) = 535128 Test 038 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.061525 -The maximum resident set size (KB) = 528468 +The total amount of wall time = 131.910171 +The maximum resident set size (KB) = 529464 Test 039 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2059,14 +2059,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.793345 -The maximum resident set size (KB) = 533240 +The total amount of wall time = 132.771433 +The maximum resident set size (KB) = 530092 Test 040 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.606135 -The maximum resident set size (KB) = 1513692 +The total amount of wall time = 163.127863 +The maximum resident set size (KB) = 1513748 Test 041 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8.v2.sfc_intel Checking test 042 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2167,14 +2167,14 @@ Checking test 042 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.930980 -The maximum resident set size (KB) = 1504324 +The total amount of wall time = 161.411420 +The maximum resident set size (KB) = 1509616 Test 042 control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_ugwpv1_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_ugwpv1_intel Checking test 043 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2221,14 +2221,14 @@ Checking test 043 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.526786 -The maximum resident set size (KB) = 1515456 +The total amount of wall time = 159.523179 +The maximum resident set size (KB) = 1513580 Test 043 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_p8_intel Checking test 044 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2267,14 +2267,14 @@ Checking test 044 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 89.217891 -The maximum resident set size (KB) = 696296 +The total amount of wall time = 89.174390 +The maximum resident set size (KB) = 700544 Test 044 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_noqr_p8_intel Checking test 045 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2321,14 +2321,14 @@ Checking test 045 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 162.662143 -The maximum resident set size (KB) = 1494272 +The total amount of wall time = 163.123791 +The maximum resident set size (KB) = 1500584 Test 045 control_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_restart_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_noqr_p8_intel Checking test 046 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 046 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 87.788536 -The maximum resident set size (KB) = 702940 +The total amount of wall time = 89.273198 +The maximum resident set size (KB) = 703852 Test 046 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_decomp_p8_intel Checking test 047 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2417,14 +2417,14 @@ Checking test 047 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.564714 -The maximum resident set size (KB) = 1504172 +The total amount of wall time = 167.638993 +The maximum resident set size (KB) = 1504216 Test 047 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_2threads_p8_intel Checking test 048 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 048 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 142.701476 -The maximum resident set size (KB) = 1602424 +The total amount of wall time = 143.361942 +The maximum resident set size (KB) = 1600508 Test 048 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_lndp_intel Checking test 049 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2493,14 +2493,14 @@ Checking test 049 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 292.520436 -The maximum resident set size (KB) = 1508008 +The total amount of wall time = 292.116016 +The maximum resident set size (KB) = 1507376 Test 049 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_rrtmgp_intel Checking test 050 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2547,14 +2547,14 @@ Checking test 050 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.793089 -The maximum resident set size (KB) = 1567856 +The total amount of wall time = 217.670222 +The maximum resident set size (KB) = 1570332 Test 050 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_mynn_intel Checking test 051 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2601,14 +2601,14 @@ Checking test 051 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.217056 -The maximum resident set size (KB) = 1521124 +The total amount of wall time = 164.860094 +The maximum resident set size (KB) = 1515880 Test 051 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/merra2_thompson_intel Checking test 052 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 052 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 197.220348 -The maximum resident set size (KB) = 1519856 +The total amount of wall time = 196.736246 +The maximum resident set size (KB) = 1515464 Test 052 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_control_intel Checking test 053 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2673,28 +2673,28 @@ Checking test 053 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.894292 -The maximum resident set size (KB) = 614844 +The total amount of wall time = 284.618520 +The maximum resident set size (KB) = 615952 Test 053 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_restart_intel Checking test 054 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 151.757245 -The maximum resident set size (KB) = 786440 +The total amount of wall time = 152.919739 +The maximum resident set size (KB) = 786260 Test 054 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_decomp_intel Checking test 055 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 055 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 296.356071 -The maximum resident set size (KB) = 613604 +The total amount of wall time = 297.844147 +The maximum resident set size (KB) = 612216 Test 055 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_2threads_intel Checking test 056 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2723,14 +2723,14 @@ Checking test 056 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 168.510572 -The maximum resident set size (KB) = 669144 +The total amount of wall time = 169.237858 +The maximum resident set size (KB) = 666624 Test 056 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_noquilt_intel Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2738,14 +2738,14 @@ Checking test 057 regional_noquilt_intel 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 = 280.431624 -The maximum resident set size (KB) = 1146660 +The total amount of wall time = 279.879265 +The maximum resident set size (KB) = 1146092 Test 057 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.081778 -The maximum resident set size (KB) = 616604 +The total amount of wall time = 283.735880 +The maximum resident set size (KB) = 616188 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 365.892311 -The maximum resident set size (KB) = 1589036 +The total amount of wall time = 367.222732 +The maximum resident set size (KB) = 1586860 Test 059 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_control_intel Checking test 060 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 060 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 315.193017 -The maximum resident set size (KB) = 611708 +The total amount of wall time = 313.897341 +The maximum resident set size (KB) = 611380 Test 060 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_decomp_intel Checking test 061 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2810,14 +2810,14 @@ Checking test 061 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 328.207228 -The maximum resident set size (KB) = 610408 +The total amount of wall time = 329.597396 +The maximum resident set size (KB) = 610164 Test 061 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_2threads_intel Checking test 062 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 062 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 190.847621 -The maximum resident set size (KB) = 665472 +The total amount of wall time = 189.873742 +The maximum resident set size (KB) = 665628 Test 062 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.106838 -The maximum resident set size (KB) = 916848 +The total amount of wall time = 405.151485 +The maximum resident set size (KB) = 915444 Test 063 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.345734 -The maximum resident set size (KB) = 1095308 +The total amount of wall time = 237.229443 +The maximum resident set size (KB) = 1102636 Test 064 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2954,14 +2954,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.203728 -The maximum resident set size (KB) = 917192 +The total amount of wall time = 418.716547 +The maximum resident set size (KB) = 917800 Test 065 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3008,14 +3008,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.717529 -The maximum resident set size (KB) = 1006096 +The total amount of wall time = 368.284763 +The maximum resident set size (KB) = 1003168 Test 066 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.708657 -The maximum resident set size (KB) = 790188 +The total amount of wall time = 207.013809 +The maximum resident set size (KB) = 788596 Test 067 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3108,14 +3108,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.544209 -The maximum resident set size (KB) = 917192 +The total amount of wall time = 403.998872 +The maximum resident set size (KB) = 914680 Test 068 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3162,14 +3162,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.428487 +The total amount of wall time = 420.999979 The maximum resident set size (KB) = 912288 Test 069 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 301.099393 -The maximum resident set size (KB) = 784304 +The total amount of wall time = 302.149392 +The maximum resident set size (KB) = 784768 Test 070 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.023218 -The maximum resident set size (KB) = 909836 +The total amount of wall time = 205.964835 +The maximum resident set size (KB) = 908472 Test 071 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.897815 -The maximum resident set size (KB) = 909852 +The total amount of wall time = 212.426246 +The maximum resident set size (KB) = 912084 Test 072 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,28 +3370,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.593079 -The maximum resident set size (KB) = 991532 +The total amount of wall time = 185.434840 +The maximum resident set size (KB) = 990576 Test 073 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.594142 -The maximum resident set size (KB) = 739880 +The total amount of wall time = 108.946088 +The maximum resident set size (KB) = 740732 Test 074 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.159368 -The maximum resident set size (KB) = 904012 +The total amount of wall time = 395.551368 +The maximum resident set size (KB) = 910124 Test 075 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3460,14 +3460,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 486.098706 -The maximum resident set size (KB) = 1873116 +The total amount of wall time = 483.321182 +The maximum resident set size (KB) = 1871576 Test 076 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3482,14 +3482,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.300053 -The maximum resident set size (KB) = 1860552 +The total amount of wall time = 467.602453 +The maximum resident set size (KB) = 1859568 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3500,14 +3500,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 334.727684 -The maximum resident set size (KB) = 602080 +The total amount of wall time = 334.594469 +The maximum resident set size (KB) = 602656 Test 078 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3518,26 +3518,26 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 330.904537 -The maximum resident set size (KB) = 598200 +The total amount of wall time = 333.460693 +The maximum resident set size (KB) = 600960 Test 079 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wam_intel Checking test 080 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.102736 -The maximum resident set size (KB) = 275700 +The total amount of wall time = 118.642945 +The maximum resident set size (KB) = 276388 Test 080 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_faster_intel Checking test 081 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 081 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.695585 -The maximum resident set size (KB) = 1503928 +The total amount of wall time = 157.687504 +The maximum resident set size (KB) = 1503432 Test 081 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_control_faster_intel Checking test 082 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3602,14 +3602,14 @@ Checking test 082 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 272.357924 -The maximum resident set size (KB) = 609172 +The total amount of wall time = 269.069375 +The maximum resident set size (KB) = 608996 Test 082 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3636,364 +3636,364 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.547367 -The maximum resident set size (KB) = 686444 +The total amount of wall time = 159.302618 +The maximum resident set size (KB) = 685036 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.132476 -The maximum resident set size (KB) = 690384 +The total amount of wall time = 157.786515 +The maximum resident set size (KB) = 690556 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_debug_intel Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.432921 -The maximum resident set size (KB) = 690204 +The total amount of wall time = 179.174032 +The maximum resident set size (KB) = 688196 Test 085 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_lndp_debug_intel Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.966593 -The maximum resident set size (KB) = 695080 +The total amount of wall time = 160.817218 +The maximum resident set size (KB) = 690072 Test 086 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmg_debug_intel Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 250.352772 -The maximum resident set size (KB) = 731336 +The total amount of wall time = 251.849095 +The maximum resident set size (KB) = 730176 Test 087 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmgt_debug_intel Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 245.639961 -The maximum resident set size (KB) = 730112 +The total amount of wall time = 248.289400 +The maximum resident set size (KB) = 728100 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_ras_debug_intel Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.770871 -The maximum resident set size (KB) = 702952 +The total amount of wall time = 162.459170 +The maximum resident set size (KB) = 701080 Test 089 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_diag_debug_intel Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.573966 -The maximum resident set size (KB) = 748196 +The total amount of wall time = 163.029933 +The maximum resident set size (KB) = 748684 Test 090 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_debug_p8_intel Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.415445 -The maximum resident set size (KB) = 1518008 +The total amount of wall time = 166.543819 +The maximum resident set size (KB) = 1518276 Test 091 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_debug_intel Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1048.638203 -The maximum resident set size (KB) = 628760 +The total amount of wall time = 1045.877702 +The maximum resident set size (KB) = 628504 Test 092 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_debug_intel Checking test 093 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.351330 -The maximum resident set size (KB) = 1074116 +The total amount of wall time = 298.385685 +The maximum resident set size (KB) = 1073504 Test 093 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_debug_intel Checking test 094 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.314943 -The maximum resident set size (KB) = 1070824 +The total amount of wall time = 291.164904 +The maximum resident set size (KB) = 1069160 Test 094 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_gf_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_gf_debug_intel Checking test 095 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.092787 -The maximum resident set size (KB) = 1068524 +The total amount of wall time = 298.009429 +The maximum resident set size (KB) = 1075828 Test 095 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_c3_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_c3_debug_intel Checking test 096 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.571500 -The maximum resident set size (KB) = 1069692 +The total amount of wall time = 298.810459 +The maximum resident set size (KB) = 1076872 Test 096 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.695056 -The maximum resident set size (KB) = 1073052 +The total amount of wall time = 301.461430 +The maximum resident set size (KB) = 1075804 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.581044 -The maximum resident set size (KB) = 1156364 +The total amount of wall time = 309.369655 +The maximum resident set size (KB) = 1158724 Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.015047 -The maximum resident set size (KB) = 1076232 +The total amount of wall time = 305.187340 +The maximum resident set size (KB) = 1074300 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.058345 -The maximum resident set size (KB) = 1077008 +The total amount of wall time = 306.506140 +The maximum resident set size (KB) = 1072284 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.172556 -The maximum resident set size (KB) = 1077216 +The total amount of wall time = 301.396932 +The maximum resident set size (KB) = 1076452 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.463674 -The maximum resident set size (KB) = 1074532 +The total amount of wall time = 300.069111 +The maximum resident set size (KB) = 1075048 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.108367 -The maximum resident set size (KB) = 1071552 +The total amount of wall time = 292.773366 +The maximum resident set size (KB) = 1076524 Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.792364 -The maximum resident set size (KB) = 1075204 +The total amount of wall time = 299.191676 +The maximum resident set size (KB) = 1070628 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.683905 -The maximum resident set size (KB) = 1073636 +The total amount of wall time = 489.469552 +The maximum resident set size (KB) = 1073948 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.927838 -The maximum resident set size (KB) = 1070464 +The total amount of wall time = 294.456047 +The maximum resident set size (KB) = 1069328 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 348.822359 -The maximum resident set size (KB) = 1073508 +The total amount of wall time = 348.935150 +The maximum resident set size (KB) = 1074940 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.888908 -The maximum resident set size (KB) = 1071432 +The total amount of wall time = 299.459310 +The maximum resident set size (KB) = 1074844 Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/gnv1_c96_no_nest_debug_intel Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4034,26 +4034,26 @@ Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 522.646726 -The maximum resident set size (KB) = 1085612 +The total amount of wall time = 522.581705 +The maximum resident set size (KB) = 1080220 Test 109 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wam_debug_intel Checking test 110 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.216813 -The maximum resident set size (KB) = 303164 +The total amount of wall time = 297.055782 +The maximum resident set size (KB) = 298720 Test 110 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 226.410362 -The maximum resident set size (KB) = 959120 +The total amount of wall time = 226.625120 +The maximum resident set size (KB) = 960224 Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn32_phy32_intel Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 334.849492 -The maximum resident set size (KB) = 798660 +The total amount of wall time = 334.270880 +The maximum resident set size (KB) = 795488 Test 112 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_dyn32_phy32_intel Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.740207 -The maximum resident set size (KB) = 788408 +The total amount of wall time = 175.175636 +The maximum resident set size (KB) = 788112 Test 113 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 307.187236 -The maximum resident set size (KB) = 858896 +The total amount of wall time = 306.550756 +The maximum resident set size (KB) = 856392 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 158.846663 -The maximum resident set size (KB) = 845996 +The total amount of wall time = 159.688862 +The maximum resident set size (KB) = 844952 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.594503 -The maximum resident set size (KB) = 791060 +The total amount of wall time = 181.850283 +The maximum resident set size (KB) = 791632 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,28 +4380,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.987743 -The maximum resident set size (KB) = 693688 +The total amount of wall time = 249.939585 +The maximum resident set size (KB) = 690980 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.935159 -The maximum resident set size (KB) = 674808 +The total amount of wall time = 93.299960 +The maximum resident set size (KB) = 673660 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_control_intel Checking test 119 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 119 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 118.636314 -The maximum resident set size (KB) = 1004424 +The total amount of wall time = 115.789816 +The maximum resident set size (KB) = 1006692 Test 119 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_2threads_intel Checking test 120 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 58.921977 -The maximum resident set size (KB) = 1010408 +The total amount of wall time = 57.663096 +The maximum resident set size (KB) = 1005620 Test 120 conus13km_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_restart_mismatch_intel Checking test 121 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.722686 -The maximum resident set size (KB) = 883156 +The total amount of wall time = 69.157185 +The maximum resident set size (KB) = 884248 Test 121 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,42 +4497,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.241299 -The maximum resident set size (KB) = 818668 +The total amount of wall time = 227.808235 +The maximum resident set size (KB) = 819796 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_debug_dyn32_phy32_intel Checking test 123 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.226782 -The maximum resident set size (KB) = 951232 +The total amount of wall time = 292.424539 +The maximum resident set size (KB) = 956660 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_debug_dyn32_phy32_intel Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 284.756499 -The maximum resident set size (KB) = 953736 +The total amount of wall time = 285.346478 +The maximum resident set size (KB) = 955928 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_intel Checking test 125 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4546,14 +4546,14 @@ Checking test 125 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 891.005256 -The maximum resident set size (KB) = 1037844 +The total amount of wall time = 897.018552 +The maximum resident set size (KB) = 1041768 Test 125 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_debug_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_qr_intel Checking test 126 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4567,81 +4567,81 @@ Checking test 126 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 896.889870 -The maximum resident set size (KB) = 709116 +The total amount of wall time = 900.985766 +The maximum resident set size (KB) = 711008 Test 126 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 510.427349 -The maximum resident set size (KB) = 1039900 +The total amount of wall time = 516.673198 +The maximum resident set size (KB) = 1036988 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 891.369137 -The maximum resident set size (KB) = 1107040 +The total amount of wall time = 917.107301 +The maximum resident set size (KB) = 1105408 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.333393 -The maximum resident set size (KB) = 974484 +The total amount of wall time = 297.236134 +The maximum resident set size (KB) = 976468 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 345.057829 -The maximum resident set size (KB) = 619840 +The total amount of wall time = 342.169924 +The maximum resident set size (KB) = 621792 Test 130 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 309.026567 -The maximum resident set size (KB) = 974140 +The total amount of wall time = 310.508806 +The maximum resident set size (KB) = 971316 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4650,14 +4650,14 @@ Checking test 132 hafs_regional_atm_ocn_intel 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 = 422.972057 -The maximum resident set size (KB) = 668228 +The total amount of wall time = 422.470786 +The maximum resident set size (KB) = 662404 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4666,14 +4666,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 746.150042 -The maximum resident set size (KB) = 690508 +The total amount of wall time = 746.388468 +The maximum resident set size (KB) = 694776 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4684,14 +4684,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 940.427292 -The maximum resident set size (KB) = 709616 +The total amount of wall time = 941.019260 +The maximum resident set size (KB) = 707884 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4713,14 +4713,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 315.417549 -The maximum resident set size (KB) = 388968 +The total amount of wall time = 314.978649 +The maximum resident set size (KB) = 399148 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_telescopic_2nests_atm_intel Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4729,14 +4729,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 402.760453 -The maximum resident set size (KB) = 410284 +The total amount of wall time = 405.384902 +The maximum resident set size (KB) = 408316 Test 136 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_1nest_atm_intel Checking test 137 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4783,14 +4783,14 @@ Checking test 137 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 169.981347 -The maximum resident set size (KB) = 286496 +The total amount of wall time = 170.278883 +The maximum resident set size (KB) = 283368 Test 137 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4872,14 +4872,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 483.972254 -The maximum resident set size (KB) = 372772 +The total amount of wall time = 486.522391 +The maximum resident set size (KB) = 372988 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_specified_moving_1nest_atm_intel Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4888,14 +4888,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.645173 -The maximum resident set size (KB) = 417664 +The total amount of wall time = 218.374333 +The maximum resident set size (KB) = 414296 Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_intel Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,14 +4917,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 205.212827 -The maximum resident set size (KB) = 420916 +The total amount of wall time = 204.980896 +The maximum resident set size (KB) = 420636 Test 140 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4933,28 +4933,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 263.241550 -The maximum resident set size (KB) = 492652 +The total amount of wall time = 264.191649 +The maximum resident set size (KB) = 494456 Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_storm_following_1nest_atm_intel Checking test 142 hafs_global_storm_following_1nest_atm_intel 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 = 90.553352 -The maximum resident set size (KB) = 313472 +The total amount of wall time = 91.972821 +The maximum resident set size (KB) = 323192 Test 142 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/gnv1_nested_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/gnv1_nested_intel Checking test 143 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5001,28 +5001,28 @@ Checking test 143 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 238.797672 -The maximum resident set size (KB) = 679868 +The total amount of wall time = 237.804547 +The maximum resident set size (KB) = 682784 Test 143 gnv1_nested_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 818.481184 -The maximum resident set size (KB) = 504868 +The total amount of wall time = 815.386804 +The maximum resident set size (KB) = 502400 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5033,14 +5033,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 520.554537 -The maximum resident set size (KB) = 530544 +The total amount of wall time = 514.789611 +The maximum resident set size (KB) = 535896 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5051,31 +5051,31 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 523.618143 -The maximum resident set size (KB) = 716844 +The total amount of wall time = 522.046143 +The maximum resident set size (KB) = 712016 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc ............ALT CHECK......NOT OK - Comparing sfcf003.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f003.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f003.nc ............ALT CHECK......NOT OK - Comparing ocn_2020_08_25_15.nc ............ALT CHECK......NOT OK - Comparing 20200825.150000.out_grd.ww3 .........NOT OK - Comparing 20200825.150000.out_pnt.ww3 .........NOT OK + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 385.452482 -The maximum resident set size (KB) = 708548 +The total amount of wall time = 385.255191 +The maximum resident set size (KB) = 706472 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 +Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5083,14 +5083,14 @@ Checking test 148 hafs_regional_docn_intel 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 = 392.130628 -The maximum resident set size (KB) = 653400 +The total amount of wall time = 393.007385 +The maximum resident set size (KB) = 658632 Test 148 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5098,131 +5098,131 @@ Checking test 149 hafs_regional_docn_oisst_intel 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 = 395.195959 -The maximum resident set size (KB) = 637620 +The total amount of wall time = 398.036164 +The maximum resident set size (KB) = 638520 Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_datm_cdeps_intel Checking test 150 hafs_regional_datm_cdeps_intel 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 = 946.926120 -The maximum resident set size (KB) = 883084 +The total amount of wall time = 946.882696 +The maximum resident set size (KB) = 884056 Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_cfsr_intel Checking test 151 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.551157 -The maximum resident set size (KB) = 747292 +The total amount of wall time = 142.558777 +The maximum resident set size (KB) = 750872 Test 151 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_restart_cfsr_intel Checking test 152 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 87.305437 -The maximum resident set size (KB) = 738340 +The total amount of wall time = 85.527016 +The maximum resident set size (KB) = 738112 Test 152 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_gefs_intel Checking test 153 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.729535 -The maximum resident set size (KB) = 631028 +The total amount of wall time = 134.387022 +The maximum resident set size (KB) = 628924 Test 153 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_iau_gefs_intel Checking test 154 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.806694 -The maximum resident set size (KB) = 631376 +The total amount of wall time = 136.437657 +The maximum resident set size (KB) = 627908 Test 154 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_stochy_gefs_intel Checking test 155 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.055231 -The maximum resident set size (KB) = 628460 +The total amount of wall time = 138.735326 +The maximum resident set size (KB) = 629404 Test 155 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_ciceC_cfsr_intel Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.502149 -The maximum resident set size (KB) = 748320 +The total amount of wall time = 142.760720 +The maximum resident set size (KB) = 748616 Test 156 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_bulk_cfsr_intel Checking test 157 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.333438 -The maximum resident set size (KB) = 751576 +The total amount of wall time = 142.978655 +The maximum resident set size (KB) = 748420 Test 157 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_bulk_gefs_intel Checking test 158 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.090684 -The maximum resident set size (KB) = 629732 +The total amount of wall time = 134.008922 +The maximum resident set size (KB) = 637940 Test 158 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_mx025_cfsr_intel Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel 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 = 339.858943 -The maximum resident set size (KB) = 595332 +The total amount of wall time = 338.258668 +The maximum resident set size (KB) = 597356 Test 159 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_mx025_gefs_intel Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5247,64 +5247,64 @@ Checking test 160 datm_cdeps_mx025_gefs_intel 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 = 335.268251 -The maximum resident set size (KB) = 575904 +The total amount of wall time = 337.139239 +The maximum resident set size (KB) = 575816 Test 160 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_multiple_files_cfsr_intel Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.545273 -The maximum resident set size (KB) = 735280 +The total amount of wall time = 142.020984 +The maximum resident set size (KB) = 747652 Test 161 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_3072x1536_cfsr_intel Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 260.863159 -The maximum resident set size (KB) = 2006856 +The total amount of wall time = 261.128389 +The maximum resident set size (KB) = 2006244 Test 162 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_gfs_intel Checking test 163 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 261.115711 -The maximum resident set size (KB) = 2006300 +The total amount of wall time = 261.154855 +The maximum resident set size (KB) = 2009212 Test 163 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.205870 -The maximum resident set size (KB) = 751560 +The total amount of wall time = 142.598568 +The maximum resident set size (KB) = 747464 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel 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 @@ -5313,14 +5313,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 58.928734 -The maximum resident set size (KB) = 226272 +The total amount of wall time = 58.115373 +The maximum resident set size (KB) = 226600 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_lnd_era5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_era5_intel Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 60.245650 -The maximum resident set size (KB) = 366796 +The total amount of wall time = 57.782992 +The maximum resident set size (KB) = 372344 Test 166 datm_cdeps_lnd_era5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/datm_cdeps_lnd_era5_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_era5_rst_intel Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5345,14 +5345,14 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 40.929526 -The maximum resident set size (KB) = 371600 +The total amount of wall time = 41.738809 +The maximum resident set size (KB) = 369036 Test 167 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_atmlnd_sbs_intel Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5441,14 +5441,14 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 271.388703 -The maximum resident set size (KB) = 1544112 +The total amount of wall time = 273.901339 +The maximum resident set size (KB) = 1552676 Test 168 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_p8_atmlnd_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_atmlnd_intel Checking test 169 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5537,14 +5537,14 @@ Checking test 169 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 274.487122 -The maximum resident set size (KB) = 1546464 +The total amount of wall time = 274.958810 +The maximum resident set size (KB) = 1551708 Test 169 control_p8_atmlnd_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_restart_p8_atmlnd_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_p8_atmlnd_intel Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5565,14 +5565,14 @@ Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 152.677934 -The maximum resident set size (KB) = 746268 +The total amount of wall time = 153.485020 +The maximum resident set size (KB) = 743256 Test 170 control_restart_p8_atmlnd_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmwav_control_noaero_p8_intel Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5615,14 +5615,14 @@ Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 99.134560 -The maximum resident set size (KB) = 1544784 +The total amount of wall time = 98.407449 +The maximum resident set size (KB) = 1545788 Test 171 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_atmwav_intel Checking test 172 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5666,14 +5666,14 @@ Checking test 172 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.608426 -The maximum resident set size (KB) = 543256 +The total amount of wall time = 90.125650 +The maximum resident set size (KB) = 545940 Test 172 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_intel Checking test 173 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5717,14 +5717,14 @@ Checking test 173 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 237.815618 -The maximum resident set size (KB) = 2855384 +The total amount of wall time = 235.843111 +The maximum resident set size (KB) = 2849320 Test 173 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_rad_intel Checking test 174 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5768,14 +5768,14 @@ Checking test 174 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 276.427475 -The maximum resident set size (KB) = 2912700 +The total amount of wall time = 275.571678 +The maximum resident set size (KB) = 2912816 Test 174 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_rad_micro_intel Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5819,14 +5819,14 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 289.621495 -The maximum resident set size (KB) = 2927092 +The total amount of wall time = 290.166390 +The maximum resident set size (KB) = 2925388 Test 175 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43845/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5840,54 +5840,10 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1319.758883 -The maximum resident set size (KB) = 4442784 +The total amount of wall time = 1314.456259 +The maximum resident set size (KB) = 4443464 Test 176 regional_atmaq_debug_intel PASS -FAILED TESTS: -147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 147 failed in run_test - -REGRESSION TEST FAILED -Wed Feb 7 18:43:22 UTC 2024 -Elapsed time: 02h:06m:29s. Have a nice day! -Wed Feb 7 19:47:00 UTC 2024 -Start Regression test - -Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafs_mom6w_intel elapsed time 579 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17567/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - -The total amount of wall time = 386.676313 -The maximum resident set size (KB) = 709884 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Feb 7 20:06:34 UTC 2024 -Elapsed time: 00h:19m:36s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index c8b7294c65..98143b4f48 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,60 +1,60 @@ -Thu 01 Feb 2024 09:02:20 PM MST +Thu 08 Feb 2024 07:32:54 AM MST Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 637 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 604 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 490 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 746 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 731 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 300 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 461 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 139 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 801 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 608 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 456 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 692 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 717 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 721 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 721 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 276 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 438 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 132 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 798 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafs_mom6w_intel elapsed time 934 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 413 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_debug_intel elapsed time 397 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile hafsw_faster_intel elapsed time 1105 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 895 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 335 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 832 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 849 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1158 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 572 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1282 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 562 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1148 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 535 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1129 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 584 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_p8_mixedmode_intel +Compile hafsw_intel elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 692 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 301 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 825 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 817 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1112 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 519 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1203 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 518 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1120 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 489 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1081 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 481 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1132 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 295 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 283.230457 -The maximum resident set size (KB) = 3000264 +The total amount of wall time = 278.366598 +The maximum resident set size (KB) = 3070908 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 812.030642 -The maximum resident set size (KB) = 1608308 +The total amount of wall time = 812.161067 +The maximum resident set size (KB) = 1692396 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_gfsv17_iau_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 895.565304 -The maximum resident set size (KB) = 1748620 +The total amount of wall time = 892.401037 +The maximum resident set size (KB) = 1822596 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 414.421457 -The maximum resident set size (KB) = 880484 +The total amount of wall time = 414.569333 +The maximum resident set size (KB) = 952340 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 931.825481 -The maximum resident set size (KB) = 1581896 +The total amount of wall time = 932.838490 +The maximum resident set size (KB) = 1655000 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1287.700858 -The maximum resident set size (KB) = 1625336 +The total amount of wall time = 1278.731443 +The maximum resident set size (KB) = 1703504 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,15 +505,15 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.659688 -The maximum resident set size (KB) = 3017988 +The total amount of wall time = 322.209132 +The maximum resident set size (KB) = 3090856 Test 007 cpld_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -565,15 +565,15 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 185.422049 -The maximum resident set size (KB) = 3073332 +The total amount of wall time = 183.315130 +The maximum resident set size (KB) = 3151580 -Test 008 cpld_restart_p8_intel PASS +Test 009 cpld_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -637,15 +637,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.456035 -The maximum resident set size (KB) = 3045904 +The total amount of wall time = 320.562085 +The maximum resident set size (KB) = 3122900 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -697,15 +697,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 184.975322 -The maximum resident set size (KB) = 3098128 +The total amount of wall time = 188.743688 +The maximum resident set size (KB) = 3177556 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_decomp_p8_intel -Checking test 011 cpld_decomp_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_decomp_p8_intel +Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -757,15 +757,15 @@ Checking test 011 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.353128 -The maximum resident set size (KB) = 3013644 +The total amount of wall time = 318.577685 +The maximum resident set size (KB) = 3092328 -Test 011 cpld_decomp_p8_intel PASS +Test 012 cpld_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_p8_intel -Checking test 012 cpld_mpi_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_p8_intel +Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -817,15 +817,15 @@ Checking test 012 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 268.372777 -The maximum resident set size (KB) = 3306124 +The total amount of wall time = 258.651912 +The maximum resident set size (KB) = 3389572 -Test 012 cpld_mpi_p8_intel PASS +Test 013 cpld_mpi_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_ciceC_p8_intel -Checking test 013 cpld_control_ciceC_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_ciceC_p8_intel +Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -889,15 +889,15 @@ Checking test 013 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.816737 -The maximum resident set size (KB) = 3026524 +The total amount of wall time = 318.652095 +The maximum resident set size (KB) = 3103484 -Test 013 cpld_control_ciceC_p8_intel PASS +Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_c192_p8_intel -Checking test 014 cpld_control_c192_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_c192_p8_intel +Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -949,15 +949,15 @@ Checking test 014 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 511.509138 -The maximum resident set size (KB) = 3556288 +The total amount of wall time = 503.585906 +The maximum resident set size (KB) = 3631448 -Test 014 cpld_control_c192_p8_intel PASS +Test 015 cpld_control_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_c192_p8_intel -Checking test 015 cpld_restart_c192_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_c192_p8_intel +Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1009,15 +1009,15 @@ Checking test 015 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 334.999139 -The maximum resident set size (KB) = 3537332 +The total amount of wall time = 333.550015 +The maximum resident set size (KB) = 3613968 -Test 015 cpld_restart_c192_p8_intel PASS +Test 016 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_s2sa_p8_intel -Checking test 016 cpld_s2sa_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_s2sa_p8_intel +Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1067,15 +1067,15 @@ Checking test 016 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 307.266937 -The maximum resident set size (KB) = 2987784 +The total amount of wall time = 300.748876 +The maximum resident set size (KB) = 3064124 -Test 016 cpld_s2sa_p8_intel PASS +Test 017 cpld_s2sa_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_noaero_p8_intel -Checking test 017 cpld_control_noaero_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_noaero_p8_intel +Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1138,15 +1138,15 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 251.869615 -The maximum resident set size (KB) = 1595728 +The total amount of wall time = 238.556213 +The maximum resident set size (KB) = 1676416 -Test 017 cpld_control_noaero_p8_intel PASS +Test 018 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_nowave_noaero_p8_intel -Checking test 018 cpld_control_nowave_noaero_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_nowave_noaero_p8_intel +Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1207,15 +1207,15 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 243.222511 -The maximum resident set size (KB) = 1651452 +The total amount of wall time = 239.205767 +The maximum resident set size (KB) = 1726472 -Test 018 cpld_control_nowave_noaero_p8_intel PASS +Test 019 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_p8_intel -Checking test 019 cpld_debug_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_p8_intel +Checking test 020 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1267,15 +1267,15 @@ Checking test 019 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 461.147085 -The maximum resident set size (KB) = 3073360 +The total amount of wall time = 453.785653 +The maximum resident set size (KB) = 3148728 -Test 019 cpld_debug_p8_intel PASS +Test 020 cpld_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_noaero_p8_intel -Checking test 020 cpld_debug_noaero_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_noaero_p8_intel +Checking test 021 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1326,15 +1326,15 @@ Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 304.784212 -The maximum resident set size (KB) = 1620532 +The total amount of wall time = 299.481234 +The maximum resident set size (KB) = 1703380 -Test 020 cpld_debug_noaero_p8_intel PASS +Test 021 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_noaero_p8_agrid_intel -Checking test 021 cpld_control_noaero_p8_agrid_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_noaero_p8_agrid_intel +Checking test 022 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1395,15 +1395,15 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 259.770185 -The maximum resident set size (KB) = 1643960 +The total amount of wall time = 239.891101 +The maximum resident set size (KB) = 1723916 -Test 021 cpld_control_noaero_p8_agrid_intel PASS +Test 022 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_c48_intel -Checking test 022 cpld_control_c48_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_c48_intel +Checking test 023 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1452,15 +1452,15 @@ Checking test 022 cpld_control_c48_intel 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 = 387.481417 -The maximum resident set size (KB) = 2665468 +The total amount of wall time = 384.804620 +The maximum resident set size (KB) = 2668804 -Test 022 cpld_control_c48_intel PASS +Test 023 cpld_control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_control_pdlib_p8_intel -Checking test 023 cpld_control_pdlib_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_pdlib_p8_intel +Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1523,15 +1523,15 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 827.911114 -The maximum resident set size (KB) = 1620544 +The total amount of wall time = 824.997661 +The maximum resident set size (KB) = 1698456 -Test 023 cpld_control_pdlib_p8_intel PASS +Test 024 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_restart_pdlib_p8_intel -Checking test 024 cpld_restart_pdlib_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_pdlib_p8_intel +Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1582,15 +1582,15 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 422.336948 -The maximum resident set size (KB) = 938692 +The total amount of wall time = 417.852563 +The maximum resident set size (KB) = 1013404 -Test 024 cpld_restart_pdlib_p8_intel PASS +Test 025 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_mpi_pdlib_p8_intel -Checking test 025 cpld_mpi_pdlib_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_pdlib_p8_intel +Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1653,15 +1653,15 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 951.832758 -The maximum resident set size (KB) = 1585256 +The total amount of wall time = 948.169577 +The maximum resident set size (KB) = 1659464 -Test 025 cpld_mpi_pdlib_p8_intel PASS +Test 026 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/cpld_debug_pdlib_p8_intel -Checking test 026 cpld_debug_pdlib_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_pdlib_p8_intel +Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1712,15 +1712,15 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1346.162608 -The maximum resident set size (KB) = 1632800 +The total amount of wall time = 1343.694853 +The maximum resident set size (KB) = 1717028 -Test 026 cpld_debug_pdlib_p8_intel PASS +Test 027 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_flake_intel -Checking test 027 control_flake_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_flake_intel +Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1730,15 +1730,15 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 195.262459 -The maximum resident set size (KB) = 596576 +The total amount of wall time = 192.680202 +The maximum resident set size (KB) = 663692 -Test 027 control_flake_intel PASS +Test 028 control_flake_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_intel -Checking test 028 control_CubedSphereGrid_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_intel +Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1764,15 +1764,15 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 112.355510 -The maximum resident set size (KB) = 546188 +The total amount of wall time = 116.418466 +The maximum resident set size (KB) = 614652 -Test 028 control_CubedSphereGrid_intel PASS +Test 029 control_CubedSphereGrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_parallel_intel -Checking test 029 control_CubedSphereGrid_parallel_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_parallel_intel +Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1786,15 +1786,15 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 117.481963 -The maximum resident set size (KB) = 549356 +The total amount of wall time = 117.118307 +The maximum resident set size (KB) = 624156 -Test 029 control_CubedSphereGrid_parallel_intel PASS +Test 030 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_latlon_intel -Checking test 030 control_latlon_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_latlon_intel +Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1804,15 +1804,15 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 115.112998 -The maximum resident set size (KB) = 543332 +The total amount of wall time = 113.600428 +The maximum resident set size (KB) = 617984 -Test 030 control_latlon_intel PASS +Test 031 control_latlon_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wrtGauss_netcdf_parallel_intel -Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wrtGauss_netcdf_parallel_intel +Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1822,15 +1822,15 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 115.855770 -The maximum resident set size (KB) = 546444 +The total amount of wall time = 115.524999 +The maximum resident set size (KB) = 619636 -Test 031 control_wrtGauss_netcdf_parallel_intel PASS +Test 032 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c48_intel -Checking test 032 control_c48_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c48_intel +Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1868,15 +1868,15 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.896806 -The maximum resident set size (KB) = 729944 +The total amount of wall time = 305.900594 +The maximum resident set size (KB) = 727444 -Test 032 control_c48_intel PASS +Test 033 control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c192_intel -Checking test 033 control_c192_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c192_intel +Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1886,15 +1886,15 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 500.581723 -The maximum resident set size (KB) = 665752 +The total amount of wall time = 456.111312 +The maximum resident set size (KB) = 738920 -Test 033 control_c192_intel PASS +Test 035 control_c192_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c384_intel -Checking test 034 control_c384_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c384_intel +Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1904,15 +1904,15 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 476.096528 -The maximum resident set size (KB) = 986676 +The total amount of wall time = 470.244557 +The maximum resident set size (KB) = 1057112 -Test 034 control_c384_intel PASS +Test 036 control_c384_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_c384gdas_intel -Checking test 035 control_c384gdas_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c384gdas_intel +Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1954,15 +1954,15 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 423.301303 -The maximum resident set size (KB) = 1125112 +The total amount of wall time = 414.407890 +The maximum resident set size (KB) = 1195352 -Test 035 control_c384gdas_intel PASS +Test 037 control_c384gdas_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_intel -Checking test 036 control_stochy_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_intel +Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1972,29 +1972,29 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 75.678926 -The maximum resident set size (KB) = 552640 +The total amount of wall time = 73.996396 +The maximum resident set size (KB) = 623912 -Test 036 control_stochy_intel PASS +Test 038 control_stochy_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_restart_intel -Checking test 037 control_stochy_restart_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_restart_intel +Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 41.234423 -The maximum resident set size (KB) = 364196 +The total amount of wall time = 40.816951 +The maximum resident set size (KB) = 434408 -Test 037 control_stochy_restart_intel PASS +Test 039 control_stochy_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_lndp_intel -Checking test 038 control_lndp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_lndp_intel +Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2004,15 +2004,15 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 72.613323 -The maximum resident set size (KB) = 547756 +The total amount of wall time = 69.830315 +The maximum resident set size (KB) = 622096 -Test 038 control_lndp_intel PASS +Test 040 control_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_iovr4_intel -Checking test 039 control_iovr4_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_iovr4_intel +Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2026,15 +2026,15 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 118.306658 -The maximum resident set size (KB) = 545500 +The total amount of wall time = 114.432772 +The maximum resident set size (KB) = 616400 -Test 039 control_iovr4_intel PASS +Test 041 control_iovr4_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_iovr5_intel -Checking test 040 control_iovr5_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_iovr5_intel +Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2048,15 +2048,15 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.768688 -The maximum resident set size (KB) = 548072 +The total amount of wall time = 113.969616 +The maximum resident set size (KB) = 619144 -Test 040 control_iovr5_intel PASS +Test 042 control_iovr5_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_intel -Checking test 041 control_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_intel +Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2102,15 +2102,15 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 140.824731 -The maximum resident set size (KB) = 1518752 +The total amount of wall time = 136.727108 +The maximum resident set size (KB) = 1599680 -Test 041 control_p8_intel PASS +Test 043 control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_ugwpv1_intel -Checking test 042 control_p8_ugwpv1_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_ugwpv1_intel +Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2156,15 +2156,15 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 140.704627 -The maximum resident set size (KB) = 1520172 +The total amount of wall time = 136.055116 +The maximum resident set size (KB) = 1596572 -Test 042 control_p8_ugwpv1_intel PASS +Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_p8_intel -Checking test 043 control_restart_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_p8_intel +Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2202,15 +2202,15 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 75.009874 -The maximum resident set size (KB) = 715548 +The total amount of wall time = 73.440874 +The maximum resident set size (KB) = 792524 -Test 043 control_restart_p8_intel PASS +Test 046 control_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_noqr_p8_intel -Checking test 044 control_noqr_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_noqr_p8_intel +Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2256,15 +2256,15 @@ Checking test 044 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 138.208180 -The maximum resident set size (KB) = 1507276 +The total amount of wall time = 136.717509 +The maximum resident set size (KB) = 1581588 -Test 044 control_noqr_p8_intel PASS +Test 047 control_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_noqr_p8_intel -Checking test 045 control_restart_noqr_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_noqr_p8_intel +Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2302,15 +2302,15 @@ Checking test 045 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 74.221574 -The maximum resident set size (KB) = 724264 +The total amount of wall time = 72.097229 +The maximum resident set size (KB) = 799652 -Test 045 control_restart_noqr_p8_intel PASS +Test 048 control_restart_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_decomp_p8_intel -Checking test 046 control_decomp_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_decomp_p8_intel +Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2352,15 +2352,15 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.588699 -The maximum resident set size (KB) = 1516408 +The total amount of wall time = 142.562033 +The maximum resident set size (KB) = 1590672 -Test 046 control_decomp_p8_intel PASS +Test 049 control_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_lndp_intel -Checking test 047 control_p8_lndp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_lndp_intel +Checking test 050 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2378,15 +2378,15 @@ Checking test 047 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 251.397830 -The maximum resident set size (KB) = 1528760 +The total amount of wall time = 249.046392 +The maximum resident set size (KB) = 1590092 -Test 047 control_p8_lndp_intel PASS +Test 050 control_p8_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_rrtmgp_intel -Checking test 048 control_p8_rrtmgp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_rrtmgp_intel +Checking test 051 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2432,15 +2432,15 @@ Checking test 048 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.891160 -The maximum resident set size (KB) = 1578968 +The total amount of wall time = 184.234551 +The maximum resident set size (KB) = 1655480 -Test 048 control_p8_rrtmgp_intel PASS +Test 051 control_p8_rrtmgp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_mynn_intel -Checking test 049 control_p8_mynn_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_mynn_intel +Checking test 052 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2486,15 +2486,15 @@ Checking test 049 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 141.957934 -The maximum resident set size (KB) = 1523564 +The total amount of wall time = 139.573285 +The maximum resident set size (KB) = 1605860 -Test 049 control_p8_mynn_intel PASS +Test 052 control_p8_mynn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/merra2_thompson_intel -Checking test 050 merra2_thompson_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/merra2_thompson_intel +Checking test 053 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2540,15 +2540,15 @@ Checking test 050 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 171.258072 -The maximum resident set size (KB) = 1521484 +The total amount of wall time = 167.084197 +The maximum resident set size (KB) = 1604192 -Test 050 merra2_thompson_intel PASS +Test 053 merra2_thompson_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_control_intel -Checking test 051 regional_control_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_control_intel +Checking test 054 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2558,29 +2558,29 @@ Checking test 051 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 256.207332 -The maximum resident set size (KB) = 625216 +The total amount of wall time = 255.017284 +The maximum resident set size (KB) = 627864 -Test 051 regional_control_intel PASS +Test 054 regional_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_restart_intel -Checking test 052 regional_restart_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_restart_intel +Checking test 055 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 139.013498 -The maximum resident set size (KB) = 796168 +The total amount of wall time = 138.422732 +The maximum resident set size (KB) = 793580 -Test 052 regional_restart_intel PASS +Test 055 regional_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_decomp_intel -Checking test 053 regional_decomp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_decomp_intel +Checking test 056 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2590,44 +2590,44 @@ Checking test 053 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 269.260817 -The maximum resident set size (KB) = 626576 +The total amount of wall time = 269.373816 +The maximum resident set size (KB) = 623816 -Test 053 regional_decomp_intel PASS +Test 056 regional_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_noquilt_intel -Checking test 054 regional_noquilt_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_noquilt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_noquilt_intel +Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 254.071609 -The maximum resident set size (KB) = 1152828 +The total amount of wall time = 252.605680 +The maximum resident set size (KB) = 1155664 -Test 054 regional_noquilt_intel PASS +Test 057 regional_noquilt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_netcdf_parallel_intel -Checking test 055 regional_netcdf_parallel_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_netcdf_parallel_intel +Checking test 058 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 255.889488 -The maximum resident set size (KB) = 620196 +The total amount of wall time = 255.481331 +The maximum resident set size (KB) = 624212 -Test 055 regional_netcdf_parallel_intel PASS +Test 058 regional_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_2dwrtdecomp_intel -Checking test 056 regional_2dwrtdecomp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_2dwrtdecomp_intel +Checking test 059 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2637,33 +2637,33 @@ Checking test 056 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 259.162776 -The maximum resident set size (KB) = 627336 +The total amount of wall time = 256.814605 +The maximum resident set size (KB) = 627784 -Test 056 regional_2dwrtdecomp_intel PASS +Test 059 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_wofs_intel -Checking test 057 regional_wofs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_wofs_intel +Checking test 060 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK + Comparing PRSLEV.GrbF00 .........NOT OK + Comparing PRSLEV.GrbF06 .........NOT OK + Comparing NATLEV.GrbF00 .........NOT OK + Comparing NATLEV.GrbF06 .........NOT OK -The total amount of wall time = 324.970533 -The maximum resident set size (KB) = 2427312 +The total amount of wall time = 323.639131 +The maximum resident set size (KB) = 1598256 -Test 057 regional_wofs_intel PASS +Test 060 regional_wofs_intel FAIL Tries: 2 -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_intel -Checking test 058 rap_control_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_intel +Checking test 061 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2709,15 +2709,15 @@ Checking test 058 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 359.566126 -The maximum resident set size (KB) = 933132 +The total amount of wall time = 357.655730 +The maximum resident set size (KB) = 1005116 -Test 058 rap_control_intel PASS +Test 061 rap_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_spp_sppt_shum_skeb_intel -Checking test 059 regional_spp_sppt_shum_skeb_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_spp_sppt_shum_skeb_intel +Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2727,15 +2727,15 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 204.465039 -The maximum resident set size (KB) = 1119296 +The total amount of wall time = 200.662783 +The maximum resident set size (KB) = 1190900 -Test 059 regional_spp_sppt_shum_skeb_intel PASS +Test 062 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_decomp_intel -Checking test 060 rap_decomp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_decomp_intel +Checking test 063 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2781,15 +2781,15 @@ Checking test 060 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.940462 -The maximum resident set size (KB) = 930332 +The total amount of wall time = 369.631655 +The maximum resident set size (KB) = 1008936 -Test 060 rap_decomp_intel PASS +Test 063 rap_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_restart_intel -Checking test 061 rap_restart_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_restart_intel +Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2827,15 +2827,15 @@ Checking test 061 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.727229 -The maximum resident set size (KB) = 807604 +The total amount of wall time = 181.231939 +The maximum resident set size (KB) = 881996 -Test 061 rap_restart_intel PASS +Test 064 rap_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_intel -Checking test 062 rap_sfcdiff_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_intel +Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2881,15 +2881,15 @@ Checking test 062 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 356.234409 -The maximum resident set size (KB) = 931388 +The total amount of wall time = 353.426030 +The maximum resident set size (KB) = 1004284 -Test 062 rap_sfcdiff_intel PASS +Test 065 rap_sfcdiff_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_decomp_intel -Checking test 063 rap_sfcdiff_decomp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_decomp_intel +Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2935,15 +2935,15 @@ Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.767296 -The maximum resident set size (KB) = 934060 +The total amount of wall time = 372.255662 +The maximum resident set size (KB) = 1005860 -Test 063 rap_sfcdiff_decomp_intel PASS +Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_restart_intel -Checking test 064 rap_sfcdiff_restart_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_restart_intel +Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2981,15 +2981,15 @@ Checking test 064 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 263.920127 -The maximum resident set size (KB) = 811584 +The total amount of wall time = 262.345994 +The maximum resident set size (KB) = 882136 -Test 064 rap_sfcdiff_restart_intel PASS +Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_intel -Checking test 065 hrrr_control_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_intel +Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3035,15 +3035,15 @@ Checking test 065 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.487227 -The maximum resident set size (KB) = 927740 +The total amount of wall time = 181.136332 +The maximum resident set size (KB) = 1003648 -Test 065 hrrr_control_intel PASS +Test 068 hrrr_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_decomp_intel -Checking test 066 hrrr_control_decomp_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_decomp_intel +Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3089,15 +3089,15 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.507982 -The maximum resident set size (KB) = 928328 +The total amount of wall time = 185.676223 +The maximum resident set size (KB) = 999848 -Test 066 hrrr_control_decomp_intel PASS +Test 069 hrrr_control_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_2threads_intel -Checking test 067 hrrr_control_2threads_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_2threads_intel +Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3143,29 +3143,29 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.470191 -The maximum resident set size (KB) = 1018260 +The total amount of wall time = 157.169098 +The maximum resident set size (KB) = 1092608 -Test 067 hrrr_control_2threads_intel PASS +Test 070 hrrr_control_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_restart_intel -Checking test 068 hrrr_control_restart_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_restart_intel +Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 95.298687 -The maximum resident set size (KB) = 760228 +The total amount of wall time = 94.536448 +The maximum resident set size (KB) = 833652 -Test 068 hrrr_control_restart_intel PASS +Test 071 hrrr_control_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1beta_intel -Checking test 069 rrfs_v1beta_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1beta_intel +Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3211,15 +3211,15 @@ Checking test 069 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 348.791056 -The maximum resident set size (KB) = 928128 +The total amount of wall time = 345.509210 +The maximum resident set size (KB) = 1002336 -Test 069 rrfs_v1beta_intel PASS +Test 072 rrfs_v1beta_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1nssl_intel -Checking test 070 rrfs_v1nssl_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1nssl_intel +Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3229,19 +3229,19 @@ Checking test 070 rrfs_v1nssl_intel results .... Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........NOT OK + Comparing GFSPRS.GrbF09 .........NOT OK + Comparing GFSPRS.GrbF12 .........NOT OK -The total amount of wall time = 431.177792 -The maximum resident set size (KB) = 1887560 +The total amount of wall time = 426.953722 +The maximum resident set size (KB) = 1960256 -Test 070 rrfs_v1nssl_intel PASS +Test 073 rrfs_v1nssl_intel FAIL Tries: 2 -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1nssl_nohailnoccn_intel -Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1nssl_nohailnoccn_intel +Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3251,19 +3251,19 @@ Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........NOT OK + Comparing GFSPRS.GrbF09 .........NOT OK + Comparing GFSPRS.GrbF12 .........NOT OK -The total amount of wall time = 418.194264 -The maximum resident set size (KB) = 1875344 +The total amount of wall time = 416.436146 +The maximum resident set size (KB) = 1949036 -Test 071 rrfs_v1nssl_nohailnoccn_intel PASS +Test 074 rrfs_v1nssl_nohailnoccn_intel FAIL Tries: 2 -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmg_intel -Checking test 072 control_csawmg_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmg_intel +Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3273,15 +3273,15 @@ Checking test 072 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 300.193596 -The maximum resident set size (KB) = 616988 +The total amount of wall time = 297.800708 +The maximum resident set size (KB) = 689912 -Test 072 control_csawmg_intel PASS +Test 075 control_csawmg_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmgt_intel -Checking test 073 control_csawmgt_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmgt_intel +Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3291,15 +3291,15 @@ Checking test 073 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 296.358628 -The maximum resident set size (KB) = 615084 +The total amount of wall time = 294.489031 +The maximum resident set size (KB) = 693652 -Test 073 control_csawmgt_intel PASS +Test 076 control_csawmgt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_ras_intel -Checking test 074 control_ras_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_ras_intel +Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3309,27 +3309,27 @@ Checking test 074 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 162.324854 -The maximum resident set size (KB) = 583196 +The total amount of wall time = 160.475751 +The maximum resident set size (KB) = 655200 -Test 074 control_ras_intel PASS +Test 077 control_ras_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wam_intel -Checking test 075 control_wam_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wam_intel +Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 103.043433 -The maximum resident set size (KB) = 303492 +The total amount of wall time = 102.797114 +The maximum resident set size (KB) = 381776 -Test 075 control_wam_intel PASS +Test 078 control_wam_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_faster_intel -Checking test 076 control_p8_faster_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_faster_intel +Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3375,15 +3375,15 @@ Checking test 076 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 147.381340 -The maximum resident set size (KB) = 1516736 +The total amount of wall time = 130.577917 +The maximum resident set size (KB) = 1599428 -Test 076 control_p8_faster_intel PASS +Test 079 control_p8_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_control_faster_intel -Checking test 077 regional_control_faster_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_control_faster_intel +Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3393,15 +3393,15 @@ Checking test 077 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 244.978013 -The maximum resident set size (KB) = 628104 +The total amount of wall time = 240.224735 +The maximum resident set size (KB) = 628276 -Test 077 regional_control_faster_intel PASS +Test 080 regional_control_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_CubedSphereGrid_debug_intel -Checking test 078 control_CubedSphereGrid_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_debug_intel +Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3427,365 +3427,365 @@ Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 144.941451 -The maximum resident set size (KB) = 717668 +The total amount of wall time = 140.181543 +The maximum resident set size (KB) = 794708 -Test 078 control_CubedSphereGrid_debug_intel PASS +Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 079 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 140.656568 -The maximum resident set size (KB) = 717840 +The total amount of wall time = 140.208381 +The maximum resident set size (KB) = 791964 -Test 079 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_stochy_debug_intel -Checking test 080 control_stochy_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_debug_intel +Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.500244 -The maximum resident set size (KB) = 726256 +The total amount of wall time = 158.140731 +The maximum resident set size (KB) = 802024 -Test 080 control_stochy_debug_intel PASS +Test 083 control_stochy_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_lndp_debug_intel -Checking test 081 control_lndp_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_lndp_debug_intel +Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 147.718855 -The maximum resident set size (KB) = 725612 +The total amount of wall time = 142.818359 +The maximum resident set size (KB) = 800912 -Test 081 control_lndp_debug_intel PASS +Test 084 control_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmg_debug_intel -Checking test 082 control_csawmg_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmg_debug_intel +Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 228.345034 -The maximum resident set size (KB) = 760960 +The total amount of wall time = 221.834189 +The maximum resident set size (KB) = 838420 -Test 082 control_csawmg_debug_intel PASS +Test 085 control_csawmg_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_csawmgt_debug_intel -Checking test 083 control_csawmgt_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmgt_debug_intel +Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 223.626752 -The maximum resident set size (KB) = 760804 +The total amount of wall time = 223.714100 +The maximum resident set size (KB) = 840472 -Test 083 control_csawmgt_debug_intel PASS +Test 086 control_csawmgt_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_ras_debug_intel -Checking test 084 control_ras_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_ras_debug_intel +Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 144.474941 -The maximum resident set size (KB) = 732296 +The total amount of wall time = 149.017760 +The maximum resident set size (KB) = 806552 -Test 084 control_ras_debug_intel PASS +Test 087 control_ras_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_diag_debug_intel -Checking test 085 control_diag_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_diag_debug_intel +Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.591942 -The maximum resident set size (KB) = 777472 +The total amount of wall time = 146.370147 +The maximum resident set size (KB) = 856024 -Test 085 control_diag_debug_intel PASS +Test 088 control_diag_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_debug_p8_intel -Checking test 086 control_debug_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_debug_p8_intel +Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 147.918817 -The maximum resident set size (KB) = 1552600 +The total amount of wall time = 145.172424 +The maximum resident set size (KB) = 1625676 -Test 086 control_debug_p8_intel PASS +Test 089 control_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_debug_intel -Checking test 087 regional_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_debug_intel +Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 941.701750 -The maximum resident set size (KB) = 2427312 +The total amount of wall time = 942.293655 +The maximum resident set size (KB) = 661120 -Test 087 regional_debug_intel PASS +Test 090 regional_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_debug_intel -Checking test 088 rap_control_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_debug_intel +Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.637999 -The maximum resident set size (KB) = 1107432 +The total amount of wall time = 264.938931 +The maximum resident set size (KB) = 1183176 -Test 088 rap_control_debug_intel PASS +Test 091 rap_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_debug_intel -Checking test 089 hrrr_control_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_debug_intel +Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.728716 -The maximum resident set size (KB) = 1098252 +The total amount of wall time = 259.852783 +The maximum resident set size (KB) = 1177280 -Test 089 hrrr_control_debug_intel PASS +Test 092 hrrr_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_gf_debug_intel -Checking test 090 hrrr_gf_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_gf_debug_intel +Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.033773 -The maximum resident set size (KB) = 1105408 +The total amount of wall time = 269.191342 +The maximum resident set size (KB) = 1179872 -Test 090 hrrr_gf_debug_intel PASS +Test 093 hrrr_gf_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_c3_debug_intel -Checking test 091 hrrr_c3_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_c3_debug_intel +Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.096415 -The maximum resident set size (KB) = 1106272 +The total amount of wall time = 266.860812 +The maximum resident set size (KB) = 1179364 -Test 091 hrrr_c3_debug_intel PASS +Test 094 hrrr_c3_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_unified_drag_suite_debug_intel -Checking test 092 rap_unified_drag_suite_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_unified_drag_suite_debug_intel +Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 275.891914 -The maximum resident set size (KB) = 1105624 +The total amount of wall time = 266.940251 +The maximum resident set size (KB) = 1183372 -Test 092 rap_unified_drag_suite_debug_intel PASS +Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_diag_debug_intel -Checking test 093 rap_diag_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_diag_debug_intel +Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 280.067575 -The maximum resident set size (KB) = 1189884 +The total amount of wall time = 278.533816 +The maximum resident set size (KB) = 1263668 -Test 093 rap_diag_debug_intel PASS +Test 096 rap_diag_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_cires_ugwp_debug_intel -Checking test 094 rap_cires_ugwp_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_cires_ugwp_debug_intel +Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.028202 -The maximum resident set size (KB) = 1106776 +The total amount of wall time = 273.419175 +The maximum resident set size (KB) = 1183368 -Test 094 rap_cires_ugwp_debug_intel PASS +Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_unified_ugwp_debug_intel -Checking test 095 rap_unified_ugwp_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_unified_ugwp_debug_intel +Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.399230 -The maximum resident set size (KB) = 1105908 +The total amount of wall time = 272.991136 +The maximum resident set size (KB) = 1179820 -Test 095 rap_unified_ugwp_debug_intel PASS +Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_lndp_debug_intel -Checking test 096 rap_lndp_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_lndp_debug_intel +Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 279.495436 -The maximum resident set size (KB) = 1103608 +The total amount of wall time = 273.860152 +The maximum resident set size (KB) = 1181468 -Test 096 rap_lndp_debug_intel PASS +Test 099 rap_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_progcld_thompson_debug_intel -Checking test 097 rap_progcld_thompson_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_progcld_thompson_debug_intel +Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.768748 -The maximum resident set size (KB) = 1104816 +The total amount of wall time = 265.754282 +The maximum resident set size (KB) = 1180272 -Test 097 rap_progcld_thompson_debug_intel PASS +Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_noah_debug_intel -Checking test 098 rap_noah_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_noah_debug_intel +Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.005637 -The maximum resident set size (KB) = 1099304 +The total amount of wall time = 262.830742 +The maximum resident set size (KB) = 1176432 -Test 098 rap_noah_debug_intel PASS +Test 101 rap_noah_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_sfcdiff_debug_intel -Checking test 099 rap_sfcdiff_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_debug_intel +Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.166474 -The maximum resident set size (KB) = 1107884 +The total amount of wall time = 265.491923 +The maximum resident set size (KB) = 1180180 -Test 099 rap_sfcdiff_debug_intel PASS +Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 437.636338 -The maximum resident set size (KB) = 1107040 +The total amount of wall time = 443.299079 +The maximum resident set size (KB) = 1178912 -Test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rrfs_v1beta_debug_intel -Checking test 101 rrfs_v1beta_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1beta_debug_intel +Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 263.713819 -The maximum resident set size (KB) = 1099040 +The total amount of wall time = 263.014271 +The maximum resident set size (KB) = 1172380 -Test 101 rrfs_v1beta_debug_intel PASS +Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_clm_lake_debug_intel -Checking test 102 rap_clm_lake_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_clm_lake_debug_intel +Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 320.271499 -The maximum resident set size (KB) = 1109552 +The total amount of wall time = 338.422860 +The maximum resident set size (KB) = 1182060 -Test 102 rap_clm_lake_debug_intel PASS +Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_flake_debug_intel -Checking test 103 rap_flake_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_flake_debug_intel +Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.030373 -The maximum resident set size (KB) = 1105040 +The total amount of wall time = 266.972494 +The maximum resident set size (KB) = 1178700 -Test 103 rap_flake_debug_intel PASS +Test 106 rap_flake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/gnv1_c96_no_nest_debug_intel -Checking test 104 gnv1_c96_no_nest_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/gnv1_c96_no_nest_debug_intel +Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3825,27 +3825,27 @@ Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 462.521373 -The maximum resident set size (KB) = 1109892 +The total amount of wall time = 464.560260 +The maximum resident set size (KB) = 1182200 -Test 104 gnv1_c96_no_nest_debug_intel PASS +Test 107 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_wam_debug_intel -Checking test 105 control_wam_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wam_debug_intel +Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 268.333218 -The maximum resident set size (KB) = 347068 +The total amount of wall time = 266.207365 +The maximum resident set size (KB) = 422156 -Test 105 control_wam_debug_intel PASS +Test 108 control_wam_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3855,15 +3855,15 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 196.075294 -The maximum resident set size (KB) = 984168 +The total amount of wall time = 191.193573 +The maximum resident set size (KB) = 1057420 -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn32_phy32_intel -Checking test 107 rap_control_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn32_phy32_intel +Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3909,15 +3909,15 @@ Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.241617 -The maximum resident set size (KB) = 805572 +The total amount of wall time = 297.020916 +The maximum resident set size (KB) = 887212 -Test 107 rap_control_dyn32_phy32_intel PASS +Test 110 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_dyn32_phy32_intel -Checking test 108 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_dyn32_phy32_intel +Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3963,15 +3963,15 @@ Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.387367 -The maximum resident set size (KB) = 803684 +The total amount of wall time = 154.682859 +The maximum resident set size (KB) = 879220 -Test 108 hrrr_control_dyn32_phy32_intel PASS +Test 111 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_decomp_dyn32_phy32_intel -Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_decomp_dyn32_phy32_intel +Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4017,15 +4017,15 @@ Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.978148 -The maximum resident set size (KB) = 805256 +The total amount of wall time = 162.270432 +The maximum resident set size (KB) = 879500 -Test 109 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_restart_dyn32_phy32_intel -Checking test 110 rap_restart_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_restart_dyn32_phy32_intel +Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4063,29 +4063,29 @@ Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 221.697764 -The maximum resident set size (KB) = 711800 +The total amount of wall time = 220.369546 +The maximum resident set size (KB) = 794964 -Test 110 rap_restart_dyn32_phy32_intel PASS +Test 113 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_restart_dyn32_phy32_intel -Checking test 111 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_restart_dyn32_phy32_intel +Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 81.099063 -The maximum resident set size (KB) = 700068 +The total amount of wall time = 80.974194 +The maximum resident set size (KB) = 774724 -Test 111 hrrr_control_restart_dyn32_phy32_intel PASS +Test 114 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_control_intel -Checking test 112 conus13km_control_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_control_intel +Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4100,41 +4100,41 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 104.852111 -The maximum resident set size (KB) = 1011020 +The total amount of wall time = 100.582549 +The maximum resident set size (KB) = 1085352 -Test 112 conus13km_control_intel PASS +Test 115 conus13km_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_2threads_intel -Checking test 113 conus13km_2threads_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_2threads_intel +Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 43.528727 -The maximum resident set size (KB) = 1010460 +The total amount of wall time = 43.458268 +The maximum resident set size (KB) = 1085384 -Test 113 conus13km_2threads_intel PASS +Test 116 conus13km_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_restart_mismatch_intel -Checking test 114 conus13km_restart_mismatch_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_restart_mismatch_intel +Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 56.923496 -The maximum resident set size (KB) = 901856 +The total amount of wall time = 56.588260 +The maximum resident set size (KB) = 974996 -Test 114 conus13km_restart_mismatch_intel PASS +Test 117 conus13km_restart_mismatch_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn64_phy32_intel -Checking test 115 rap_control_dyn64_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn64_phy32_intel +Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4180,43 +4180,43 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.952871 -The maximum resident set size (KB) = 835676 +The total amount of wall time = 205.612481 +The maximum resident set size (KB) = 908012 -Test 115 rap_control_dyn64_phy32_intel PASS +Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_debug_dyn32_phy32_intel -Checking test 116 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_debug_dyn32_phy32_intel +Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.300725 -The maximum resident set size (KB) = 983540 +The total amount of wall time = 262.497922 +The maximum resident set size (KB) = 1052816 -Test 116 rap_control_debug_dyn32_phy32_intel PASS +Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hrrr_control_debug_dyn32_phy32_intel -Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_debug_dyn32_phy32_intel +Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 262.469144 -The maximum resident set size (KB) = 975988 +The total amount of wall time = 254.117279 +The maximum resident set size (KB) = 1049252 -Test 117 hrrr_control_debug_dyn32_phy32_intel PASS +Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_debug_intel -Checking test 118 conus13km_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_debug_intel +Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4229,68 +4229,68 @@ Checking test 118 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 799.559745 -The maximum resident set size (KB) = 1055804 +The total amount of wall time = 789.399290 +The maximum resident set size (KB) = 1130588 -Test 118 conus13km_debug_intel PASS +Test 121 conus13km_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/conus13km_radar_tten_debug_intel -Checking test 119 conus13km_radar_tten_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_radar_tten_debug_intel +Checking test 122 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 823.875938 -The maximum resident set size (KB) = 1122000 +The total amount of wall time = 805.799878 +The maximum resident set size (KB) = 1198136 -Test 119 conus13km_radar_tten_debug_intel PASS +Test 122 conus13km_radar_tten_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/rap_control_dyn64_phy32_debug_intel -Checking test 120 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn64_phy32_debug_intel +Checking test 123 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.748808 -The maximum resident set size (KB) = 1009240 +The total amount of wall time = 261.720831 +The maximum resident set size (KB) = 1080236 -Test 120 rap_control_dyn64_phy32_debug_intel PASS +Test 123 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_intel -Checking test 121 hafs_regional_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_intel +Checking test 124 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 259.838092 -The maximum resident set size (KB) = 646392 +The total amount of wall time = 252.293928 +The maximum resident set size (KB) = 719000 -Test 121 hafs_regional_atm_intel PASS +Test 124 hafs_regional_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 122 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 299.794954 -The maximum resident set size (KB) = 991016 +The total amount of wall time = 283.868066 +The maximum resident set size (KB) = 1067332 -Test 122 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_ocn_intel -Checking test 123 hafs_regional_atm_ocn_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_ocn_intel +Checking test 126 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4298,15 +4298,15 @@ Checking test 123 hafs_regional_atm_ocn_intel 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 = 368.428638 -The maximum resident set size (KB) = 701840 +The total amount of wall time = 365.753352 +The maximum resident set size (KB) = 780064 -Test 123 hafs_regional_atm_ocn_intel PASS +Test 126 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_wav_intel -Checking test 124 hafs_regional_atm_wav_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_wav_intel +Checking test 127 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4314,15 +4314,15 @@ Checking test 124 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 635.669980 -The maximum resident set size (KB) = 720464 +The total amount of wall time = 634.560729 +The maximum resident set size (KB) = 790668 -Test 124 hafs_regional_atm_wav_intel PASS +Test 127 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_atm_ocn_wav_intel -Checking test 125 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_ocn_wav_intel +Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4332,15 +4332,15 @@ Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 713.697314 -The maximum resident set size (KB) = 737096 +The total amount of wall time = 702.697655 +The maximum resident set size (KB) = 812604 -Test 125 hafs_regional_atm_ocn_wav_intel PASS +Test 128 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_1nest_atm_intel -Checking test 126 hafs_regional_1nest_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_1nest_atm_intel +Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4361,15 +4361,15 @@ Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 263.195096 -The maximum resident set size (KB) = 408132 +The total amount of wall time = 261.029962 +The maximum resident set size (KB) = 475788 -Test 126 hafs_regional_1nest_atm_intel PASS +Test 129 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_telescopic_2nests_atm_intel -Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_telescopic_2nests_atm_intel +Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4377,15 +4377,15 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 329.482490 -The maximum resident set size (KB) = 418480 +The total amount of wall time = 324.062906 +The maximum resident set size (KB) = 495740 -Test 127 hafs_regional_telescopic_2nests_atm_intel PASS +Test 130 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_1nest_atm_intel -Checking test 128 hafs_global_1nest_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_1nest_atm_intel +Checking test 131 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4431,15 +4431,15 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 123.644163 -The maximum resident set size (KB) = 317624 +The total amount of wall time = 122.667599 +The maximum resident set size (KB) = 391148 -Test 128 hafs_global_1nest_atm_intel PASS +Test 131 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_multiple_4nests_atm_intel -Checking test 129 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_multiple_4nests_atm_intel +Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4520,15 +4520,15 @@ Checking test 129 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 373.974645 -The maximum resident set size (KB) = 384156 +The total amount of wall time = 354.359356 +The maximum resident set size (KB) = 457820 -Test 129 hafs_global_multiple_4nests_atm_intel PASS +Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_specified_moving_1nest_atm_intel -Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_specified_moving_1nest_atm_intel +Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4536,15 +4536,15 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 184.431722 -The maximum resident set size (KB) = 435908 +The total amount of wall time = 179.337579 +The maximum resident set size (KB) = 511092 -Test 130 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_intel -Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_intel +Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4565,15 +4565,15 @@ Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 171.514979 -The maximum resident set size (KB) = 434536 +The total amount of wall time = 166.506589 +The maximum resident set size (KB) = 509624 -Test 131 hafs_regional_storm_following_1nest_atm_intel PASS +Test 134 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4581,29 +4581,29 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 215.334237 -The maximum resident set size (KB) = 513360 +The total amount of wall time = 209.652701 +The maximum resident set size (KB) = 589708 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_global_storm_following_1nest_atm_intel -Checking test 133 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_storm_following_1nest_atm_intel +Checking test 136 hafs_global_storm_following_1nest_atm_intel 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 = 57.772937 -The maximum resident set size (KB) = 351404 +The total amount of wall time = 58.585001 +The maximum resident set size (KB) = 425668 -Test 133 hafs_global_storm_following_1nest_atm_intel PASS +Test 136 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/gnv1_nested_intel -Checking test 134 gnv1_nested_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/gnv1_nested_intel +Checking test 137 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4649,29 +4649,29 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 186.845171 -The maximum resident set size (KB) = 709252 +The total amount of wall time = 184.972509 +The maximum resident set size (KB) = 788256 -Test 134 gnv1_nested_intel PASS +Test 137 gnv1_nested_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 725.891285 -The maximum resident set size (KB) = 535936 +The total amount of wall time = 698.609102 +The maximum resident set size (KB) = 609400 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4681,197 +4681,197 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 410.498619 -The maximum resident set size (KB) = 554476 +The total amount of wall time = 411.816066 +The maximum resident set size (KB) = 626012 -Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc ............MISSING baseline - Comparing sfcf006.nc ............MISSING baseline - Comparing atm.nest02.f006.nc ............MISSING baseline - Comparing sfc.nest02.f006.nc ............MISSING baseline - Comparing archv.2020_238_18.a ............MISSING baseline - Comparing archs.2020_238_18.a ............MISSING baseline - Comparing 20200825.180000.out_grd.ww3 ............MISSING baseline - Comparing 20200825.180000.out_pnt.ww3 ............MISSING baseline +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 420.212987 -The maximum resident set size (KB) = 607660 +The total amount of wall time = 416.240632 +The maximum resident set size (KB) = 679900 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel FAIL Tries: 2 +Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc ............MISSING baseline - Comparing sfcf003.nc ............MISSING baseline - Comparing atm.nest02.f003.nc ............MISSING baseline - Comparing sfc.nest02.f003.nc ............MISSING baseline - Comparing ocn_2020_08_25_15.nc ............MISSING baseline - Comparing 20200825.150000.out_grd.ww3 ............MISSING baseline - Comparing 20200825.150000.out_pnt.ww3 ............MISSING baseline +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc ............ALT CHECK......NOT OK + Comparing sfcf003.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f003.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f003.nc ............ALT CHECK......NOT OK + Comparing ocn_2020_08_25_15.nc ............ALT CHECK......NOT OK + Comparing 20200825.150000.out_grd.ww3 .........NOT OK + Comparing 20200825.150000.out_pnt.ww3 .........NOT OK -The total amount of wall time = 305.265444 -The maximum resident set size (KB) = 626904 +The total amount of wall time = 300.456709 +The maximum resident set size (KB) = 673444 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 +Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_docn_intel -Checking test 139 hafs_regional_docn_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_docn_intel +Checking test 142 hafs_regional_docn_intel 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 -The total amount of wall time = 320.055312 -The maximum resident set size (KB) = 673124 +The total amount of wall time = 315.182157 +The maximum resident set size (KB) = 746968 -Test 139 hafs_regional_docn_intel PASS +Test 142 hafs_regional_docn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_docn_oisst_intel -Checking test 140 hafs_regional_docn_oisst_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_docn_oisst_intel +Checking test 143 hafs_regional_docn_oisst_intel 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 -The total amount of wall time = 332.730876 -The maximum resident set size (KB) = 658096 +The total amount of wall time = 315.081624 +The maximum resident set size (KB) = 730200 -Test 140 hafs_regional_docn_oisst_intel PASS +Test 143 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/hafs_regional_datm_cdeps_intel -Checking test 141 hafs_regional_datm_cdeps_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_datm_cdeps_intel +Checking test 144 hafs_regional_datm_cdeps_intel 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 = 958.544446 -The maximum resident set size (KB) = 892708 +The total amount of wall time = 956.504239 +The maximum resident set size (KB) = 894200 -Test 141 hafs_regional_datm_cdeps_intel PASS +Test 144 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_cfsr_intel -Checking test 142 datm_cdeps_control_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_cfsr_intel +Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.108802 -The maximum resident set size (KB) = 762376 +The total amount of wall time = 139.453860 +The maximum resident set size (KB) = 760584 -Test 142 datm_cdeps_control_cfsr_intel PASS +Test 145 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_restart_cfsr_intel -Checking test 143 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_restart_cfsr_intel +Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 84.484693 -The maximum resident set size (KB) = 750308 +The total amount of wall time = 83.767578 +The maximum resident set size (KB) = 736892 -Test 143 datm_cdeps_restart_cfsr_intel PASS +Test 146 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_gefs_intel -Checking test 144 datm_cdeps_control_gefs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_gefs_intel +Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.621450 -The maximum resident set size (KB) = 640276 +The total amount of wall time = 131.698148 +The maximum resident set size (KB) = 642456 -Test 144 datm_cdeps_control_gefs_intel PASS +Test 147 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_iau_gefs_intel -Checking test 145 datm_cdeps_iau_gefs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_iau_gefs_intel +Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.822968 -The maximum resident set size (KB) = 639768 +The total amount of wall time = 134.176013 +The maximum resident set size (KB) = 641732 -Test 145 datm_cdeps_iau_gefs_intel PASS +Test 148 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_stochy_gefs_intel -Checking test 146 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_stochy_gefs_intel +Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.538905 -The maximum resident set size (KB) = 638300 +The total amount of wall time = 134.400324 +The maximum resident set size (KB) = 640108 -Test 146 datm_cdeps_stochy_gefs_intel PASS +Test 149 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_ciceC_cfsr_intel -Checking test 147 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_ciceC_cfsr_intel +Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.201293 -The maximum resident set size (KB) = 760920 +The total amount of wall time = 139.664004 +The maximum resident set size (KB) = 748848 -Test 147 datm_cdeps_ciceC_cfsr_intel PASS +Test 150 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_bulk_cfsr_intel -Checking test 148 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_bulk_cfsr_intel +Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.716254 -The maximum resident set size (KB) = 760400 +The total amount of wall time = 140.098541 +The maximum resident set size (KB) = 760320 -Test 148 datm_cdeps_bulk_cfsr_intel PASS +Test 151 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_bulk_gefs_intel -Checking test 149 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_bulk_gefs_intel +Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.952270 -The maximum resident set size (KB) = 639816 +The total amount of wall time = 131.269257 +The maximum resident set size (KB) = 637840 -Test 149 datm_cdeps_bulk_gefs_intel PASS +Test 152 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_mx025_cfsr_intel -Checking test 150 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_mx025_cfsr_intel +Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4879,15 +4879,15 @@ Checking test 150 datm_cdeps_mx025_cfsr_intel 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 = 325.121134 -The maximum resident set size (KB) = 614464 +The total amount of wall time = 320.895152 +The maximum resident set size (KB) = 687232 -Test 150 datm_cdeps_mx025_cfsr_intel PASS +Test 153 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_mx025_gefs_intel -Checking test 151 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_mx025_gefs_intel +Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4895,78 +4895,78 @@ Checking test 151 datm_cdeps_mx025_gefs_intel 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 = 326.557640 -The maximum resident set size (KB) = 597336 +The total amount of wall time = 319.738173 +The maximum resident set size (KB) = 670892 -Test 151 datm_cdeps_mx025_gefs_intel PASS +Test 154 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_multiple_files_cfsr_intel -Checking test 152 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_multiple_files_cfsr_intel +Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.556039 -The maximum resident set size (KB) = 760424 +The total amount of wall time = 139.132394 +The maximum resident set size (KB) = 761052 -Test 152 datm_cdeps_multiple_files_cfsr_intel PASS +Test 155 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_3072x1536_cfsr_intel -Checking test 153 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_3072x1536_cfsr_intel +Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 224.806130 -The maximum resident set size (KB) = 2020568 +The total amount of wall time = 223.715620 +The maximum resident set size (KB) = 2019800 -Test 153 datm_cdeps_3072x1536_cfsr_intel PASS +Test 156 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_gfs_intel -Checking test 154 datm_cdeps_gfs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_gfs_intel +Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 226.368857 -The maximum resident set size (KB) = 1950832 +The total amount of wall time = 224.526638 +The maximum resident set size (KB) = 2020888 -Test 154 datm_cdeps_gfs_intel PASS +Test 157 datm_cdeps_gfs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_debug_cfsr_intel -Checking test 155 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_debug_cfsr_intel +Checking test 158 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 297.154718 -The maximum resident set size (KB) = 748232 +The total amount of wall time = 295.283572 +The maximum resident set size (KB) = 747944 -Test 155 datm_cdeps_debug_cfsr_intel PASS +Test 158 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_control_cfsr_faster_intel -Checking test 156 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_cfsr_faster_intel +Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.891152 -The maximum resident set size (KB) = 759952 +The total amount of wall time = 140.101650 +The maximum resident set size (KB) = 761196 -Test 156 datm_cdeps_control_cfsr_faster_intel PASS +Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_gswp3_intel -Checking test 157 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_gswp3_intel +Checking test 160 datm_cdeps_lnd_gswp3_intel 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 @@ -4974,15 +4974,15 @@ Checking test 157 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 57.470842 -The maximum resident set size (KB) = 238636 +The total amount of wall time = 52.572138 +The maximum resident set size (KB) = 301168 -Test 157 datm_cdeps_lnd_gswp3_intel PASS +Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_era5_intel -Checking test 158 datm_cdeps_lnd_era5_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_era5_intel +Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4990,15 +4990,15 @@ Checking test 158 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 52.407819 -The maximum resident set size (KB) = 377616 +The total amount of wall time = 47.488110 +The maximum resident set size (KB) = 450572 -Test 158 datm_cdeps_lnd_era5_intel PASS +Test 161 datm_cdeps_lnd_era5_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/datm_cdeps_lnd_era5_rst_intel -Checking test 159 datm_cdeps_lnd_era5_rst_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_era5_rst_intel +Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5006,15 +5006,15 @@ Checking test 159 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 31.965341 -The maximum resident set size (KB) = 376088 +The total amount of wall time = 28.915730 +The maximum resident set size (KB) = 450996 -Test 159 datm_cdeps_lnd_era5_rst_intel PASS +Test 162 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_atmlnd_sbs_intel -Checking test 160 control_p8_atmlnd_sbs_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_atmlnd_sbs_intel +Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5102,15 +5102,15 @@ Checking test 160 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 377.363622 -The maximum resident set size (KB) = 1552628 +The total amount of wall time = 343.794718 +The maximum resident set size (KB) = 1628028 -Test 160 control_p8_atmlnd_sbs_intel PASS +Test 163 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_p8_atmlnd_intel -Checking test 161 control_p8_atmlnd_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_atmlnd_intel +Checking test 164 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5198,15 +5198,15 @@ Checking test 161 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 378.515773 -The maximum resident set size (KB) = 1556588 +The total amount of wall time = 338.549950 +The maximum resident set size (KB) = 1631404 -Test 161 control_p8_atmlnd_intel PASS +Test 164 control_p8_atmlnd_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_restart_p8_atmlnd_intel -Checking test 162 control_restart_p8_atmlnd_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_p8_atmlnd_intel +Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5226,15 +5226,15 @@ Checking test 162 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 192.617151 -The maximum resident set size (KB) = 771992 +The total amount of wall time = 182.205331 +The maximum resident set size (KB) = 847036 -Test 162 control_restart_p8_atmlnd_intel PASS +Test 165 control_restart_p8_atmlnd_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmwav_control_noaero_p8_intel -Checking test 163 atmwav_control_noaero_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmwav_control_noaero_p8_intel +Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5276,15 +5276,15 @@ Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 81.496164 -The maximum resident set size (KB) = 1555864 +The total amount of wall time = 80.686994 +The maximum resident set size (KB) = 1635336 -Test 163 atmwav_control_noaero_p8_intel PASS +Test 166 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/control_atmwav_intel -Checking test 164 control_atmwav_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_atmwav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_atmwav_intel +Checking test 167 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5327,15 +5327,15 @@ Checking test 164 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 77.763536 -The maximum resident set size (KB) = 561332 +The total amount of wall time = 75.790449 +The maximum resident set size (KB) = 633800 -Test 164 control_atmwav_intel PASS +Test 167 control_atmwav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_intel -Checking test 165 atmaero_control_p8_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_intel +Checking test 168 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5378,15 +5378,15 @@ Checking test 165 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 205.597610 -The maximum resident set size (KB) = 2874468 +The total amount of wall time = 202.807153 +The maximum resident set size (KB) = 2947520 -Test 165 atmaero_control_p8_intel PASS +Test 168 atmaero_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_rad_intel -Checking test 166 atmaero_control_p8_rad_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_rad_intel +Checking test 169 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5429,15 +5429,15 @@ Checking test 166 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 246.914829 -The maximum resident set size (KB) = 2923992 +The total amount of wall time = 242.950049 +The maximum resident set size (KB) = 3002804 -Test 166 atmaero_control_p8_rad_intel PASS +Test 169 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_31691/atmaero_control_p8_rad_micro_intel -Checking test 167 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_rad_micro_intel +Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5480,43 +5480,286 @@ Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.277978 -The maximum resident set size (KB) = 2936484 +The total amount of wall time = 255.668557 +The maximum resident set size (KB) = 3016548 -Test 167 atmaero_control_p8_rad_micro_intel PASS +Test 170 atmaero_control_p8_rad_micro_intel PASS FAILED TESTS: -137 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel failed in check_result -hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel 137 failed in run_test -138 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 138 failed in run_test +cpld_control_p8.v2.sfc_intel 008 failed in run_test +control_c48.v2.sfc_intel 034 failed in run_test +control_p8.v2.sfc_intel 044 failed in run_test +060 regional_wofs_intel failed in check_result +regional_wofs_intel 060 failed in run_test +073 rrfs_v1nssl_intel failed in check_result +rrfs_v1nssl_intel 073 failed in run_test +074 rrfs_v1nssl_nohailnoccn_intel failed in check_result +rrfs_v1nssl_nohailnoccn_intel 074 failed in run_test +141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result +hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 141 failed in run_test REGRESSION TEST FAILED -Thu 01 Feb 2024 10:39:24 PM MST -Elapsed time: 01h:37m:15s. Have a nice day! -Fri 02 Feb 2024 07:59:35 AM MST +Thu 08 Feb 2024 08:40:23 AM MST +Elapsed time: 01h:07m:30s. Have a nice day! +Thu 08 Feb 2024 10:15:15 AM MST Start Regression test -Testing UFSWM Hash: d2f97b9584f8d0d1bb662c46798cd64d9be30165 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 66cc55363eafc1141d99101a81f34ce05fb50b3e CDEPS-interface/CDEPS (cdeps0.6.3-61-g66cc553) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - eb87f4aec79f5374846379eacc1da7a1b79be812 CMEPS-interface/CMEPS (cmeps0.9.13-78-geb87f4ae) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8db821cb944f5a6f2586a42926434cca91fcac94 FV3 (heads/develop) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafs_mom6w_intel elapsed time 960 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_faster_intel elapsed time 1118 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 943 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2swa_intel elapsed time 1115 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/cpld_control_p8.v2.sfc_intel +Checking test 001 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 322.970294 +The maximum resident set size (KB) = 3092864 + +Test 001 cpld_control_p8.v2.sfc_intel PASS + -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_67611/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/control_c48.v2.sfc_intel +Checking test 002 control_c48.v2.sfc_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 309.003916 +The maximum resident set size (KB) = 730856 + +Test 002 control_c48.v2.sfc_intel PASS + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/control_p8.v2.sfc_intel +Checking test 003 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 136.798327 +The maximum resident set size (KB) = 1597336 + +Test 003 control_p8.v2.sfc_intel PASS + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/regional_wofs_intel +Checking test 004 regional_wofs_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 322.715670 +The maximum resident set size (KB) = 1595336 + +Test 004 regional_wofs_intel PASS + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/rrfs_v1nssl_intel +Checking test 005 rrfs_v1nssl_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 430.075443 +The maximum resident set size (KB) = 1962016 + +Test 005 rrfs_v1nssl_intel PASS + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/rrfs_v1nssl_nohailnoccn_intel +Checking test 006 rrfs_v1nssl_nohailnoccn_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 413.542868 +The maximum resident set size (KB) = 1953020 + +Test 006 rrfs_v1nssl_nohailnoccn_intel PASS + + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 007 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK Comparing atm.nest02.f003.nc .........OK @@ -5525,30 +5768,12 @@ Checking test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 305.403287 -The maximum resident set size (KB) = 626016 - -Test 001 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_67611/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 419.472716 -The maximum resident set size (KB) = 608572 +The total amount of wall time = 299.761206 +The maximum resident set size (KB) = 675980 -Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS +Test 007 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri 02 Feb 2024 08:29:24 AM MST -Elapsed time: 00h:29m:49s. Have a nice day! +Thu 08 Feb 2024 10:47:37 AM MST +Elapsed time: 00h:32m:23s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index e8dfb6926b..0e2aae60b1 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,76 +1,76 @@ -Tue Feb 6 04:52:19 UTC 2024 +Thu Feb 8 15:08:27 UTC 2024 Start Regression test -Testing UFSWM Hash: c6e88537f39a3208a60339c56873ebecd5fbeeb5 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 259 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 208 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 212 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 303 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 611 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 604 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 204 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 577 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 664 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 600 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 186 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 351 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 809 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 591 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 568 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 255 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 191 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 197 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 296 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 651 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 602 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 622 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 379 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 821 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_intel elapsed time 365 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 622 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 658 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 216 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 620 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 655 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 210 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile hafsw_faster_intel elapsed time 656 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 654 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 705 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 644 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 827 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 645 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 693 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 890 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 722 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 142 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 248 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 967 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 840 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 722 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 107 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel 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 wam_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_mixedmode_intel +Compile hafsw_intel elapsed time 649 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 690 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 804 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 642 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 718 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 929 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 133 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 251 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 955 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 234 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 670 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 126 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 832 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 915 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 312.689866 - 0: The maximum resident set size (KB) = 3157832 + 0: The total amount of wall time = 308.482528 + 0: The maximum resident set size (KB) = 3154924 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 961.102609 - 0: The maximum resident set size (KB) = 1713704 + 0: The total amount of wall time = 953.737109 + 0: The maximum resident set size (KB) = 1732348 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_gfsv17_iau_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1006.924244 - 0: The maximum resident set size (KB) = 2015180 + 0: The total amount of wall time = 988.246507 + 0: The maximum resident set size (KB) = 2013484 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.711578 - 0: The maximum resident set size (KB) = 1080404 + 0: The total amount of wall time = 444.800160 + 0: The maximum resident set size (KB) = 1105804 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_mpi_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1087.839118 - 0: The maximum resident set size (KB) = 1630124 + 0: The total amount of wall time = 1077.520300 + 0: The maximum resident set size (KB) = 1630248 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1356.339183 - 0: The maximum resident set size (KB) = 1686736 + 0: The total amount of wall time = 1329.014829 + 0: The maximum resident set size (KB) = 1674412 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.310820 - 0: The maximum resident set size (KB) = 3181608 + 0: The total amount of wall time = 342.135533 + 0: The maximum resident set size (KB) = 3143544 Test 007 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.270874 - 0: The maximum resident set size (KB) = 3188588 + 0: The total amount of wall time = 324.853600 + 0: The maximum resident set size (KB) = 3187320 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 188.037844 - 0: The maximum resident set size (KB) = 3235936 + 0: The total amount of wall time = 186.245053 + 0: The maximum resident set size (KB) = 3240480 Test 009 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.213598 - 0: The maximum resident set size (KB) = 3179200 + 0: The total amount of wall time = 343.227809 + 0: The maximum resident set size (KB) = 3168068 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.493772 - 0: The maximum resident set size (KB) = 3220576 + 0: The total amount of wall time = 190.114373 + 0: The maximum resident set size (KB) = 3255520 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.834743 - 0: The maximum resident set size (KB) = 3536996 + 0: The total amount of wall time = 348.120739 + 0: The maximum resident set size (KB) = 3502932 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.789702 - 0: The maximum resident set size (KB) = 3181048 + 0: The total amount of wall time = 350.183167 + 0: The maximum resident set size (KB) = 3135388 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.431286 - 0: The maximum resident set size (KB) = 3033688 + 0: The total amount of wall time = 287.799593 + 0: The maximum resident set size (KB) = 3005896 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.864487 - 0: The maximum resident set size (KB) = 3189928 + 0: The total amount of wall time = 324.660500 + 0: The maximum resident set size (KB) = 3201048 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 577.226191 - 0: The maximum resident set size (KB) = 3334088 + 0: The total amount of wall time = 575.633328 + 0: The maximum resident set size (KB) = 3315924 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 348.016772 - 0: The maximum resident set size (KB) = 3565708 + 0: The total amount of wall time = 343.493651 + 0: The maximum resident set size (KB) = 3604016 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 574.197907 - 0: The maximum resident set size (KB) = 4101840 + 0: The total amount of wall time = 593.432368 + 0: The maximum resident set size (KB) = 4080820 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 395.729746 - 0: The maximum resident set size (KB) = 4346864 + 0: The total amount of wall time = 377.890940 + 0: The maximum resident set size (KB) = 4322752 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_s2sa_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 315.498267 - 0: The maximum resident set size (KB) = 3116244 + 0: The total amount of wall time = 308.020513 + 0: The maximum resident set size (KB) = 3159568 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.672502 - 0: The maximum resident set size (KB) = 1731116 + 0: The total amount of wall time = 256.568370 + 0: The maximum resident set size (KB) = 1731240 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.640627 - 0: The maximum resident set size (KB) = 1705888 + 0: The total amount of wall time = 257.953383 + 0: The maximum resident set size (KB) = 1701164 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 480.917360 - 0: The maximum resident set size (KB) = 3243636 + 0: The total amount of wall time = 474.252789 + 0: The maximum resident set size (KB) = 3218088 Test 023 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.052241 - 0: The maximum resident set size (KB) = 1741928 + 0: The total amount of wall time = 321.653963 + 0: The maximum resident set size (KB) = 1743916 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 258.811177 - 0: The maximum resident set size (KB) = 1750708 + 0: The total amount of wall time = 249.364379 + 0: The maximum resident set size (KB) = 1724644 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 552.441280 - 0: The maximum resident set size (KB) = 2824236 + 0: The total amount of wall time = 553.236689 + 0: The maximum resident set size (KB) = 2838252 Test 026 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.320849 - 0: The maximum resident set size (KB) = 3178792 + 0: The total amount of wall time = 306.498740 + 0: The maximum resident set size (KB) = 3183960 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 969.151643 - 0: The maximum resident set size (KB) = 1746800 + 0: The total amount of wall time = 963.213310 + 0: The maximum resident set size (KB) = 1759224 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 460.493645 - 0: The maximum resident set size (KB) = 1169992 + 0: The total amount of wall time = 444.997803 + 0: The maximum resident set size (KB) = 1163292 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1111.045514 - 0: The maximum resident set size (KB) = 1633096 + 0: The total amount of wall time = 1105.923375 + 0: The maximum resident set size (KB) = 1651300 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1479.674565 - 0: The maximum resident set size (KB) = 1687372 + 0: The total amount of wall time = 1473.104065 + 0: The maximum resident set size (KB) = 1707776 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.209374 - 0: The maximum resident set size (KB) = 701188 + 0: The total amount of wall time = 210.709650 + 0: The maximum resident set size (KB) = 664288 Test 032 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,36 +2094,36 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.272754 - 0: The maximum resident set size (KB) = 653112 + 0: The total amount of wall time = 131.579148 + 0: The maximum resident set size (KB) = 644976 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.016706 - 0: The maximum resident set size (KB) = 631812 + 0: The total amount of wall time = 139.524667 + 0: The maximum resident set size (KB) = 631224 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.919265 - 0: The maximum resident set size (KB) = 648408 + 0: The total amount of wall time = 134.712062 + 0: The maximum resident set size (KB) = 620428 Test 035 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.846819 - 0: The maximum resident set size (KB) = 645320 + 0: The total amount of wall time = 138.357162 + 0: The maximum resident set size (KB) = 618168 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 373.070415 -0: The maximum resident set size (KB) = 873584 +0: The total amount of wall time = 370.166127 +0: The maximum resident set size (KB) = 865892 Test 037 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c48.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 371.955472 -0: The maximum resident set size (KB) = 870684 +0: The total amount of wall time = 370.304402 +0: The maximum resident set size (KB) = 859856 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.851703 - 0: The maximum resident set size (KB) = 825312 + 0: The total amount of wall time = 529.723595 + 0: The maximum resident set size (KB) = 855268 Test 039 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 529.318703 - 0: The maximum resident set size (KB) = 1276096 + 0: The total amount of wall time = 532.615923 + 0: The maximum resident set size (KB) = 1261272 Test 040 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2303,12 +2303,12 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK @@ -2324,20 +2324,20 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.327517 - 0: The maximum resident set size (KB) = 1395452 + 0: The total amount of wall time = 466.065616 + 0: The maximum resident set size (KB) = 1393596 Test 041 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.778915 - 0: The maximum resident set size (KB) = 649592 + 0: The total amount of wall time = 88.363915 + 0: The maximum resident set size (KB) = 653604 Test 042 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.986326 - 0: The maximum resident set size (KB) = 506324 + 0: The total amount of wall time = 47.884478 + 0: The maximum resident set size (KB) = 507492 Test 043 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.256999 - 0: The maximum resident set size (KB) = 656096 + 0: The total amount of wall time = 82.152981 + 0: The maximum resident set size (KB) = 653456 Test 044 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.741711 - 0: The maximum resident set size (KB) = 631704 + 0: The total amount of wall time = 135.395905 + 0: The maximum resident set size (KB) = 649312 Test 045 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.225110 - 0: The maximum resident set size (KB) = 653336 + 0: The total amount of wall time = 135.337259 + 0: The maximum resident set size (KB) = 648724 Test 046 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.804939 - 0: The maximum resident set size (KB) = 1614444 + 0: The total amount of wall time = 166.784488 + 0: The maximum resident set size (KB) = 1590784 Test 047 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.799744 - 0: The maximum resident set size (KB) = 1624956 + 0: The total amount of wall time = 165.513816 + 0: The maximum resident set size (KB) = 1621544 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_ugwpv1_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.424800 - 0: The maximum resident set size (KB) = 1613332 + 0: The total amount of wall time = 157.142625 + 0: The maximum resident set size (KB) = 1615064 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 90.718980 - 0: The maximum resident set size (KB) = 879220 + 0: The total amount of wall time = 85.907367 + 0: The maximum resident set size (KB) = 859784 Test 050 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_noqr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 162.055955 - 0: The maximum resident set size (KB) = 1609316 + 0: The total amount of wall time = 168.195148 + 0: The maximum resident set size (KB) = 1559704 Test 051 control_noqr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_restart_noqr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 91.075099 - 0: The maximum resident set size (KB) = 921044 + 0: The total amount of wall time = 84.521588 + 0: The maximum resident set size (KB) = 915724 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.581350 - 0: The maximum resident set size (KB) = 1602992 + 0: The total amount of wall time = 167.286281 + 0: The maximum resident set size (KB) = 1600912 Test 053 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.865676 - 0: The maximum resident set size (KB) = 1716924 + 0: The total amount of wall time = 151.290249 + 0: The maximum resident set size (KB) = 1702476 Test 054 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 297.723142 - 0: The maximum resident set size (KB) = 1617324 + 0: The total amount of wall time = 297.579657 + 0: The maximum resident set size (KB) = 1604256 Test 055 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.277907 - 0: The maximum resident set size (KB) = 1680104 + 0: The total amount of wall time = 217.021947 + 0: The maximum resident set size (KB) = 1677636 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.485641 - 0: The maximum resident set size (KB) = 1619728 + 0: The total amount of wall time = 164.503320 + 0: The maximum resident set size (KB) = 1622600 Test 057 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.109286 - 0: The maximum resident set size (KB) = 1609292 + 0: The total amount of wall time = 193.791505 + 0: The maximum resident set size (KB) = 1627612 Test 058 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 297.417665 - 0: The maximum resident set size (KB) = 843308 + 0: The total amount of wall time = 293.314301 + 0: The maximum resident set size (KB) = 850052 Test 059 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.279822 - 0: The maximum resident set size (KB) = 1013632 + 0: The total amount of wall time = 151.850471 + 0: The maximum resident set size (KB) = 989684 Test 060 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 317.795522 - 0: The maximum resident set size (KB) = 844416 + 0: The total amount of wall time = 312.509804 + 0: The maximum resident set size (KB) = 843328 Test 061 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 180.901597 - 0: The maximum resident set size (KB) = 840720 + 0: The total amount of wall time = 180.266513 + 0: The maximum resident set size (KB) = 845260 Test 062 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 294.563555 - 0: The maximum resident set size (KB) = 1358684 + 0: The total amount of wall time = 292.569724 + 0: The maximum resident set size (KB) = 1361036 Test 063 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 297.938377 - 0: The maximum resident set size (KB) = 847076 + 0: The total amount of wall time = 291.349207 + 0: The maximum resident set size (KB) = 845580 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.724246 - 0: The maximum resident set size (KB) = 849404 + 0: The total amount of wall time = 293.482920 + 0: The maximum resident set size (KB) = 850384 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 387.413520 - 0: The maximum resident set size (KB) = 1914732 + 0: The total amount of wall time = 383.607964 + 0: The maximum resident set size (KB) = 1917360 Test 066 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.027597 - 0: The maximum resident set size (KB) = 1101928 + 0: The total amount of wall time = 448.168093 + 0: The maximum resident set size (KB) = 1098992 Test 067 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.317078 - 0: The maximum resident set size (KB) = 1296220 + 0: The total amount of wall time = 235.931166 + 0: The maximum resident set size (KB) = 1276012 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.060651 - 0: The maximum resident set size (KB) = 994504 + 0: The total amount of wall time = 471.009899 + 0: The maximum resident set size (KB) = 1007800 Test 069 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.545362 - 0: The maximum resident set size (KB) = 1185904 + 0: The total amount of wall time = 419.434334 + 0: The maximum resident set size (KB) = 1163568 Test 070 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.128584 - 0: The maximum resident set size (KB) = 1103336 + 0: The total amount of wall time = 228.997067 + 0: The maximum resident set size (KB) = 1107008 Test 071 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.291874 - 0: The maximum resident set size (KB) = 1103112 + 0: The total amount of wall time = 445.413781 + 0: The maximum resident set size (KB) = 1102424 Test 072 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.384490 - 0: The maximum resident set size (KB) = 1032436 + 0: The total amount of wall time = 470.026565 + 0: The maximum resident set size (KB) = 1033808 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.533547 - 0: The maximum resident set size (KB) = 1133036 + 0: The total amount of wall time = 335.988955 + 0: The maximum resident set size (KB) = 1129108 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.670711 - 0: The maximum resident set size (KB) = 1026508 + 0: The total amount of wall time = 227.821286 + 0: The maximum resident set size (KB) = 1046068 Test 075 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.799082 - 0: The maximum resident set size (KB) = 1015760 + 0: The total amount of wall time = 233.629703 + 0: The maximum resident set size (KB) = 1023112 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.905351 - 0: The maximum resident set size (KB) = 1121472 + 0: The total amount of wall time = 207.014405 + 0: The maximum resident set size (KB) = 1104824 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 121.677701 - 0: The maximum resident set size (KB) = 981928 + 0: The total amount of wall time = 118.119239 + 0: The maximum resident set size (KB) = 993664 Test 078 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.647197 - 0: The maximum resident set size (KB) = 1103440 + 0: The total amount of wall time = 440.896499 + 0: The maximum resident set size (KB) = 1084516 Test 079 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 536.111309 - 0: The maximum resident set size (KB) = 1972048 + 0: The total amount of wall time = 540.362325 + 0: The maximum resident set size (KB) = 1977764 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.569439 - 0: The maximum resident set size (KB) = 2057772 + 0: The total amount of wall time = 526.826438 + 0: The maximum resident set size (KB) = 2035232 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmg_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.920407 - 0: The maximum resident set size (KB) = 743240 + 0: The total amount of wall time = 338.588878 + 0: The maximum resident set size (KB) = 740564 Test 082 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmgt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.344187 - 0: The maximum resident set size (KB) = 715688 + 0: The total amount of wall time = 332.372974 + 0: The maximum resident set size (KB) = 742316 Test 083 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.912186 - 0: The maximum resident set size (KB) = 731840 + 0: The total amount of wall time = 186.814175 + 0: The maximum resident set size (KB) = 732676 Test 084 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wam_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 115.158058 - 0: The maximum resident set size (KB) = 639808 + 0: The total amount of wall time = 111.289121 + 0: The maximum resident set size (KB) = 657500 Test 085 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.827134 - 0: The maximum resident set size (KB) = 1592336 + 0: The total amount of wall time = 144.288004 + 0: The maximum resident set size (KB) = 1620200 Test 086 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_control_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.595780 - 0: The maximum resident set size (KB) = 845480 + 0: The total amount of wall time = 270.297014 + 0: The maximum resident set size (KB) = 819524 Test 087 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_CubedSphereGrid_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.968810 - 0: The maximum resident set size (KB) = 813396 + 0: The total amount of wall time = 147.121616 + 0: The maximum resident set size (KB) = 808752 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.469411 - 0: The maximum resident set size (KB) = 808504 + 0: The total amount of wall time = 147.015880 + 0: The maximum resident set size (KB) = 812864 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.131277 - 0: The maximum resident set size (KB) = 810000 + 0: The total amount of wall time = 165.721805 + 0: The maximum resident set size (KB) = 818436 Test 090 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.569829 - 0: The maximum resident set size (KB) = 816060 + 0: The total amount of wall time = 148.378824 + 0: The maximum resident set size (KB) = 819920 Test 091 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmg_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel 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.601646 - 0: The maximum resident set size (KB) = 857368 + 0: The total amount of wall time = 226.078308 + 0: The maximum resident set size (KB) = 862512 Test 092 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_csawmgt_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.592397 - 0: The maximum resident set size (KB) = 862464 + 0: The total amount of wall time = 226.740961 + 0: The maximum resident set size (KB) = 855692 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_debug_intel Checking test 094 control_ras_debug_intel 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.188652 - 0: The maximum resident set size (KB) = 823320 + 0: The total amount of wall time = 148.562313 + 0: The maximum resident set size (KB) = 825652 Test 094 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_diag_debug_intel Checking test 095 control_diag_debug_intel 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.879425 - 0: The maximum resident set size (KB) = 871508 + 0: The total amount of wall time = 150.848000 + 0: The maximum resident set size (KB) = 867432 Test 095 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.119644 - 0: The maximum resident set size (KB) = 1641008 + 0: The total amount of wall time = 157.435773 + 0: The maximum resident set size (KB) = 1632216 Test 096 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 950.872206 - 0: The maximum resident set size (KB) = 837880 + 0: The total amount of wall time = 958.876863 + 0: The maximum resident set size (KB) = 838604 Test 097 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.511799 - 0: The maximum resident set size (KB) = 1203520 + 0: The total amount of wall time = 273.880276 + 0: The maximum resident set size (KB) = 1193948 Test 098 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.024671 - 0: The maximum resident set size (KB) = 1192784 + 0: The total amount of wall time = 268.149309 + 0: The maximum resident set size (KB) = 1201176 Test 099 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_gf_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel 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.434042 - 0: The maximum resident set size (KB) = 1201980 + 0: The total amount of wall time = 268.689059 + 0: The maximum resident set size (KB) = 1201728 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_c3_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.862330 - 0: The maximum resident set size (KB) = 1197280 + 0: The total amount of wall time = 270.013251 + 0: The maximum resident set size (KB) = 1204432 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_unified_drag_suite_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.998092 - 0: The maximum resident set size (KB) = 1194152 + 0: The total amount of wall time = 267.997141 + 0: The maximum resident set size (KB) = 1207464 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.904109 - 0: The maximum resident set size (KB) = 1286952 + 0: The total amount of wall time = 282.283111 + 0: The maximum resident set size (KB) = 1282944 Test 103 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel 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.100682 - 0: The maximum resident set size (KB) = 1202920 + 0: The total amount of wall time = 278.284862 + 0: The maximum resident set size (KB) = 1202040 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel 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.273784 - 0: The maximum resident set size (KB) = 1200132 + 0: The total amount of wall time = 277.044195 + 0: The maximum resident set size (KB) = 1201648 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.453549 - 0: The maximum resident set size (KB) = 1202876 + 0: The total amount of wall time = 275.870984 + 0: The maximum resident set size (KB) = 1193776 Test 106 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.262581 - 0: The maximum resident set size (KB) = 1195316 + 0: The total amount of wall time = 274.906707 + 0: The maximum resident set size (KB) = 1191716 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.138167 - 0: The maximum resident set size (KB) = 1169364 + 0: The total amount of wall time = 270.729682 + 0: The maximum resident set size (KB) = 1196132 Test 108 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.200050 - 0: The maximum resident set size (KB) = 1170460 + 0: The total amount of wall time = 273.185789 + 0: The maximum resident set size (KB) = 1164884 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.384906 - 0: The maximum resident set size (KB) = 1194600 + 0: The total amount of wall time = 438.612333 + 0: The maximum resident set size (KB) = 1192988 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.231105 - 0: The maximum resident set size (KB) = 1205676 + 0: The total amount of wall time = 266.136387 + 0: The maximum resident set size (KB) = 1196268 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 333.300543 - 0: The maximum resident set size (KB) = 1205276 + 0: The total amount of wall time = 330.736515 + 0: The maximum resident set size (KB) = 1196780 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.452786 - 0: The maximum resident set size (KB) = 1204552 + 0: The total amount of wall time = 277.544200 + 0: The maximum resident set size (KB) = 1206344 Test 113 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/gnv1_c96_no_nest_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,26 +4377,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.363061 - 0: The maximum resident set size (KB) = 1202496 + 0: The total amount of wall time = 476.857204 + 0: The maximum resident set size (KB) = 1196376 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 281.063486 - 0: The maximum resident set size (KB) = 540532 + 0: The total amount of wall time = 274.219321 + 0: The maximum resident set size (KB) = 480108 Test 115 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4407,14 +4407,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 222.414416 - 0: The maximum resident set size (KB) = 1148440 + 0: The total amount of wall time = 222.102732 + 0: The maximum resident set size (KB) = 1121988 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.297359 - 0: The maximum resident set size (KB) = 1057412 + 0: The total amount of wall time = 369.377136 + 0: The maximum resident set size (KB) = 1037496 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4515,14 +4515,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.385159 - 0: The maximum resident set size (KB) = 978300 + 0: The total amount of wall time = 192.103901 + 0: The maximum resident set size (KB) = 978968 Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4569,14 +4569,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.557031 - 0: The maximum resident set size (KB) = 1092688 + 0: The total amount of wall time = 348.367430 + 0: The maximum resident set size (KB) = 1078840 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.010114 - 0: The maximum resident set size (KB) = 962948 + 0: The total amount of wall time = 176.796165 + 0: The maximum resident set size (KB) = 961204 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4677,14 +4677,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.578970 - 0: The maximum resident set size (KB) = 938276 + 0: The total amount of wall time = 201.489600 + 0: The maximum resident set size (KB) = 917744 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4723,28 +4723,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.390826 - 0: The maximum resident set size (KB) = 1021864 + 0: The total amount of wall time = 276.735808 + 0: The maximum resident set size (KB) = 1036056 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.074020 - 0: The maximum resident set size (KB) = 929232 + 0: The total amount of wall time = 100.460628 + 0: The maximum resident set size (KB) = 926544 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4760,40 +4760,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 115.166359 - 0: The maximum resident set size (KB) = 1193848 + 0: The total amount of wall time = 109.867316 + 0: The maximum resident set size (KB) = 1181532 Test 124 conus13km_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 43.886088 - 0: The maximum resident set size (KB) = 1113108 + 0: The total amount of wall time = 43.454959 + 0: The maximum resident set size (KB) = 1114984 Test 125 conus13km_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 62.459930 - 0: The maximum resident set size (KB) = 1069464 + 0: The total amount of wall time = 63.485398 + 0: The maximum resident set size (KB) = 1105080 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4840,42 +4840,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.152949 - 0: The maximum resident set size (KB) = 988492 + 0: The total amount of wall time = 240.340113 + 0: The maximum resident set size (KB) = 984388 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.142453 - 0: The maximum resident set size (KB) = 1082632 + 0: The total amount of wall time = 269.622936 + 0: The maximum resident set size (KB) = 1082972 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.826989 - 0: The maximum resident set size (KB) = 1084456 + 0: The total amount of wall time = 266.892232 + 0: The maximum resident set size (KB) = 1038680 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4889,14 +4889,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 820.257343 - 0: The maximum resident set size (KB) = 1225724 + 0: The total amount of wall time = 827.271325 + 0: The maximum resident set size (KB) = 1222140 Test 130 conus13km_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4910,81 +4910,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 839.467790 - 0: The maximum resident set size (KB) = 924352 + 0: The total amount of wall time = 828.850237 + 0: The maximum resident set size (KB) = 922196 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 463.164791 - 0: The maximum resident set size (KB) = 1137640 + 0: The total amount of wall time = 466.672947 + 0: The maximum resident set size (KB) = 1149084 Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_radar_tten_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 823.705020 - 0: The maximum resident set size (KB) = 1295408 + 0: The total amount of wall time = 815.780439 + 0: The maximum resident set size (KB) = 1298932 Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel 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.983633 - 0: The maximum resident set size (KB) = 1110840 + 0: The total amount of wall time = 278.675066 + 0: The maximum resident set size (KB) = 1108464 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 274.946930 - 0: The maximum resident set size (KB) = 735240 + 0: The total amount of wall time = 268.251409 + 0: The maximum resident set size (KB) = 732788 Test 135 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 339.586507 - 0: The maximum resident set size (KB) = 1079084 + 0: The total amount of wall time = 340.348863 + 0: The maximum resident set size (KB) = 1109796 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4993,14 +4993,14 @@ Checking test 137 hafs_regional_atm_ocn_intel 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 = 396.652151 - 0: The maximum resident set size (KB) = 803092 + 0: The total amount of wall time = 389.934656 + 0: The maximum resident set size (KB) = 825280 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5009,14 +5009,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 761.168650 - 0: The maximum resident set size (KB) = 870112 + 0: The total amount of wall time = 762.025316 + 0: The maximum resident set size (KB) = 866276 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5027,14 +5027,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 869.848133 - 0: The maximum resident set size (KB) = 884056 + 0: The total amount of wall time = 873.687802 + 0: The maximum resident set size (KB) = 882912 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5051,19 +5051,19 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 301.833927 - 0: The maximum resident set size (KB) = 475168 + 0: The total amount of wall time = 305.352891 + 0: The maximum resident set size (KB) = 497824 Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 375.746544 - 0: The maximum resident set size (KB) = 519492 + 0: The total amount of wall time = 369.952929 + 0: The maximum resident set size (KB) = 520876 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_global_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5089,14 +5089,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK @@ -5116,7 +5116,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5126,14 +5126,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 146.148980 - 0: The maximum resident set size (KB) = 376456 + 0: The total amount of wall time = 146.054216 + 0: The maximum resident set size (KB) = 373172 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5160,10 +5160,10 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK @@ -5172,7 +5172,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK @@ -5196,9 +5196,9 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5215,14 +5215,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 402.858042 - 0: The maximum resident set size (KB) = 478248 + 0: The total amount of wall time = 404.238107 + 0: The maximum resident set size (KB) = 472672 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.294864 - 0: The maximum resident set size (KB) = 529108 + 0: The total amount of wall time = 204.265690 + 0: The maximum resident set size (KB) = 533760 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5260,14 +5260,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 192.946034 - 0: The maximum resident set size (KB) = 529248 + 0: The total amount of wall time = 193.102125 + 0: The maximum resident set size (KB) = 531940 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5276,28 +5276,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 233.166928 - 0: The maximum resident set size (KB) = 554092 + 0: The total amount of wall time = 234.048993 + 0: The maximum resident set size (KB) = 582600 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 61.827873 - 0: The maximum resident set size (KB) = 401428 + 0: The total amount of wall time = 60.818529 + 0: The maximum resident set size (KB) = 408652 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/gnv1_nested_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5307,18 +5307,18 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -5344,28 +5344,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 224.996533 - 0: The maximum resident set size (KB) = 796436 + 0: The total amount of wall time = 228.870970 + 0: The maximum resident set size (KB) = 776912 Test 148 gnv1_nested_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 729.356996 - 0: The maximum resident set size (KB) = 564740 + 0: The total amount of wall time = 734.083215 + 0: The maximum resident set size (KB) = 569708 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5376,14 +5376,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 491.411578 - 0: The maximum resident set size (KB) = 665688 + 0: The total amount of wall time = 490.524840 + 0: The maximum resident set size (KB) = 668696 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5394,14 +5394,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 501.807757 - 0: The maximum resident set size (KB) = 708556 + 0: The total amount of wall time = 494.740532 + 0: The maximum resident set size (KB) = 739776 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5411,14 +5411,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 368.859522 - 0: The maximum resident set size (KB) = 684884 + 0: The total amount of wall time = 363.825025 + 0: The maximum resident set size (KB) = 681788 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_docn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 153 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.739933 - 0: The maximum resident set size (KB) = 820856 + 0: The total amount of wall time = 361.132313 + 0: The maximum resident set size (KB) = 828404 Test 153 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_docn_oisst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5441,131 +5441,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.681490 - 0: The maximum resident set size (KB) = 808912 + 0: The total amount of wall time = 364.396912 + 0: The maximum resident set size (KB) = 804148 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hafs_regional_datm_cdeps_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 944.884781 - 0: The maximum resident set size (KB) = 1207804 + 0: The total amount of wall time = 963.890476 + 0: The maximum resident set size (KB) = 1200992 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.260954 - 0: The maximum resident set size (KB) = 1123108 + 0: The total amount of wall time = 150.066139 + 0: The maximum resident set size (KB) = 1117592 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.636134 - 0: The maximum resident set size (KB) = 1072556 + 0: The total amount of wall time = 87.432283 + 0: The maximum resident set size (KB) = 1072412 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.701486 - 0: The maximum resident set size (KB) = 1008576 + 0: The total amount of wall time = 143.574955 + 0: The maximum resident set size (KB) = 1016372 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_iau_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.482474 - 0: The maximum resident set size (KB) = 1024824 + 0: The total amount of wall time = 145.490575 + 0: The maximum resident set size (KB) = 1005600 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.750256 - 0: The maximum resident set size (KB) = 1001988 + 0: The total amount of wall time = 144.432653 + 0: The maximum resident set size (KB) = 1008000 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.579040 - 0: The maximum resident set size (KB) = 1114880 + 0: The total amount of wall time = 154.926239 + 0: The maximum resident set size (KB) = 1120540 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.295789 - 0: The maximum resident set size (KB) = 1137228 + 0: The total amount of wall time = 148.534464 + 0: The maximum resident set size (KB) = 1131340 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.441280 - 0: The maximum resident set size (KB) = 1018596 + 0: The total amount of wall time = 145.030058 + 0: The maximum resident set size (KB) = 998072 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5574,14 +5574,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel 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 = 361.364654 - 0: The maximum resident set size (KB) = 1048136 + 0: The total amount of wall time = 397.722987 + 0: The maximum resident set size (KB) = 1057220 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5590,77 +5590,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 392.622629 - 0: The maximum resident set size (KB) = 1031396 + 0: The total amount of wall time = 390.037106 + 0: The maximum resident set size (KB) = 1035968 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.326845 - 0: The maximum resident set size (KB) = 1118356 + 0: The total amount of wall time = 148.882192 + 0: The maximum resident set size (KB) = 1119668 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 222.785093 - 0: The maximum resident set size (KB) = 2483720 + 0: The total amount of wall time = 241.164374 + 0: The maximum resident set size (KB) = 2434792 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_gfs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 223.436782 - 0: The maximum resident set size (KB) = 2414804 + 0: The total amount of wall time = 227.810481 + 0: The maximum resident set size (KB) = 2421400 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 351.893172 - 0: The maximum resident set size (KB) = 1053468 + 0: The total amount of wall time = 353.052557 + 0: The maximum resident set size (KB) = 1051916 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.469779 - 0: The maximum resident set size (KB) = 1123436 + 0: The total amount of wall time = 147.774749 + 0: The maximum resident set size (KB) = 1125132 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5669,14 +5669,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 37.868758 - 0: The maximum resident set size (KB) = 250308 + 0: The total amount of wall time = 35.072780 + 0: The maximum resident set size (KB) = 252692 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_lnd_era5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5685,14 +5685,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 41.701940 - 0: The maximum resident set size (KB) = 318636 + 0: The total amount of wall time = 36.877766 + 0: The maximum resident set size (KB) = 318020 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_lnd_era5_rst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5701,14 +5701,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 21.791314 - 0: The maximum resident set size (KB) = 319804 + 0: The total amount of wall time = 20.974372 + 0: The maximum resident set size (KB) = 315448 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_atmlnd_sbs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5797,14 +5797,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 251.682102 - 0: The maximum resident set size (KB) = 1579980 + 0: The total amount of wall time = 242.007786 + 0: The maximum resident set size (KB) = 1586988 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_atmlnd_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5893,14 +5893,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 255.045393 - 0: The maximum resident set size (KB) = 1578228 + 0: The total amount of wall time = 239.376457 + 0: The maximum resident set size (KB) = 1587492 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_restart_p8_atmlnd_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5921,14 +5921,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 128.885079 - 0: The maximum resident set size (KB) = 893924 + 0: The total amount of wall time = 126.241198 + 0: The maximum resident set size (KB) = 890364 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmwav_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5971,14 +5971,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.865383 - 0: The maximum resident set size (KB) = 1647168 + 0: The total amount of wall time = 94.029822 + 0: The maximum resident set size (KB) = 1648372 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_atmwav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6022,14 +6022,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.629269 - 0: The maximum resident set size (KB) = 671628 + 0: The total amount of wall time = 87.313345 + 0: The maximum resident set size (KB) = 668144 Test 178 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmaero_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6073,14 +6073,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.323464 - 0: The maximum resident set size (KB) = 3011208 + 0: The total amount of wall time = 227.427292 + 0: The maximum resident set size (KB) = 3019252 Test 179 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmaero_control_p8_rad_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6124,14 +6124,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.287996 - 0: The maximum resident set size (KB) = 3070756 + 0: The total amount of wall time = 271.239249 + 0: The maximum resident set size (KB) = 3087240 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6175,14 +6175,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.330180 - 0: The maximum resident set size (KB) = 3087844 + 0: The total amount of wall time = 289.311945 + 0: The maximum resident set size (KB) = 3075060 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_atmaq_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6196,14 +6196,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1202.935754 - 0: The maximum resident set size (KB) = 4486208 + 0: The total amount of wall time = 1152.403973 + 0: The maximum resident set size (KB) = 4508272 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_c48_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48_gnu Checking test 183 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6242,14 +6242,14 @@ Checking test 183 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 691.396302 -0: The maximum resident set size (KB) = 796112 +0: The total amount of wall time = 691.562076 +0: The maximum resident set size (KB) = 792572 Test 183 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_gnu Checking test 184 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6260,14 +6260,14 @@ Checking test 184 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 237.490172 - 0: The maximum resident set size (KB) = 551756 + 0: The total amount of wall time = 231.638077 + 0: The maximum resident set size (KB) = 554164 Test 184 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_gnu Checking test 185 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6278,14 +6278,14 @@ Checking test 185 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.015708 - 0: The maximum resident set size (KB) = 561044 + 0: The total amount of wall time = 276.494916 + 0: The maximum resident set size (KB) = 560776 Test 185 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_gnu Checking test 186 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6332,14 +6332,14 @@ Checking test 186 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.349449 - 0: The maximum resident set size (KB) = 1310152 + 0: The total amount of wall time = 281.525717 + 0: The maximum resident set size (KB) = 1310400 Test 186 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_p8_ugwpv1_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_ugwpv1_gnu Checking test 187 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6386,14 +6386,14 @@ Checking test 187 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.393803 - 0: The maximum resident set size (KB) = 1314544 + 0: The total amount of wall time = 265.446160 + 0: The maximum resident set size (KB) = 1311328 Test 187 control_p8_ugwpv1_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_flake_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6404,14 +6404,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.842890 - 0: The maximum resident set size (KB) = 596416 + 0: The total amount of wall time = 339.142352 + 0: The maximum resident set size (KB) = 596000 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6458,14 +6458,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 688.850999 - 0: The maximum resident set size (KB) = 899336 + 0: The total amount of wall time = 679.992419 + 0: The maximum resident set size (KB) = 899068 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6512,14 +6512,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 698.026338 - 0: The maximum resident set size (KB) = 898828 + 0: The total amount of wall time = 687.074137 + 0: The maximum resident set size (KB) = 897532 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6566,14 +6566,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 614.618491 - 0: The maximum resident set size (KB) = 983772 + 0: The total amount of wall time = 615.952800 + 0: The maximum resident set size (KB) = 978108 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6612,14 +6612,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 350.530353 - 0: The maximum resident set size (KB) = 626172 + 0: The total amount of wall time = 348.016069 + 0: The maximum resident set size (KB) = 626008 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6666,14 +6666,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 693.052324 - 0: The maximum resident set size (KB) = 899564 + 0: The total amount of wall time = 685.363424 + 0: The maximum resident set size (KB) = 897336 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6720,14 +6720,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 698.449348 - 0: The maximum resident set size (KB) = 898776 + 0: The total amount of wall time = 691.610491 + 0: The maximum resident set size (KB) = 900452 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_sfcdiff_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6766,14 +6766,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 510.654149 - 0: The maximum resident set size (KB) = 629320 + 0: The total amount of wall time = 517.319127 + 0: The maximum resident set size (KB) = 629892 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6820,14 +6820,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.409446 - 0: The maximum resident set size (KB) = 896676 + 0: The total amount of wall time = 347.301036 + 0: The maximum resident set size (KB) = 891428 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_noqr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_noqr_gnu Checking test 197 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6874,14 +6874,14 @@ Checking test 197 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 350.648790 - 0: The maximum resident set size (KB) = 881632 + 0: The total amount of wall time = 346.166806 + 0: The maximum resident set size (KB) = 881900 Test 197 hrrr_control_noqr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6928,14 +6928,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 300.892919 - 0: The maximum resident set size (KB) = 976200 + 0: The total amount of wall time = 302.411006 + 0: The maximum resident set size (KB) = 972480 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6982,42 +6982,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.322593 - 0: The maximum resident set size (KB) = 892640 + 0: The total amount of wall time = 348.089624 + 0: The maximum resident set size (KB) = 890524 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 182.079475 - 0: The maximum resident set size (KB) = 612924 + 0: The total amount of wall time = 184.342102 + 0: The maximum resident set size (KB) = 610328 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_noqr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_noqr_gnu Checking test 201 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 180.971377 - 0: The maximum resident set size (KB) = 707068 + 0: The total amount of wall time = 181.833962 + 0: The maximum resident set size (KB) = 705356 Test 201 hrrr_control_restart_noqr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7064,224 +7064,224 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 664.148657 - 0: The maximum resident set size (KB) = 896240 + 0: The total amount of wall time = 662.629191 + 0: The maximum resident set size (KB) = 893508 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_diag_debug_gnu Checking test 203 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 86.562936 - 0: The maximum resident set size (KB) = 591800 + 0: The total amount of wall time = 82.761051 + 0: The maximum resident set size (KB) = 595716 Test 203 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_debug_gnu Checking test 204 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 449.294940 - 0: The maximum resident set size (KB) = 600880 + 0: The total amount of wall time = 446.316198 + 0: The maximum resident set size (KB) = 602772 Test 204 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_gnu Checking test 205 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.363118 - 0: The maximum resident set size (KB) = 909624 + 0: The total amount of wall time = 139.585373 + 0: The maximum resident set size (KB) = 911620 Test 205 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_gnu Checking test 206 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 137.671917 - 0: The maximum resident set size (KB) = 906588 + 0: The total amount of wall time = 136.391425 + 0: The maximum resident set size (KB) = 903900 Test 206 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_gf_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_gf_debug_gnu Checking test 207 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.849267 - 0: The maximum resident set size (KB) = 908264 + 0: The total amount of wall time = 142.635656 + 0: The maximum resident set size (KB) = 909744 Test 207 hrrr_gf_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_c3_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_c3_debug_gnu Checking test 208 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.613170 - 0: The maximum resident set size (KB) = 910688 + 0: The total amount of wall time = 143.597582 + 0: The maximum resident set size (KB) = 912580 Test 208 hrrr_c3_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_diag_debug_gnu Checking test 209 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.277419 - 0: The maximum resident set size (KB) = 996616 + 0: The total amount of wall time = 152.461141 + 0: The maximum resident set size (KB) = 995340 Test 209 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.005011 - 0: The maximum resident set size (KB) = 908000 + 0: The total amount of wall time = 219.888780 + 0: The maximum resident set size (KB) = 916056 Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_progcld_thompson_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_progcld_thompson_debug_gnu Checking test 211 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.885195 - 0: The maximum resident set size (KB) = 909212 + 0: The total amount of wall time = 141.232857 + 0: The maximum resident set size (KB) = 911112 Test 211 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rrfs_v1beta_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_debug_gnu Checking test 212 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.077065 - 0: The maximum resident set size (KB) = 906832 + 0: The total amount of wall time = 138.914445 + 0: The maximum resident set size (KB) = 908812 Test 212 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_ras_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_debug_gnu Checking test 213 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 83.438204 - 0: The maximum resident set size (KB) = 546268 + 0: The total amount of wall time = 82.240976 + 0: The maximum resident set size (KB) = 548552 Test 213 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_stochy_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_debug_gnu Checking test 214 control_stochy_debug_gnu 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.474144 - 0: The maximum resident set size (KB) = 533872 + 0: The total amount of wall time = 116.627962 + 0: The maximum resident set size (KB) = 544488 Test 214 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_debug_p8_gnu Checking test 215 control_debug_p8_gnu 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.058145 - 0: The maximum resident set size (KB) = 1292648 + 0: The total amount of wall time = 86.569495 + 0: The maximum resident set size (KB) = 1290728 Test 215 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_flake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_flake_debug_gnu Checking test 216 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.230448 - 0: The maximum resident set size (KB) = 911416 + 0: The total amount of wall time = 139.710755 + 0: The maximum resident set size (KB) = 910576 Test 216 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_clm_lake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_clm_lake_debug_gnu Checking test 217 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.156352 - 0: The maximum resident set size (KB) = 911892 + 0: The total amount of wall time = 157.281996 + 0: The maximum resident set size (KB) = 915948 Test 217 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/gnv1_c96_no_nest_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_c96_no_nest_debug_gnu Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7322,26 +7322,26 @@ Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.610206 - 0: The maximum resident set size (KB) = 918076 + 0: The total amount of wall time = 237.039888 + 0: The maximum resident set size (KB) = 915012 Test 218 gnv1_c96_no_nest_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/control_wam_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_debug_gnu Checking test 219 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 137.840917 - 0: The maximum resident set size (KB) = 244888 + 0: The total amount of wall time = 135.846867 + 0: The maximum resident set size (KB) = 241652 Test 219 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn32_phy32_gnu Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7388,14 +7388,14 @@ Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 705.011730 - 0: The maximum resident set size (KB) = 753140 + 0: The total amount of wall time = 700.413500 + 0: The maximum resident set size (KB) = 750684 Test 220 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_dyn32_phy32_gnu Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7442,14 +7442,14 @@ Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.021295 - 0: The maximum resident set size (KB) = 750852 + 0: The total amount of wall time = 358.390809 + 0: The maximum resident set size (KB) = 748732 Test 221 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_dyn32_phy32_gnu Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7496,14 +7496,14 @@ Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 636.587085 - 0: The maximum resident set size (KB) = 807596 + 0: The total amount of wall time = 621.932147 + 0: The maximum resident set size (KB) = 808344 Test 222 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_dyn32_phy32_gnu Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7550,14 +7550,14 @@ Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.834120 - 0: The maximum resident set size (KB) = 804420 + 0: The total amount of wall time = 309.290036 + 0: The maximum resident set size (KB) = 806824 Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_dyn32_phy32_gnu Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7604,14 +7604,14 @@ Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.790683 - 0: The maximum resident set size (KB) = 751900 + 0: The total amount of wall time = 355.590403 + 0: The maximum resident set size (KB) = 749944 Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_dyn32_phy32_gnu Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7650,28 +7650,28 @@ Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 521.290904 - 0: The maximum resident set size (KB) = 590816 + 0: The total amount of wall time = 523.943314 + 0: The maximum resident set size (KB) = 596404 Test 225 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_dyn32_phy32_gnu Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 189.529358 - 0: The maximum resident set size (KB) = 587056 + 0: The total amount of wall time = 185.822177 + 0: The maximum resident set size (KB) = 586884 Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_control_gnu Checking test 227 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7687,40 +7687,40 @@ Checking test 227 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 238.532584 - 0: The maximum resident set size (KB) = 900716 + 0: The total amount of wall time = 240.706840 + 0: The maximum resident set size (KB) = 902216 Test 227 conus13km_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_2threads_gnu Checking test 228 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.578011 - 0: The maximum resident set size (KB) = 938444 + 0: The total amount of wall time = 101.555596 + 0: The maximum resident set size (KB) = 935576 Test 228 conus13km_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_restart_mismatch_gnu Checking test 229 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 129.074602 - 0: The maximum resident set size (KB) = 599536 + 0: The total amount of wall time = 128.036469 + 0: The maximum resident set size (KB) = 601000 Test 229 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_gnu Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7767,42 +7767,42 @@ Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 410.218153 - 0: The maximum resident set size (KB) = 782324 + 0: The total amount of wall time = 407.333721 + 0: The maximum resident set size (KB) = 784616 Test 230 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_dyn32_phy32_gnu Checking test 231 rap_control_debug_dyn32_phy32_gnu 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.541124 - 0: The maximum resident set size (KB) = 764988 + 0: The total amount of wall time = 143.371318 + 0: The maximum resident set size (KB) = 767284 Test 231 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_dyn32_phy32_gnu Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.649872 - 0: The maximum resident set size (KB) = 761540 + 0: The total amount of wall time = 139.473434 + 0: The maximum resident set size (KB) = 761488 Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_gnu Checking test 233 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7816,14 +7816,14 @@ Checking test 233 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 417.785990 - 0: The maximum resident set size (KB) = 920404 + 0: The total amount of wall time = 413.155023 + 0: The maximum resident set size (KB) = 918220 Test 233 conus13km_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_qr_gnu Checking test 234 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7837,56 +7837,56 @@ Checking test 234 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 412.979708 - 0: The maximum resident set size (KB) = 638616 + 0: The total amount of wall time = 416.594942 + 0: The maximum resident set size (KB) = 634240 Test 234 conus13km_debug_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_debug_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_2threads_gnu Checking test 235 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 255.408230 - 0: The maximum resident set size (KB) = 954428 + 0: The total amount of wall time = 252.487438 + 0: The maximum resident set size (KB) = 954404 Test 235 conus13km_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/conus13km_radar_tten_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_radar_tten_debug_gnu Checking test 236 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 422.593734 - 0: The maximum resident set size (KB) = 986624 + 0: The total amount of wall time = 421.009362 + 0: The maximum resident set size (KB) = 985376 Test 236 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_debug_gnu Checking test 237 rap_control_dyn64_phy32_debug_gnu 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.939204 - 0: The maximum resident set size (KB) = 790236 + 0: The total amount of wall time = 148.924821 + 0: The maximum resident set size (KB) = 789568 Test 237 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_gnu Checking test 238 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7951,14 +7951,14 @@ Checking test 238 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 611.692257 - 0: The maximum resident set size (KB) = 1505312 + 0: The total amount of wall time = 660.268049 + 0: The maximum resident set size (KB) = 1512120 Test 238 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_nowave_noaero_p8_gnu Checking test 239 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8020,14 +8020,14 @@ Checking test 239 cpld_control_nowave_noaero_p8_gnu results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 379.772928 - 0: The maximum resident set size (KB) = 1403828 + 0: The total amount of wall time = 393.478932 + 0: The maximum resident set size (KB) = 1399772 Test 239 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_p8_gnu Checking test 240 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8080,14 +8080,14 @@ Checking test 240 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.062459 - 0: The maximum resident set size (KB) = 1520316 + 0: The total amount of wall time = 361.808593 + 0: The maximum resident set size (KB) = 1515152 Test 240 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_control_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_pdlib_p8_gnu Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8151,14 +8151,14 @@ Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1312.695629 - 0: The maximum resident set size (KB) = 1379604 + 0: The total amount of wall time = 1317.468188 + 0: The maximum resident set size (KB) = 1374484 Test 241 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_pdlib_p8_gnu Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8210,25 +8210,25 @@ Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 761.508502 - 0: The maximum resident set size (KB) = 1385960 + 0: The total amount of wall time = 752.117199 + 0: The maximum resident set size (KB) = 1384624 Test 242 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_130019/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_gnu Checking test 243 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 166.238576 - 0: The maximum resident set size (KB) = 697040 + 0: The total amount of wall time = 188.120099 + 0: The maximum resident set size (KB) = 695308 Test 243 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 6 08:14:18 UTC 2024 -Elapsed time: 03h:22m:00s. Have a nice day! +Thu Feb 8 18:48:07 UTC 2024 +Elapsed time: 03h:39m:40s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 3ac309a883..9689358641 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Tue Feb 6 08:30:31 AM CST 2024 +Thu Feb 8 08:54:53 AM CST 2024 Start Regression test -Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 431 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 196 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 426 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 202 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 223 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 581 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 590 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 599 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 564 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 502 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 525 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 530 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 406 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 210 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 275 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 830 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 338 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 578 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 602 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 177 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 588 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 514 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 379 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 487 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 937 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 473 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 666 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1008 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 660 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 707 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 1006 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 665 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 245 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 617 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 620 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 263 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 908 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 121 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 435 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 157 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 415 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 210 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 229 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 569 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 645 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 559 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 470 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 578 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 554 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 427 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 965 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 318 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 44 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 564 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 573 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 174 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 648 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 535 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 554 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 542 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 997 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 529 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 306 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1205 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 689 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 333 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 930 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 834 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 650 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 681 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 231 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 1013 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 441.482677 - 0: The maximum resident set size (KB) = 1891928 + 0: The total amount of wall time = 436.366248 + 0: The maximum resident set size (KB) = 1901836 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 792.831191 - 0: The maximum resident set size (KB) = 1786132 + 0: The total amount of wall time = 787.938449 + 0: The maximum resident set size (KB) = 1775384 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 830.320864 - 0: The maximum resident set size (KB) = 2180440 + 0: The total amount of wall time = 832.336615 + 0: The maximum resident set size (KB) = 2166292 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 374.010643 - 0: The maximum resident set size (KB) = 1185100 + 0: The total amount of wall time = 375.289632 + 0: The maximum resident set size (KB) = 1174688 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 888.402698 - 0: The maximum resident set size (KB) = 1689540 + 0: The total amount of wall time = 897.161599 + 0: The maximum resident set size (KB) = 1691196 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1208.714592 - 0: The maximum resident set size (KB) = 1720032 + 0: The total amount of wall time = 1210.531621 + 0: The maximum resident set size (KB) = 1722732 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.435518 - 0: The maximum resident set size (KB) = 2073616 + 0: The total amount of wall time = 437.234685 + 0: The maximum resident set size (KB) = 2084012 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.937361 - 0: The maximum resident set size (KB) = 2072816 + 0: The total amount of wall time = 436.592919 + 0: The maximum resident set size (KB) = 2090316 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.660208 - 0: The maximum resident set size (KB) = 1960240 + 0: The total amount of wall time = 243.954794 + 0: The maximum resident set size (KB) = 1960644 Test 009 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.710707 - 0: The maximum resident set size (KB) = 1977552 + 0: The total amount of wall time = 445.978276 + 0: The maximum resident set size (KB) = 1998264 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 244.441506 - 0: The maximum resident set size (KB) = 1737352 + 0: The total amount of wall time = 251.910684 + 0: The maximum resident set size (KB) = 1735320 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 514.291930 - 0: The maximum resident set size (KB) = 2505836 + 0: The total amount of wall time = 524.472029 + 0: The maximum resident set size (KB) = 2488092 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.944343 - 0: The maximum resident set size (KB) = 2078328 + 0: The total amount of wall time = 436.193413 + 0: The maximum resident set size (KB) = 2067780 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 371.251025 - 0: The maximum resident set size (KB) = 1900544 + 0: The total amount of wall time = 373.842400 + 0: The maximum resident set size (KB) = 1902392 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.091362 - 0: The maximum resident set size (KB) = 2062772 + 0: The total amount of wall time = 443.646170 + 0: The maximum resident set size (KB) = 2061136 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 945.479405 - 0: The maximum resident set size (KB) = 2986308 + 0: The total amount of wall time = 907.558398 + 0: The maximum resident set size (KB) = 2809588 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 326.659910 - 0: The maximum resident set size (KB) = 2922876 + 0: The total amount of wall time = 335.772025 + 0: The maximum resident set size (KB) = 2911472 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 491.008640 - 0: The maximum resident set size (KB) = 3703768 + 0: The total amount of wall time = 486.923021 + 0: The maximum resident set size (KB) = 3621688 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.154030 - 0: The maximum resident set size (KB) = 3615896 + 0: The total amount of wall time = 285.300940 + 0: The maximum resident set size (KB) = 3612240 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 282.137646 - 0: The maximum resident set size (KB) = 2025732 + 0: The total amount of wall time = 282.556033 + 0: The maximum resident set size (KB) = 2032316 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 416.872465 - 0: The maximum resident set size (KB) = 1772208 + 0: The total amount of wall time = 407.455823 + 0: The maximum resident set size (KB) = 1781028 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 226.234669 - 0: The maximum resident set size (KB) = 1822800 + 0: The total amount of wall time = 223.734946 + 0: The maximum resident set size (KB) = 1821168 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.289820 - 0: The maximum resident set size (KB) = 2060716 + 0: The total amount of wall time = 398.955192 + 0: The maximum resident set size (KB) = 2050072 Test 023 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 271.037463 - 0: The maximum resident set size (KB) = 1784072 + 0: The total amount of wall time = 270.380361 + 0: The maximum resident set size (KB) = 1798552 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 224.176068 - 0: The maximum resident set size (KB) = 1810536 + 0: The total amount of wall time = 227.647185 + 0: The maximum resident set size (KB) = 1828948 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 427.757100 - 0: The maximum resident set size (KB) = 2833116 + 0: The total amount of wall time = 425.976897 + 0: The maximum resident set size (KB) = 2840244 Test 026 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 426.105916 - 0: The maximum resident set size (KB) = 2084992 + 0: The total amount of wall time = 417.714944 + 0: The maximum resident set size (KB) = 2076248 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 820.572661 - 0: The maximum resident set size (KB) = 1802636 + 0: The total amount of wall time = 811.144177 + 0: The maximum resident set size (KB) = 1812128 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 389.935492 - 0: The maximum resident set size (KB) = 1289780 + 0: The total amount of wall time = 399.291103 + 0: The maximum resident set size (KB) = 1284096 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 917.382101 - 0: The maximum resident set size (KB) = 1745184 + 0: The total amount of wall time = 905.018806 + 0: The maximum resident set size (KB) = 1733472 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1288.160932 - 0: The maximum resident set size (KB) = 1782884 + 0: The total amount of wall time = 1282.544739 + 0: The maximum resident set size (KB) = 1773396 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_flake_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 161.567182 - 0: The maximum resident set size (KB) = 712484 + 0: The total amount of wall time = 158.740006 + 0: The maximum resident set size (KB) = 714328 Test 032 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,14 +2094,14 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 113.069754 - 0: The maximum resident set size (KB) = 666596 + 0: The total amount of wall time = 112.663494 + 0: The maximum resident set size (KB) = 660636 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.785833 - 0: The maximum resident set size (KB) = 670292 + 0: The total amount of wall time = 118.253456 + 0: The maximum resident set size (KB) = 666840 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_latlon_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,32 +2134,32 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 115.923851 - 0: The maximum resident set size (KB) = 660460 + 0: The total amount of wall time = 113.971404 + 0: The maximum resident set size (KB) = 660876 Test 035 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.864397 - 0: The maximum resident set size (KB) = 663316 + 0: The total amount of wall time = 117.128644 + 0: The maximum resident set size (KB) = 661844 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 338.475101 -0: The maximum resident set size (KB) = 857028 +0: The total amount of wall time = 338.226235 +0: The maximum resident set size (KB) = 865908 Test 037 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c48.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 338.180069 -0: The maximum resident set size (KB) = 867880 +0: The total amount of wall time = 338.300398 +0: The maximum resident set size (KB) = 857576 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c192_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 454.112541 - 0: The maximum resident set size (KB) = 957888 + 0: The total amount of wall time = 458.571667 + 0: The maximum resident set size (KB) = 963872 Test 039 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c384_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 473.099229 - 0: The maximum resident set size (KB) = 1448576 + 0: The total amount of wall time = 468.156698 + 0: The maximum resident set size (KB) = 1448852 Test 040 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c384gdas_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.040747 - 0: The maximum resident set size (KB) = 1528124 + 0: The total amount of wall time = 411.882142 + 0: The maximum resident set size (KB) = 1513644 Test 041 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 74.866794 - 0: The maximum resident set size (KB) = 667508 + 0: The total amount of wall time = 74.807848 + 0: The maximum resident set size (KB) = 670720 Test 042 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 43.188795 - 0: The maximum resident set size (KB) = 540164 + 0: The total amount of wall time = 42.808856 + 0: The maximum resident set size (KB) = 554276 Test 043 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 72.100330 - 0: The maximum resident set size (KB) = 662044 + 0: The total amount of wall time = 71.337975 + 0: The maximum resident set size (KB) = 665436 Test 044 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_iovr4_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 115.913702 - 0: The maximum resident set size (KB) = 661864 + 0: The total amount of wall time = 113.841812 + 0: The maximum resident set size (KB) = 677604 Test 045 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_iovr5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 115.519252 - 0: The maximum resident set size (KB) = 660180 + 0: The total amount of wall time = 114.861092 + 0: The maximum resident set size (KB) = 664624 Test 046 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.275122 - 0: The maximum resident set size (KB) = 1636392 + 0: The total amount of wall time = 143.626335 + 0: The maximum resident set size (KB) = 1635576 Test 047 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.252521 - 0: The maximum resident set size (KB) = 1645532 + 0: The total amount of wall time = 142.016756 + 0: The maximum resident set size (KB) = 1635284 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_ugwpv1_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 138.909340 - 0: The maximum resident set size (KB) = 1640728 + 0: The total amount of wall time = 139.009402 + 0: The maximum resident set size (KB) = 1632160 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 76.290599 - 0: The maximum resident set size (KB) = 929860 + 0: The total amount of wall time = 77.982251 + 0: The maximum resident set size (KB) = 911376 Test 050 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 139.451430 - 0: The maximum resident set size (KB) = 1627100 + 0: The total amount of wall time = 140.976242 + 0: The maximum resident set size (KB) = 1628088 Test 051 control_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_restart_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 74.110686 - 0: The maximum resident set size (KB) = 992096 + 0: The total amount of wall time = 74.461731 + 0: The maximum resident set size (KB) = 986160 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 145.651561 - 0: The maximum resident set size (KB) = 1619560 + 0: The total amount of wall time = 147.431966 + 0: The maximum resident set size (KB) = 1632204 Test 053 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.882928 - 0: The maximum resident set size (KB) = 1731492 + 0: The total amount of wall time = 129.752884 + 0: The maximum resident set size (KB) = 1725764 Test 054 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 259.301005 - 0: The maximum resident set size (KB) = 1637596 + 0: The total amount of wall time = 251.738828 + 0: The maximum resident set size (KB) = 1638248 Test 055 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.925939 - 0: The maximum resident set size (KB) = 1709260 + 0: The total amount of wall time = 196.126002 + 0: The maximum resident set size (KB) = 1716156 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_mynn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 142.445209 - 0: The maximum resident set size (KB) = 1642036 + 0: The total amount of wall time = 142.269808 + 0: The maximum resident set size (KB) = 1648204 Test 057 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/merra2_thompson_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.775486 - 0: The maximum resident set size (KB) = 1659296 + 0: The total amount of wall time = 166.189147 + 0: The maximum resident set size (KB) = 1661536 Test 058 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.318842 - 0: The maximum resident set size (KB) = 958992 + 0: The total amount of wall time = 259.617884 + 0: The maximum resident set size (KB) = 960848 Test 059 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 140.081234 - 0: The maximum resident set size (KB) = 1109916 + 0: The total amount of wall time = 138.262359 + 0: The maximum resident set size (KB) = 1102196 Test 060 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.140335 - 0: The maximum resident set size (KB) = 947312 + 0: The total amount of wall time = 273.621278 + 0: The maximum resident set size (KB) = 948664 Test 061 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 162.270693 - 0: The maximum resident set size (KB) = 922212 + 0: The total amount of wall time = 157.975186 + 0: The maximum resident set size (KB) = 922144 Test 062 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_noquilt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 251.639497 - 0: The maximum resident set size (KB) = 1490716 + 0: The total amount of wall time = 249.880086 + 0: The maximum resident set size (KB) = 1493404 Test 063 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 256.147942 - 0: The maximum resident set size (KB) = 959484 + 0: The total amount of wall time = 257.293060 + 0: The maximum resident set size (KB) = 962560 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 261.879716 - 0: The maximum resident set size (KB) = 964364 + 0: The total amount of wall time = 262.760438 + 0: The maximum resident set size (KB) = 958960 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_wofs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.967067 - 0: The maximum resident set size (KB) = 2065984 + 0: The total amount of wall time = 320.776860 + 0: The maximum resident set size (KB) = 2083864 Test 066 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.127586 - 0: The maximum resident set size (KB) = 1202840 + 0: The total amount of wall time = 380.458360 + 0: The maximum resident set size (KB) = 1211820 Test 067 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 196.454789 - 0: The maximum resident set size (KB) = 1399776 + 0: The total amount of wall time = 197.068588 + 0: The maximum resident set size (KB) = 1455196 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.591409 - 0: The maximum resident set size (KB) = 1124732 + 0: The total amount of wall time = 394.696320 + 0: The maximum resident set size (KB) = 1139964 Test 069 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.300610 - 0: The maximum resident set size (KB) = 1362252 + 0: The total amount of wall time = 355.231732 + 0: The maximum resident set size (KB) = 1382700 Test 070 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.713075 - 0: The maximum resident set size (KB) = 1145100 + 0: The total amount of wall time = 194.406129 + 0: The maximum resident set size (KB) = 1133396 Test 071 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.965513 - 0: The maximum resident set size (KB) = 1198436 + 0: The total amount of wall time = 378.008082 + 0: The maximum resident set size (KB) = 1203108 Test 072 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.281158 - 0: The maximum resident set size (KB) = 1139532 + 0: The total amount of wall time = 405.474771 + 0: The maximum resident set size (KB) = 1151496 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.257235 - 0: The maximum resident set size (KB) = 1187496 + 0: The total amount of wall time = 288.276229 + 0: The maximum resident set size (KB) = 1189612 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.034899 - 0: The maximum resident set size (KB) = 1094640 + 0: The total amount of wall time = 193.573133 + 0: The maximum resident set size (KB) = 1088884 Test 075 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.296303 - 0: The maximum resident set size (KB) = 1041040 + 0: The total amount of wall time = 196.630749 + 0: The maximum resident set size (KB) = 1043232 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.362251 - 0: The maximum resident set size (KB) = 1124748 + 0: The total amount of wall time = 175.815686 + 0: The maximum resident set size (KB) = 1120352 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.028543 - 0: The maximum resident set size (KB) = 1030804 + 0: The total amount of wall time = 102.286500 + 0: The maximum resident set size (KB) = 1023844 Test 078 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.552421 - 0: The maximum resident set size (KB) = 1198212 + 0: The total amount of wall time = 364.812079 + 0: The maximum resident set size (KB) = 1183964 Test 079 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 447.407536 - 0: The maximum resident set size (KB) = 2003844 + 0: The total amount of wall time = 448.827158 + 0: The maximum resident set size (KB) = 2003984 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 434.591092 - 0: The maximum resident set size (KB) = 2169584 + 0: The total amount of wall time = 435.136295 + 0: The maximum resident set size (KB) = 2176944 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmg_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 294.899811 - 0: The maximum resident set size (KB) = 837704 + 0: The total amount of wall time = 291.198798 + 0: The maximum resident set size (KB) = 826492 Test 082 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmgt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.833160 - 0: The maximum resident set size (KB) = 828636 + 0: The total amount of wall time = 292.069197 + 0: The maximum resident set size (KB) = 825388 Test 083 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 163.180056 - 0: The maximum resident set size (KB) = 800228 + 0: The total amount of wall time = 158.804701 + 0: The maximum resident set size (KB) = 808336 Test 084 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_wam_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 102.070944 - 0: The maximum resident set size (KB) = 785772 + 0: The total amount of wall time = 99.734054 + 0: The maximum resident set size (KB) = 783524 Test 085 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.694584 - 0: The maximum resident set size (KB) = 1645020 + 0: The total amount of wall time = 123.368677 + 0: The maximum resident set size (KB) = 1643036 Test 086 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_control_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 234.685003 - 0: The maximum resident set size (KB) = 956736 + 0: The total amount of wall time = 233.059931 + 0: The maximum resident set size (KB) = 955896 Test 087 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 126.508893 - 0: The maximum resident set size (KB) = 820808 + 0: The total amount of wall time = 122.974509 + 0: The maximum resident set size (KB) = 826360 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 126.609412 - 0: The maximum resident set size (KB) = 822596 + 0: The total amount of wall time = 122.227349 + 0: The maximum resident set size (KB) = 825152 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.134077 - 0: The maximum resident set size (KB) = 839584 + 0: The total amount of wall time = 140.494289 + 0: The maximum resident set size (KB) = 832672 Test 090 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.257185 - 0: The maximum resident set size (KB) = 827112 + 0: The total amount of wall time = 124.904222 + 0: The maximum resident set size (KB) = 826896 Test 091 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.855865 - 0: The maximum resident set size (KB) = 868532 + 0: The total amount of wall time = 191.372957 + 0: The maximum resident set size (KB) = 885660 Test 092 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.578136 - 0: The maximum resident set size (KB) = 868144 + 0: The total amount of wall time = 188.703729 + 0: The maximum resident set size (KB) = 882988 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.097454 - 0: The maximum resident set size (KB) = 833296 + 0: The total amount of wall time = 126.645223 + 0: The maximum resident set size (KB) = 838264 Test 094 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.413802 - 0: The maximum resident set size (KB) = 884928 + 0: The total amount of wall time = 126.389523 + 0: The maximum resident set size (KB) = 878748 Test 095 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 131.099961 - 0: The maximum resident set size (KB) = 1667780 + 0: The total amount of wall time = 130.934503 + 0: The maximum resident set size (KB) = 1664372 Test 096 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 849.335570 - 0: The maximum resident set size (KB) = 887132 + 0: The total amount of wall time = 835.216303 + 0: The maximum resident set size (KB) = 897244 Test 097 regional_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.925512 - 0: The maximum resident set size (KB) = 1220636 + 0: The total amount of wall time = 229.649865 + 0: The maximum resident set size (KB) = 1224212 Test 098 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.644804 - 0: The maximum resident set size (KB) = 1209856 + 0: The total amount of wall time = 226.990785 + 0: The maximum resident set size (KB) = 1223328 Test 099 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_gf_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.078701 - 0: The maximum resident set size (KB) = 1222088 + 0: The total amount of wall time = 229.918677 + 0: The maximum resident set size (KB) = 1217928 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_c3_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.524699 - 0: The maximum resident set size (KB) = 1231160 + 0: The total amount of wall time = 229.408920 + 0: The maximum resident set size (KB) = 1215212 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.696494 - 0: The maximum resident set size (KB) = 1219844 + 0: The total amount of wall time = 230.516705 + 0: The maximum resident set size (KB) = 1227900 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.018327 - 0: The maximum resident set size (KB) = 1306328 + 0: The total amount of wall time = 240.661738 + 0: The maximum resident set size (KB) = 1297872 Test 103 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.378794 - 0: The maximum resident set size (KB) = 1210648 + 0: The total amount of wall time = 234.396613 + 0: The maximum resident set size (KB) = 1213032 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.818603 - 0: The maximum resident set size (KB) = 1221652 + 0: The total amount of wall time = 236.306475 + 0: The maximum resident set size (KB) = 1221512 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel 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.368314 - 0: The maximum resident set size (KB) = 1219584 + 0: The total amount of wall time = 231.975775 + 0: The maximum resident set size (KB) = 1220888 Test 106 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.938137 - 0: The maximum resident set size (KB) = 1232600 + 0: The total amount of wall time = 231.272994 + 0: The maximum resident set size (KB) = 1212348 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_noah_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.602039 - 0: The maximum resident set size (KB) = 1220944 + 0: The total amount of wall time = 226.143189 + 0: The maximum resident set size (KB) = 1223736 Test 108 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.282478 - 0: The maximum resident set size (KB) = 1217052 + 0: The total amount of wall time = 228.930416 + 0: The maximum resident set size (KB) = 1218484 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 380.897378 - 0: The maximum resident set size (KB) = 1214424 + 0: The total amount of wall time = 378.987128 + 0: The maximum resident set size (KB) = 1223688 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.633835 - 0: The maximum resident set size (KB) = 1216296 + 0: The total amount of wall time = 225.286377 + 0: The maximum resident set size (KB) = 1216848 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel 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.878076 - 0: The maximum resident set size (KB) = 1219808 + 0: The total amount of wall time = 280.092482 + 0: The maximum resident set size (KB) = 1218444 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_flake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.490611 - 0: The maximum resident set size (KB) = 1226520 + 0: The total amount of wall time = 228.996325 + 0: The maximum resident set size (KB) = 1223256 Test 113 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/gnv1_c96_no_nest_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,14 +4377,14 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.994317 - 0: The maximum resident set size (KB) = 1213440 + 0: The total amount of wall time = 398.257121 + 0: The maximum resident set size (KB) = 1221240 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4395,14 +4395,14 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 184.332430 - 0: The maximum resident set size (KB) = 1271408 + 0: The total amount of wall time = 185.481359 + 0: The maximum resident set size (KB) = 1317044 Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn32_phy32_intel Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4449,14 +4449,14 @@ Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 314.521427 - 0: The maximum resident set size (KB) = 1146052 + 0: The total amount of wall time = 315.819038 + 0: The maximum resident set size (KB) = 1140000 Test 116 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_dyn32_phy32_intel Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4503,14 +4503,14 @@ Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.912763 - 0: The maximum resident set size (KB) = 1027292 + 0: The total amount of wall time = 165.097371 + 0: The maximum resident set size (KB) = 1031388 Test 117 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_dyn32_phy32_intel Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4557,14 +4557,14 @@ Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 299.549024 - 0: The maximum resident set size (KB) = 1284332 + 0: The total amount of wall time = 296.302765 + 0: The maximum resident set size (KB) = 1278988 Test 118 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_dyn32_phy32_intel Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4611,14 +4611,14 @@ Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.711198 - 0: The maximum resident set size (KB) = 1042136 + 0: The total amount of wall time = 149.898641 + 0: The maximum resident set size (KB) = 1039424 Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_dyn32_phy32_intel Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4665,14 +4665,14 @@ Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.588233 - 0: The maximum resident set size (KB) = 995788 + 0: The total amount of wall time = 171.855473 + 0: The maximum resident set size (KB) = 980400 Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_dyn32_phy32_intel Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4711,28 +4711,28 @@ Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.459189 - 0: The maximum resident set size (KB) = 1090540 + 0: The total amount of wall time = 235.498563 + 0: The maximum resident set size (KB) = 1110704 Test 121 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_dyn32_phy32_intel Checking test 122 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.574424 - 0: The maximum resident set size (KB) = 957976 + 0: The total amount of wall time = 86.072226 + 0: The maximum resident set size (KB) = 969836 Test 122 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_control_intel Checking test 123 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4748,40 +4748,40 @@ Checking test 123 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 95.468840 - 0: The maximum resident set size (KB) = 1302004 + 0: The total amount of wall time = 93.580959 + 0: The maximum resident set size (KB) = 1292348 Test 123 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_2threads_intel Checking test 124 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 37.221597 - 0: The maximum resident set size (KB) = 1212812 + 0: The total amount of wall time = 36.775532 + 0: The maximum resident set size (KB) = 1203980 Test 124 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_restart_mismatch_intel Checking test 125 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 54.804950 - 0: The maximum resident set size (KB) = 1152808 + 0: The total amount of wall time = 53.846253 + 0: The maximum resident set size (KB) = 1163568 Test 125 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_intel Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4828,42 +4828,42 @@ Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.693003 - 0: The maximum resident set size (KB) = 1081156 + 0: The total amount of wall time = 213.253160 + 0: The maximum resident set size (KB) = 1094228 Test 126 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_dyn32_phy32_intel Checking test 127 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.375493 - 0: The maximum resident set size (KB) = 1095408 + 0: The total amount of wall time = 223.235801 + 0: The maximum resident set size (KB) = 1091304 Test 127 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_dyn32_phy32_intel Checking test 128 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.863300 - 0: The maximum resident set size (KB) = 1096420 + 0: The total amount of wall time = 218.720509 + 0: The maximum resident set size (KB) = 1095532 Test 128 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_intel Checking test 129 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 129 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 700.244525 - 0: The maximum resident set size (KB) = 1331776 + 0: The total amount of wall time = 693.215633 + 0: The maximum resident set size (KB) = 1327236 Test 129 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_qr_intel Checking test 130 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4898,81 +4898,81 @@ Checking test 130 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 708.387168 - 0: The maximum resident set size (KB) = 981376 + 0: The total amount of wall time = 705.235205 + 0: The maximum resident set size (KB) = 980808 Test 130 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_2threads_intel Checking test 131 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 394.298957 - 0: The maximum resident set size (KB) = 1239492 + 0: The total amount of wall time = 394.387278 + 0: The maximum resident set size (KB) = 1245656 Test 131 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_radar_tten_debug_intel Checking test 132 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 692.167172 - 0: The maximum resident set size (KB) = 1393512 + 0: The total amount of wall time = 694.468476 + 0: The maximum resident set size (KB) = 1402700 Test 132 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_debug_intel Checking test 133 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.322269 - 0: The maximum resident set size (KB) = 1154624 + 0: The total amount of wall time = 228.896310 + 0: The maximum resident set size (KB) = 1147828 Test 133 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_intel Checking test 134 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 311.849257 - 0: The maximum resident set size (KB) = 877224 + 0: The total amount of wall time = 309.441222 + 0: The maximum resident set size (KB) = 873744 Test 134 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_thompson_gfdlsf_intel Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 294.375147 - 0: The maximum resident set size (KB) = 1274880 + 0: The total amount of wall time = 281.109796 + 0: The maximum resident set size (KB) = 1268792 Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_ocn_intel Checking test 136 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4981,14 +4981,14 @@ Checking test 136 hafs_regional_atm_ocn_intel 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 = 372.196704 - 0: The maximum resident set size (KB) = 940400 + 0: The total amount of wall time = 367.738793 + 0: The maximum resident set size (KB) = 950108 Test 136 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_wav_intel Checking test 137 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4997,14 +4997,14 @@ Checking test 137 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 815.189509 - 0: The maximum resident set size (KB) = 984832 + 0: The total amount of wall time = 809.843023 + 0: The maximum resident set size (KB) = 992116 Test 137 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_ocn_wav_intel Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,14 +5015,14 @@ Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 884.528063 - 0: The maximum resident set size (KB) = 1008036 + 0: The total amount of wall time = 900.907650 + 0: The maximum resident set size (KB) = 988800 Test 138 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_1nest_atm_intel Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5037,21 +5037,21 @@ Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 315.200676 - 0: The maximum resident set size (KB) = 601744 + 0: The total amount of wall time = 307.866771 + 0: The maximum resident set size (KB) = 608284 Test 139 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_telescopic_2nests_atm_intel Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5060,14 +5060,14 @@ Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 404.777996 - 0: The maximum resident set size (KB) = 618388 + 0: The total amount of wall time = 394.714449 + 0: The maximum resident set size (KB) = 614280 Test 140 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_1nest_atm_intel Checking test 141 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5097,7 +5097,7 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK @@ -5105,7 +5105,7 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK @@ -5114,14 +5114,14 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 157.960120 - 0: The maximum resident set size (KB) = 436740 + 0: The total amount of wall time = 153.145842 + 0: The maximum resident set size (KB) = 433352 Test 141 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_multiple_4nests_atm_intel Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5148,7 +5148,7 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -5161,21 +5161,21 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK @@ -5203,14 +5203,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 450.800048 - 0: The maximum resident set size (KB) = 546180 + 0: The total amount of wall time = 438.036509 + 0: The maximum resident set size (KB) = 579408 Test 142 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_specified_moving_1nest_atm_intel Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 225.951711 - 0: The maximum resident set size (KB) = 615620 + 0: The total amount of wall time = 219.583928 + 0: The maximum resident set size (KB) = 620348 Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_intel Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5239,23 +5239,23 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 211.052065 - 0: The maximum resident set size (KB) = 612152 + 0: The total amount of wall time = 207.701328 + 0: The maximum resident set size (KB) = 621436 Test 144 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5264,28 +5264,28 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 280.914220 - 0: The maximum resident set size (KB) = 682572 + 0: The total amount of wall time = 277.851381 + 0: The maximum resident set size (KB) = 683284 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel 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 = 73.736025 - 0: The maximum resident set size (KB) = 449564 + 0: The total amount of wall time = 70.281756 + 0: The maximum resident set size (KB) = 446072 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/gnv1_nested_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_nested_intel Checking test 147 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......NOT OK Comparing sfcf006.nc ............ALT CHECK......NOT OK @@ -5332,28 +5332,28 @@ Checking test 147 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - 0: The total amount of wall time = 240.181047 - 0: The maximum resident set size (KB) = 897112 + 0: The total amount of wall time = 235.900667 + 0: The maximum resident set size (KB) = 903724 Test 147 gnv1_nested_intel FAIL Tries: 2 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 664.552696 - 0: The maximum resident set size (KB) = 690108 + 0: The total amount of wall time = 657.246141 + 0: The maximum resident set size (KB) = 629784 Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5364,14 +5364,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 1010.616918 - 0: The maximum resident set size (KB) = 763580 + 0: The total amount of wall time = 978.630017 + 0: The maximum resident set size (KB) = 746756 Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5382,14 +5382,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 966.046533 - 0: The maximum resident set size (KB) = 847292 + 0: The total amount of wall time = 933.120418 + 0: The maximum resident set size (KB) = 861412 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5399,14 +5399,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 612.677651 - 0: The maximum resident set size (KB) = 826384 + 0: The total amount of wall time = 625.417033 + 0: The maximum resident set size (KB) = 831136 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_docn_intel Checking test 152 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5414,14 +5414,14 @@ Checking test 152 hafs_regional_docn_intel 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 = 312.381029 - 0: The maximum resident set size (KB) = 935032 + 0: The total amount of wall time = 310.548147 + 0: The maximum resident set size (KB) = 961196 Test 152 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_docn_oisst_intel Checking test 153 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5429,131 +5429,131 @@ Checking test 153 hafs_regional_docn_oisst_intel 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 = 313.692534 - 0: The maximum resident set size (KB) = 934892 + 0: The total amount of wall time = 318.413827 + 0: The maximum resident set size (KB) = 913476 Test 153 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_datm_cdeps_intel Checking test 154 hafs_regional_datm_cdeps_intel 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 = 977.088810 - 0: The maximum resident set size (KB) = 1336096 + 0: The total amount of wall time = 974.211426 + 0: The maximum resident set size (KB) = 1341756 Test 154 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_cfsr_intel Checking test 155 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.661816 - 0: The maximum resident set size (KB) = 1121224 + 0: The total amount of wall time = 122.645409 + 0: The maximum resident set size (KB) = 1129924 Test 155 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_restart_cfsr_intel Checking test 156 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 73.451143 - 0: The maximum resident set size (KB) = 1105124 + 0: The total amount of wall time = 72.928629 + 0: The maximum resident set size (KB) = 1107928 Test 156 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_gefs_intel Checking test 157 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.287839 - 0: The maximum resident set size (KB) = 1011768 + 0: The total amount of wall time = 118.111161 + 0: The maximum resident set size (KB) = 1006048 Test 157 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_iau_gefs_intel Checking test 158 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.859018 - 0: The maximum resident set size (KB) = 1021344 + 0: The total amount of wall time = 120.528837 + 0: The maximum resident set size (KB) = 1010776 Test 158 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_stochy_gefs_intel Checking test 159 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.701055 - 0: The maximum resident set size (KB) = 1014408 + 0: The total amount of wall time = 117.851743 + 0: The maximum resident set size (KB) = 1002364 Test 159 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_ciceC_cfsr_intel Checking test 160 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.364387 - 0: The maximum resident set size (KB) = 1149832 + 0: The total amount of wall time = 122.479421 + 0: The maximum resident set size (KB) = 1155304 Test 160 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_bulk_cfsr_intel Checking test 161 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.485300 - 0: The maximum resident set size (KB) = 1131088 + 0: The total amount of wall time = 121.906181 + 0: The maximum resident set size (KB) = 1127584 Test 161 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_bulk_gefs_intel Checking test 162 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.473654 - 0: The maximum resident set size (KB) = 1014068 + 0: The total amount of wall time = 117.270880 + 0: The maximum resident set size (KB) = 1007748 Test 162 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_mx025_cfsr_intel Checking test 163 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5562,14 +5562,14 @@ Checking test 163 datm_cdeps_mx025_cfsr_intel 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 = 288.403698 - 0: The maximum resident set size (KB) = 1167028 + 0: The total amount of wall time = 281.366470 + 0: The maximum resident set size (KB) = 1150460 Test 163 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_mx025_gefs_intel Checking test 164 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5578,77 +5578,77 @@ Checking test 164 datm_cdeps_mx025_gefs_intel 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 = 285.113925 - 0: The maximum resident set size (KB) = 1158960 + 0: The total amount of wall time = 277.845044 + 0: The maximum resident set size (KB) = 1153004 Test 164 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_multiple_files_cfsr_intel Checking test 165 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.983596 - 0: The maximum resident set size (KB) = 1141712 + 0: The total amount of wall time = 122.036429 + 0: The maximum resident set size (KB) = 1126076 Test 165 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_3072x1536_cfsr_intel Checking test 166 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.875114 - 0: The maximum resident set size (KB) = 2442780 + 0: The total amount of wall time = 174.113271 + 0: The maximum resident set size (KB) = 2439256 Test 166 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_gfs_intel Checking test 167 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 175.808311 - 0: The maximum resident set size (KB) = 2434584 + 0: The total amount of wall time = 180.610353 + 0: The maximum resident set size (KB) = 2435908 Test 167 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_debug_cfsr_intel Checking test 168 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 305.264706 - 0: The maximum resident set size (KB) = 1077460 + 0: The total amount of wall time = 302.213548 + 0: The maximum resident set size (KB) = 1063692 Test 168 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_cfsr_faster_intel Checking test 169 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.468684 - 0: The maximum resident set size (KB) = 1135792 + 0: The total amount of wall time = 119.546041 + 0: The maximum resident set size (KB) = 1142964 Test 169 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_gswp3_intel Checking test 170 datm_cdeps_lnd_gswp3_intel 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 @@ -5657,14 +5657,14 @@ Checking test 170 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 45.575550 - 0: The maximum resident set size (KB) = 335536 + 0: The total amount of wall time = 43.916551 + 0: The maximum resident set size (KB) = 340636 Test 170 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_lnd_era5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_era5_intel Checking test 171 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5673,14 +5673,14 @@ Checking test 171 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 41.858878 - 0: The maximum resident set size (KB) = 560948 + 0: The total amount of wall time = 40.266470 + 0: The maximum resident set size (KB) = 558872 Test 171 datm_cdeps_lnd_era5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/datm_cdeps_lnd_era5_rst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_era5_rst_intel Checking test 172 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5689,14 +5689,14 @@ Checking test 172 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 32.899585 - 0: The maximum resident set size (KB) = 562000 + 0: The total amount of wall time = 24.844785 + 0: The maximum resident set size (KB) = 556428 Test 172 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_atmlnd_sbs_intel Checking test 173 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5785,14 +5785,14 @@ Checking test 173 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 351.377905 - 0: The maximum resident set size (KB) = 1633800 + 0: The total amount of wall time = 327.955030 + 0: The maximum resident set size (KB) = 1637420 Test 173 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_atmlnd_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_atmlnd_intel Checking test 174 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5881,14 +5881,14 @@ Checking test 174 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 348.085882 - 0: The maximum resident set size (KB) = 1649684 + 0: The total amount of wall time = 327.361237 + 0: The maximum resident set size (KB) = 1639172 Test 174 control_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_restart_p8_atmlnd_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_p8_atmlnd_intel Checking test 175 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5909,14 +5909,14 @@ Checking test 175 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 178.034460 - 0: The maximum resident set size (KB) = 943092 + 0: The total amount of wall time = 170.542369 + 0: The maximum resident set size (KB) = 942284 Test 175 control_restart_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5959,14 +5959,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 84.496536 - 0: The maximum resident set size (KB) = 1705456 + 0: The total amount of wall time = 79.992699 + 0: The maximum resident set size (KB) = 1707356 Test 176 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_atmwav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6010,14 +6010,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 81.594532 - 0: The maximum resident set size (KB) = 697620 + 0: The total amount of wall time = 76.189888 + 0: The maximum resident set size (KB) = 696156 Test 177 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6061,14 +6061,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.242553 - 0: The maximum resident set size (KB) = 1796252 + 0: The total amount of wall time = 200.564861 + 0: The maximum resident set size (KB) = 1797340 Test 178 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6112,14 +6112,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.714403 - 0: The maximum resident set size (KB) = 1806312 + 0: The total amount of wall time = 243.134373 + 0: The maximum resident set size (KB) = 1815144 Test 179 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6163,14 +6163,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.261473 - 0: The maximum resident set size (KB) = 1817188 + 0: The total amount of wall time = 257.570882 + 0: The maximum resident set size (KB) = 1831132 Test 180 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_atmaq_debug_intel Checking test 181 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6184,14 +6184,14 @@ Checking test 181 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 993.996045 - 0: The maximum resident set size (KB) = 4616132 + 0: The total amount of wall time = 971.352709 + 0: The maximum resident set size (KB) = 4566624 Test 181 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_c48_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48_gnu Checking test 182 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6230,14 +6230,14 @@ Checking test 182 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 564.399179 -0: The maximum resident set size (KB) = 859540 +0: The total amount of wall time = 561.801781 +0: The maximum resident set size (KB) = 860308 Test 182 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_gnu Checking test 183 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6248,14 +6248,14 @@ Checking test 183 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.614488 - 0: The maximum resident set size (KB) = 725488 + 0: The total amount of wall time = 123.888527 + 0: The maximum resident set size (KB) = 728132 Test 183 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_gnu Checking test 184 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6266,14 +6266,14 @@ Checking test 184 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.426977 - 0: The maximum resident set size (KB) = 731968 + 0: The total amount of wall time = 212.158787 + 0: The maximum resident set size (KB) = 730800 Test 184 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_gnu Checking test 185 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6320,14 +6320,14 @@ Checking test 185 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.332813 - 0: The maximum resident set size (KB) = 1507496 + 0: The total amount of wall time = 206.447966 + 0: The maximum resident set size (KB) = 1508876 Test 185 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_p8_ugwpv1_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_ugwpv1_gnu Checking test 186 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6374,14 +6374,14 @@ Checking test 186 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.117969 - 0: The maximum resident set size (KB) = 1511012 + 0: The total amount of wall time = 201.997164 + 0: The maximum resident set size (KB) = 1511924 Test 186 control_p8_ugwpv1_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_flake_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_flake_gnu Checking test 187 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6392,14 +6392,14 @@ Checking test 187 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.861582 - 0: The maximum resident set size (KB) = 809316 + 0: The total amount of wall time = 252.499609 + 0: The maximum resident set size (KB) = 808196 Test 187 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_gnu Checking test 188 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6446,14 +6446,14 @@ Checking test 188 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.037607 - 0: The maximum resident set size (KB) = 1087756 + 0: The total amount of wall time = 446.564193 + 0: The maximum resident set size (KB) = 1086128 Test 188 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_decomp_gnu Checking test 189 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6500,14 +6500,14 @@ Checking test 189 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.385091 - 0: The maximum resident set size (KB) = 1083348 + 0: The total amount of wall time = 454.081210 + 0: The maximum resident set size (KB) = 1084532 Test 189 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_gnu Checking test 190 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6554,14 +6554,14 @@ Checking test 190 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 413.111546 - 0: The maximum resident set size (KB) = 1124788 + 0: The total amount of wall time = 417.730501 + 0: The maximum resident set size (KB) = 1148104 Test 190 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_gnu Checking test 191 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6600,14 +6600,14 @@ Checking test 191 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.181025 - 0: The maximum resident set size (KB) = 884052 + 0: The total amount of wall time = 230.112825 + 0: The maximum resident set size (KB) = 884008 Test 191 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_gnu Checking test 192 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6654,14 +6654,14 @@ Checking test 192 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.106148 - 0: The maximum resident set size (KB) = 1085496 + 0: The total amount of wall time = 452.021282 + 0: The maximum resident set size (KB) = 1084124 Test 192 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_decomp_gnu Checking test 193 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6708,14 +6708,14 @@ Checking test 193 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.143417 - 0: The maximum resident set size (KB) = 1086756 + 0: The total amount of wall time = 456.568989 + 0: The maximum resident set size (KB) = 1083960 Test 193 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_sfcdiff_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_restart_gnu Checking test 194 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6754,14 +6754,14 @@ Checking test 194 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.409261 - 0: The maximum resident set size (KB) = 883208 + 0: The total amount of wall time = 332.922244 + 0: The maximum resident set size (KB) = 883532 Test 194 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_gnu Checking test 195 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6808,14 +6808,14 @@ Checking test 195 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.425900 - 0: The maximum resident set size (KB) = 1072456 + 0: The total amount of wall time = 228.219739 + 0: The maximum resident set size (KB) = 1072036 Test 195 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_noqr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_noqr_gnu Checking test 196 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6862,14 +6862,14 @@ Checking test 196 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 231.485182 - 0: The maximum resident set size (KB) = 1134164 + 0: The total amount of wall time = 230.316069 + 0: The maximum resident set size (KB) = 1135288 Test 196 hrrr_control_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_gnu Checking test 197 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6916,14 +6916,14 @@ Checking test 197 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.459350 - 0: The maximum resident set size (KB) = 1033492 + 0: The total amount of wall time = 207.651400 + 0: The maximum resident set size (KB) = 1025636 Test 197 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_gnu Checking test 198 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6970,42 +6970,42 @@ Checking test 198 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.300474 - 0: The maximum resident set size (KB) = 1071660 + 0: The total amount of wall time = 230.261012 + 0: The maximum resident set size (KB) = 1071120 Test 198 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_gnu Checking test 199 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.842612 - 0: The maximum resident set size (KB) = 881532 + 0: The total amount of wall time = 115.472680 + 0: The maximum resident set size (KB) = 881908 Test 199 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_noqr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_noqr_gnu Checking test 200 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.442702 - 0: The maximum resident set size (KB) = 931408 + 0: The total amount of wall time = 114.710069 + 0: The maximum resident set size (KB) = 931908 Test 200 hrrr_control_restart_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_gnu Checking test 201 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7052,224 +7052,224 @@ Checking test 201 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.869563 - 0: The maximum resident set size (KB) = 1088292 + 0: The total amount of wall time = 437.525741 + 0: The maximum resident set size (KB) = 1081304 Test 201 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_diag_debug_gnu Checking test 202 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.725875 - 0: The maximum resident set size (KB) = 772100 + 0: The total amount of wall time = 65.754808 + 0: The maximum resident set size (KB) = 771752 Test 202 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/regional_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_debug_gnu Checking test 203 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 370.221420 - 0: The maximum resident set size (KB) = 922588 + 0: The total amount of wall time = 368.099541 + 0: The maximum resident set size (KB) = 921468 Test 203 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_gnu Checking test 204 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.336734 - 0: The maximum resident set size (KB) = 1097136 + 0: The total amount of wall time = 110.197920 + 0: The maximum resident set size (KB) = 1096476 Test 204 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_gnu Checking test 205 hrrr_control_debug_gnu 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.951398 - 0: The maximum resident set size (KB) = 1088480 + 0: The total amount of wall time = 106.118091 + 0: The maximum resident set size (KB) = 1089344 Test 205 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_gf_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_gf_debug_gnu Checking test 206 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.567381 - 0: The maximum resident set size (KB) = 1096000 + 0: The total amount of wall time = 109.382121 + 0: The maximum resident set size (KB) = 1094152 Test 206 hrrr_gf_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_c3_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_c3_debug_gnu Checking test 207 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.061086 - 0: The maximum resident set size (KB) = 1094964 + 0: The total amount of wall time = 111.047710 + 0: The maximum resident set size (KB) = 1093744 Test 207 hrrr_c3_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_diag_debug_gnu Checking test 208 rap_diag_debug_gnu 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.378579 - 0: The maximum resident set size (KB) = 1267224 + 0: The total amount of wall time = 115.968799 + 0: The maximum resident set size (KB) = 1269748 Test 208 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.351800 - 0: The maximum resident set size (KB) = 1093464 + 0: The total amount of wall time = 177.016118 + 0: The maximum resident set size (KB) = 1097820 Test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_progcld_thompson_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_progcld_thompson_debug_gnu Checking test 210 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.564236 - 0: The maximum resident set size (KB) = 1096572 + 0: The total amount of wall time = 110.333784 + 0: The maximum resident set size (KB) = 1098696 Test 210 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rrfs_v1beta_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_debug_gnu Checking test 211 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.798175 - 0: The maximum resident set size (KB) = 1093400 + 0: The total amount of wall time = 109.219334 + 0: The maximum resident set size (KB) = 1094716 Test 211 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_ras_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_debug_gnu Checking test 212 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 63.835500 - 0: The maximum resident set size (KB) = 723288 + 0: The total amount of wall time = 63.126530 + 0: The maximum resident set size (KB) = 728648 Test 212 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_stochy_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_debug_gnu Checking test 213 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 71.275746 - 0: The maximum resident set size (KB) = 719844 + 0: The total amount of wall time = 68.329098 + 0: The maximum resident set size (KB) = 719036 Test 213 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/control_debug_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_debug_p8_gnu Checking test 214 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 71.730450 - 0: The maximum resident set size (KB) = 1506176 + 0: The total amount of wall time = 68.649005 + 0: The maximum resident set size (KB) = 1505620 Test 214 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_flake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_flake_debug_gnu Checking test 215 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.701887 - 0: The maximum resident set size (KB) = 1098532 + 0: The total amount of wall time = 109.703333 + 0: The maximum resident set size (KB) = 1101072 Test 215 rap_flake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_clm_lake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_clm_lake_debug_gnu Checking test 216 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.133827 - 0: The maximum resident set size (KB) = 1101496 + 0: The total amount of wall time = 122.842551 + 0: The maximum resident set size (KB) = 1100304 Test 216 rap_clm_lake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/gnv1_c96_no_nest_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_c96_no_nest_debug_gnu Checking test 217 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7310,14 +7310,14 @@ Checking test 217 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.500238 - 0: The maximum resident set size (KB) = 1096776 + 0: The total amount of wall time = 187.259952 + 0: The maximum resident set size (KB) = 1102064 Test 217 gnv1_c96_no_nest_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn32_phy32_gnu Checking test 218 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7364,14 +7364,14 @@ Checking test 218 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 426.976262 - 0: The maximum resident set size (KB) = 968100 + 0: The total amount of wall time = 424.563139 + 0: The maximum resident set size (KB) = 963456 Test 218 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_dyn32_phy32_gnu Checking test 219 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7418,14 +7418,14 @@ Checking test 219 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.710911 - 0: The maximum resident set size (KB) = 959416 + 0: The total amount of wall time = 216.844494 + 0: The maximum resident set size (KB) = 953124 Test 219 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_dyn32_phy32_gnu Checking test 220 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7472,14 +7472,14 @@ Checking test 220 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.183819 - 0: The maximum resident set size (KB) = 995940 + 0: The total amount of wall time = 392.056259 + 0: The maximum resident set size (KB) = 968936 Test 220 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_dyn32_phy32_gnu Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7526,14 +7526,14 @@ Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.840945 - 0: The maximum resident set size (KB) = 878768 + 0: The total amount of wall time = 198.976765 + 0: The maximum resident set size (KB) = 876092 Test 221 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_dyn32_phy32_gnu Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7580,14 +7580,14 @@ Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.735778 - 0: The maximum resident set size (KB) = 952168 + 0: The total amount of wall time = 220.161498 + 0: The maximum resident set size (KB) = 953140 Test 222 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_dyn32_phy32_gnu Checking test 223 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7626,28 +7626,28 @@ Checking test 223 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 313.769337 - 0: The maximum resident set size (KB) = 859744 + 0: The total amount of wall time = 319.206471 + 0: The maximum resident set size (KB) = 858236 Test 223 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_dyn32_phy32_gnu Checking test 224 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.601364 - 0: The maximum resident set size (KB) = 856720 + 0: The total amount of wall time = 111.690552 + 0: The maximum resident set size (KB) = 862644 Test 224 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_control_gnu Checking test 225 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7663,40 +7663,40 @@ Checking test 225 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 141.931862 - 0: The maximum resident set size (KB) = 1269136 + 0: The total amount of wall time = 142.009333 + 0: The maximum resident set size (KB) = 1267916 Test 225 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_2threads_gnu Checking test 226 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 58.262140 - 0: The maximum resident set size (KB) = 1175456 + 0: The total amount of wall time = 56.926568 + 0: The maximum resident set size (KB) = 1172676 Test 226 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_restart_mismatch_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_restart_mismatch_gnu Checking test 227 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 80.637989 - 0: The maximum resident set size (KB) = 952816 + 0: The total amount of wall time = 79.546495 + 0: The maximum resident set size (KB) = 943172 Test 227 conus13km_restart_mismatch_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_gnu Checking test 228 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7743,42 +7743,42 @@ Checking test 228 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.645843 - 0: The maximum resident set size (KB) = 989932 + 0: The total amount of wall time = 257.156347 + 0: The maximum resident set size (KB) = 988684 Test 228 rap_control_dyn64_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_dyn32_phy32_gnu Checking test 229 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.373905 - 0: The maximum resident set size (KB) = 973020 + 0: The total amount of wall time = 109.230408 + 0: The maximum resident set size (KB) = 973256 Test 229 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_dyn32_phy32_gnu Checking test 230 hrrr_control_debug_dyn32_phy32_gnu 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.373137 - 0: The maximum resident set size (KB) = 977644 + 0: The total amount of wall time = 106.034854 + 0: The maximum resident set size (KB) = 965252 Test 230 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_gnu Checking test 231 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7792,14 +7792,14 @@ Checking test 231 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 314.978902 - 0: The maximum resident set size (KB) = 1279852 + 0: The total amount of wall time = 312.554810 + 0: The maximum resident set size (KB) = 1280524 Test 231 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_qr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_qr_gnu Checking test 232 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7813,50 +7813,50 @@ Checking test 232 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 325.508909 - 0: The maximum resident set size (KB) = 952776 + 0: The total amount of wall time = 326.493219 + 0: The maximum resident set size (KB) = 954536 Test 232 conus13km_debug_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_debug_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_2threads_gnu Checking test 233 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.021928 - 0: The maximum resident set size (KB) = 1192304 + 0: The total amount of wall time = 187.583794 + 0: The maximum resident set size (KB) = 1188608 Test 233 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/conus13km_radar_tten_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_radar_tten_debug_gnu Checking test 234 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 314.356972 - 0: The maximum resident set size (KB) = 1349716 + 0: The total amount of wall time = 320.089852 + 0: The maximum resident set size (KB) = 1349640 Test 234 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3242976/rap_control_dyn64_phy32_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_debug_gnu Checking test 235 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.595665 - 0: The maximum resident set size (KB) = 1002732 + 0: The total amount of wall time = 110.143505 + 0: The maximum resident set size (KB) = 1001260 Test 235 rap_control_dyn64_phy32_debug_gnu PASS @@ -7865,29 +7865,29 @@ FAILED TESTS: gnv1_nested_intel 147 failed in run_test REGRESSION TEST FAILED -Tue Feb 6 09:49:42 AM CST 2024 -Elapsed time: 01h:19m:12s. Have a nice day! -Tue Feb 6 10:45:23 AM CST 2024 +Thu Feb 8 10:14:43 AM CST 2024 +Elapsed time: 01h:19m:51s. Have a nice day! +Thu Feb 8 10:52:05 AM CST 2024 Start Regression test -Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 +Testing UFSWM Hash: aff1f15a908e7012f85a13fc101150df644731a6 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 592 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3468176/gnv1_nested_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_493623/gnv1_nested_intel Checking test 001 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -7903,43 +7903,43 @@ Checking test 001 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 267.738867 - 0: The maximum resident set size (KB) = 897496 + 0: The total amount of wall time = 236.187626 + 0: The maximum resident set size (KB) = 904672 Test 001 gnv1_nested_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 6 11:02:54 AM CST 2024 -Elapsed time: 00h:17m:32s. Have a nice day! +Thu Feb 8 11:10:55 AM CST 2024 +Elapsed time: 00h:18m:51s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 64484facce..a676f307e6 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,57 @@ -Tue Feb 6 14:59:56 UTC 2024 +Thu Feb 8 15:46:23 UTC 2024 Start Regression test -Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 356 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1970 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1845 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1938 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 2223 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1864 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1874 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1838 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 100 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1897 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 2041 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2526 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1811 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1883 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1881 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 s2s_intel elapsed time 1853 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 306 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2087 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 302 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2204 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 300 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 2846 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5488 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 244 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1732 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 377 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 2007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1868 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1813 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1963 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1824 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1829 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1861 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 497 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 492 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1872 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1967 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 290 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2568 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1842 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1916 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1912 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 s2s_intel elapsed time 1918 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 347 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 2084 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 2741 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2142 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 342 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 3026 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 368 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2186 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1817 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 412.833407 - 0: The maximum resident set size (KB) = 1776652 + 0: The total amount of wall time = 419.466187 + 0: The maximum resident set size (KB) = 1745660 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1216.376693 - 0: The maximum resident set size (KB) = 1652076 + 0: The total amount of wall time = 1272.387013 + 0: The maximum resident set size (KB) = 1634244 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_gfsv17_iau_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -240,14 +240,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1291.044500 - 0: The maximum resident set size (KB) = 1872500 + 0: The total amount of wall time = 1307.730015 + 0: The maximum resident set size (KB) = 1852588 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -300,14 +300,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 852.734923 - 0: The maximum resident set size (KB) = 985740 + 0: The total amount of wall time = 604.970267 + 0: The maximum resident set size (KB) = 974904 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_mpi_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -371,8 +371,8 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1412.912092 - 0: The maximum resident set size (KB) = 1619760 + 0: The total amount of wall time = 1408.458188 + 0: The maximum resident set size (KB) = 1604616 Test 005 cpld_mpi_gfsv17_intel PASS @@ -381,8 +381,8 @@ Test 006 cpld_debug_gfsv17_intel FAIL Test 006 cpld_debug_gfsv17_intel FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -447,14 +447,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 447.585164 - 0: The maximum resident set size (KB) = 1793892 + 0: The total amount of wall time = 459.700155 + 0: The maximum resident set size (KB) = 1793904 Test 007 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8.v2.sfc_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -519,14 +519,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 445.785957 - 0: The maximum resident set size (KB) = 1812276 + 0: The total amount of wall time = 459.718647 + 0: The maximum resident set size (KB) = 1792104 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -579,14 +579,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 255.597363 - 0: The maximum resident set size (KB) = 1710416 + 0: The total amount of wall time = 269.361721 + 0: The maximum resident set size (KB) = 1711004 Test 009 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -651,14 +651,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 448.420053 - 0: The maximum resident set size (KB) = 1837864 + 0: The total amount of wall time = 463.136308 + 0: The maximum resident set size (KB) = 1823900 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -711,14 +711,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 257.927741 - 0: The maximum resident set size (KB) = 1729008 + 0: The total amount of wall time = 275.405884 + 0: The maximum resident set size (KB) = 1716196 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +771,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 431.230323 - 0: The maximum resident set size (KB) = 2204972 + 0: The total amount of wall time = 439.189824 + 0: The maximum resident set size (KB) = 2204316 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +831,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.906686 - 0: The maximum resident set size (KB) = 1813684 + 0: The total amount of wall time = 475.023163 + 0: The maximum resident set size (KB) = 1772152 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +891,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 381.980580 - 0: The maximum resident set size (KB) = 1750972 + 0: The total amount of wall time = 396.042637 + 0: The maximum resident set size (KB) = 1752848 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -963,14 +963,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.359260 - 0: The maximum resident set size (KB) = 1812416 + 0: The total amount of wall time = 449.503949 + 0: The maximum resident set size (KB) = 1815852 -Test 015 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_s2sa_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 016 cpld_s2sa_p8_intel 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 = 424.740836 - 0: The maximum resident set size (KB) = 1765492 + 0: The total amount of wall time = 431.025455 + 0: The maximum resident set size (KB) = 1770700 Test 016 cpld_s2sa_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1092,14 +1092,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.895632 - 0: The maximum resident set size (KB) = 1638940 + 0: The total amount of wall time = 345.031740 + 0: The maximum resident set size (KB) = 1631016 Test 017 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1161,14 +1161,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 326.780739 - 0: The maximum resident set size (KB) = 1691224 + 0: The total amount of wall time = 331.624914 + 0: The maximum resident set size (KB) = 1690588 Test 018 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_p8_intel Checking test 019 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1221,14 +1221,14 @@ Checking test 019 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 630.266679 - 0: The maximum resident set size (KB) = 1823484 + 0: The total amount of wall time = 651.460873 + 0: The maximum resident set size (KB) = 1812068 Test 019 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_noaero_p8_intel Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1280,14 +1280,14 @@ Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.961300 - 0: The maximum resident set size (KB) = 1651204 + 0: The total amount of wall time = 420.133657 + 0: The maximum resident set size (KB) = 1657500 Test 020 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1349,14 +1349,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 332.177567 - 0: The maximum resident set size (KB) = 1702256 + 0: The total amount of wall time = 342.802816 + 0: The maximum resident set size (KB) = 1698216 Test 021 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1406,14 +1406,14 @@ Checking test 022 cpld_control_c48_intel 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 = 760.683196 - 0: The maximum resident set size (KB) = 2785280 + 0: The total amount of wall time = 756.859279 + 0: The maximum resident set size (KB) = 2785576 Test 022 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_faster_intel Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1478,14 @@ Checking test 023 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 415.236421 - 0: The maximum resident set size (KB) = 1794012 + 0: The total amount of wall time = 432.502441 + 0: The maximum resident set size (KB) = 1801392 Test 023 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_control_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1549,14 +1549,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1223.357299 - 0: The maximum resident set size (KB) = 1667084 + 0: The total amount of wall time = 1265.871220 + 0: The maximum resident set size (KB) = 1665544 Test 024 cpld_control_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_restart_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1608,14 +1608,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 618.285926 - 0: The maximum resident set size (KB) = 1028560 + 0: The total amount of wall time = 691.087439 + 0: The maximum resident set size (KB) = 1028600 Test 025 cpld_restart_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_mpi_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1679,14 +1679,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1437.040253 - 0: The maximum resident set size (KB) = 1630724 + 0: The total amount of wall time = 1506.906020 + 0: The maximum resident set size (KB) = 1645664 Test 026 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/cpld_debug_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1738,14 +1738,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1908.388699 - 0: The maximum resident set size (KB) = 1666224 + 0: The total amount of wall time = 1918.104167 + 0: The maximum resident set size (KB) = 1669624 Test 027 cpld_debug_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1756,14 +1756,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.739102 - 0: The maximum resident set size (KB) = 645688 + 0: The total amount of wall time = 265.778131 + 0: The maximum resident set size (KB) = 642580 Test 028 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1790,14 +1790,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 183.162204 - 0: The maximum resident set size (KB) = 591552 + 0: The total amount of wall time = 184.503756 + 0: The maximum resident set size (KB) = 598624 Test 029 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1806,20 +1806,20 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.238747 - 0: The maximum resident set size (KB) = 598524 + 0: The total amount of wall time = 200.345540 + 0: The maximum resident set size (KB) = 597556 Test 030 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1830,14 +1830,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.678640 - 0: The maximum resident set size (KB) = 596924 + 0: The total amount of wall time = 190.033016 + 0: The maximum resident set size (KB) = 592924 Test 031 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1848,14 +1848,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.189538 - 0: The maximum resident set size (KB) = 593488 + 0: The total amount of wall time = 194.154400 + 0: The maximum resident set size (KB) = 595692 Test 032 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1894,14 +1894,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 599.821675 -0: The maximum resident set size (KB) = 848164 +0: The total amount of wall time = 610.278536 +0: The maximum resident set size (KB) = 849920 Test 033 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c48.v2.sfc_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1940,14 +1940,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 596.651767 -0: The maximum resident set size (KB) = 843652 +0: The total amount of wall time = 612.944942 +0: The maximum resident set size (KB) = 848816 Test 034 control_c48.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 729.720712 - 0: The maximum resident set size (KB) = 723436 + 0: The total amount of wall time = 739.191245 + 0: The maximum resident set size (KB) = 723972 Test 035 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 940.599381 - 0: The maximum resident set size (KB) = 894056 + 0: The total amount of wall time = 1124.458725 + 0: The maximum resident set size (KB) = 897212 Test 036 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1997,43 +1997,43 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 801.371142 - 0: The maximum resident set size (KB) = 1013348 + 0: The total amount of wall time = 974.317072 + 0: The maximum resident set size (KB) = 1019400 Test 037 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2044,28 +2044,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 846.029834 - 0: The maximum resident set size (KB) = 601604 + 0: The total amount of wall time = 122.234726 + 0: The maximum resident set size (KB) = 596060 Test 038 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 74.295644 - 0: The maximum resident set size (KB) = 436704 + 0: The total amount of wall time = 71.592905 + 0: The maximum resident set size (KB) = 438180 Test 039 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2076,14 +2076,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 113.029212 - 0: The maximum resident set size (KB) = 603432 + 0: The total amount of wall time = 118.394264 + 0: The maximum resident set size (KB) = 598440 Test 040 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2098,14 +2098,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.608850 - 0: The maximum resident set size (KB) = 591416 + 0: The total amount of wall time = 189.011441 + 0: The maximum resident set size (KB) = 595968 Test 041 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.760202 - 0: The maximum resident set size (KB) = 593220 + 0: The total amount of wall time = 191.872429 + 0: The maximum resident set size (KB) = 594136 Test 042 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2174,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.449723 - 0: The maximum resident set size (KB) = 1567868 + 0: The total amount of wall time = 232.327556 + 0: The maximum resident set size (KB) = 1574568 Test 043 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8.v2.sfc_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2228,14 +2228,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.478224 - 0: The maximum resident set size (KB) = 1571556 + 0: The total amount of wall time = 229.714326 + 0: The maximum resident set size (KB) = 1557132 Test 044 control_p8.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_ugwpv1_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2282,14 +2282,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 215.640116 - 0: The maximum resident set size (KB) = 1569552 + 0: The total amount of wall time = 229.776778 + 0: The maximum resident set size (KB) = 1561856 Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2328,14 +2328,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 118.620006 - 0: The maximum resident set size (KB) = 814236 + 0: The total amount of wall time = 136.613574 + 0: The maximum resident set size (KB) = 808164 Test 046 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_noqr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2382,14 +2382,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 219.577422 - 0: The maximum resident set size (KB) = 1565140 + 0: The total amount of wall time = 229.711728 + 0: The maximum resident set size (KB) = 1557720 Test 047 control_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_restart_noqr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2428,14 +2428,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 115.103241 - 0: The maximum resident set size (KB) = 834676 + 0: The total amount of wall time = 129.350110 + 0: The maximum resident set size (KB) = 834028 Test 048 control_restart_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2478,14 +2478,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.351940 - 0: The maximum resident set size (KB) = 1562160 + 0: The total amount of wall time = 243.420009 + 0: The maximum resident set size (KB) = 1564152 Test 049 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2528,14 +2528,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 208.433119 - 0: The maximum resident set size (KB) = 1665340 + 0: The total amount of wall time = 221.138597 + 0: The maximum resident set size (KB) = 1663480 Test 050 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2554,14 +2554,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 407.088574 - 0: The maximum resident set size (KB) = 1572912 + 0: The total amount of wall time = 415.047075 + 0: The maximum resident set size (KB) = 1574788 Test 051 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2608,14 +2608,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.982182 - 0: The maximum resident set size (KB) = 1629868 + 0: The total amount of wall time = 314.549451 + 0: The maximum resident set size (KB) = 1632420 Test 052 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.117223 - 0: The maximum resident set size (KB) = 1579056 + 0: The total amount of wall time = 247.063943 + 0: The maximum resident set size (KB) = 1569704 Test 053 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2716,14 +2716,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.392652 - 0: The maximum resident set size (KB) = 1591676 + 0: The total amount of wall time = 281.214696 + 0: The maximum resident set size (KB) = 1576940 Test 054 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2734,28 +2734,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 411.505781 - 0: The maximum resident set size (KB) = 758204 + 0: The total amount of wall time = 457.406418 + 0: The maximum resident set size (KB) = 762032 Test 055 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 212.693106 - 0: The maximum resident set size (KB) = 926992 + 0: The total amount of wall time = 257.595240 + 0: The maximum resident set size (KB) = 925836 Test 056 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2766,14 +2766,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 438.404320 - 0: The maximum resident set size (KB) = 759660 + 0: The total amount of wall time = 467.123126 + 0: The maximum resident set size (KB) = 759500 Test 057 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2784,28 +2784,28 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 257.743804 - 0: The maximum resident set size (KB) = 749320 + 0: The total amount of wall time = 281.361968 + 0: The maximum resident set size (KB) = 746764 Test 058 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_netcdf_parallel_intel Checking test 059 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 405.506700 - 0: The maximum resident set size (KB) = 759312 + 0: The total amount of wall time = 637.923117 + 0: The maximum resident set size (KB) = 751628 Test 059 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_2dwrtdecomp_intel Checking test 060 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2816,14 +2816,14 @@ Checking test 060 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 409.495330 - 0: The maximum resident set size (KB) = 758396 + 0: The total amount of wall time = 438.509411 + 0: The maximum resident set size (KB) = 758164 Test 060 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_intel Checking test 061 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2870,14 +2870,14 @@ Checking test 061 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 596.064222 - 0: The maximum resident set size (KB) = 976856 + 0: The total amount of wall time = 610.097536 + 0: The maximum resident set size (KB) = 967444 Test 061 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_spp_sppt_shum_skeb_intel Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2888,14 +2888,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 325.884900 - 0: The maximum resident set size (KB) = 1206396 + 0: The total amount of wall time = 359.540314 + 0: The maximum resident set size (KB) = 1214124 Test 062 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_decomp_intel Checking test 063 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 063 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 623.533788 - 0: The maximum resident set size (KB) = 959284 + 0: The total amount of wall time = 647.847729 + 0: The maximum resident set size (KB) = 969040 Test 063 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_2threads_intel Checking test 064 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 064 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 566.323492 - 0: The maximum resident set size (KB) = 1072532 + 0: The total amount of wall time = 588.484777 + 0: The maximum resident set size (KB) = 1065544 Test 064 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_restart_intel Checking test 065 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3042,14 +3042,14 @@ Checking test 065 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.775868 - 0: The maximum resident set size (KB) = 981608 + 0: The total amount of wall time = 381.485505 + 0: The maximum resident set size (KB) = 986500 Test 065 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_intel Checking test 066 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3096,14 +3096,14 @@ Checking test 066 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 598.527899 - 0: The maximum resident set size (KB) = 977036 + 0: The total amount of wall time = 612.818264 + 0: The maximum resident set size (KB) = 990296 Test 066 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_decomp_intel Checking test 067 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3150,14 +3150,14 @@ Checking test 067 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 633.864935 - 0: The maximum resident set size (KB) = 985060 + 0: The total amount of wall time = 647.905688 + 0: The maximum resident set size (KB) = 977920 Test 067 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_restart_intel Checking test 068 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3196,14 +3196,14 @@ Checking test 068 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.171546 - 0: The maximum resident set size (KB) = 989876 + 0: The total amount of wall time = 564.712480 + 0: The maximum resident set size (KB) = 988620 Test 068 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_intel Checking test 069 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 069 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 298.816663 - 0: The maximum resident set size (KB) = 974052 + 0: The total amount of wall time = 316.412768 + 0: The maximum resident set size (KB) = 973680 Test 069 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3304,14 +3304,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.949365 - 0: The maximum resident set size (KB) = 966568 + 0: The total amount of wall time = 325.610991 + 0: The maximum resident set size (KB) = 970508 Test 070 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3358,28 +3358,28 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.164205 - 0: The maximum resident set size (KB) = 1054776 + 0: The total amount of wall time = 291.740433 + 0: The maximum resident set size (KB) = 1050408 Test 071 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 157.921559 - 0: The maximum resident set size (KB) = 908264 + 0: The total amount of wall time = 187.194022 + 0: The maximum resident set size (KB) = 901532 Test 072 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1beta_intel Checking test 073 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3426,14 +3426,14 @@ Checking test 073 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 583.963593 - 0: The maximum resident set size (KB) = 975884 + 0: The total amount of wall time = 601.297435 + 0: The maximum resident set size (KB) = 979744 Test 073 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1nssl_intel Checking test 074 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3448,14 +3448,14 @@ Checking test 074 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 724.147748 - 0: The maximum resident set size (KB) = 1934080 + 0: The total amount of wall time = 760.745462 + 0: The maximum resident set size (KB) = 1929836 Test 074 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1nssl_nohailnoccn_intel Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3470,14 +3470,14 @@ Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 712.517861 - 0: The maximum resident set size (KB) = 1931704 + 0: The total amount of wall time = 716.876976 + 0: The maximum resident set size (KB) = 1921780 Test 075 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmg_intel Checking test 076 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3488,14 +3488,14 @@ Checking test 076 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 460.759028 - 0: The maximum resident set size (KB) = 684168 + 0: The total amount of wall time = 490.824048 + 0: The maximum resident set size (KB) = 686152 Test 076 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3506,14 +3506,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 452.316774 - 0: The maximum resident set size (KB) = 681444 + 0: The total amount of wall time = 488.600418 + 0: The maximum resident set size (KB) = 685428 Test 077 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3524,26 +3524,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 258.444473 - 0: The maximum resident set size (KB) = 651760 + 0: The total amount of wall time = 266.781207 + 0: The maximum resident set size (KB) = 657044 Test 078 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wam_intel Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 153.005151 - 0: The maximum resident set size (KB) = 494896 + 0: The total amount of wall time = 241.981180 + 0: The maximum resident set size (KB) = 494292 Test 079 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3590,14 +3590,14 @@ Checking test 080 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1542.511795 - 0: The maximum resident set size (KB) = 1554980 + 0: The total amount of wall time = 208.248048 + 0: The maximum resident set size (KB) = 1562972 Test 080 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3608,14 +3608,14 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 406.383152 - 0: The maximum resident set size (KB) = 753392 + 0: The total amount of wall time = 440.217469 + 0: The maximum resident set size (KB) = 752468 Test 081 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_debug_intel Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3642,364 +3642,364 @@ Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 188.357477 - 0: The maximum resident set size (KB) = 749128 + 0: The total amount of wall time = 211.362755 + 0: The maximum resident set size (KB) = 751528 Test 082 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wrtGauss_netcdf_parallel_debug_intel Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.593795 - 0: The maximum resident set size (KB) = 749272 + 0: The total amount of wall time = 197.313747 + 0: The maximum resident set size (KB) = 749740 Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_debug_intel Checking test 084 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.849091 - 0: The maximum resident set size (KB) = 757932 + 0: The total amount of wall time = 227.711630 + 0: The maximum resident set size (KB) = 755748 Test 084 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_lndp_debug_intel Checking test 085 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.811299 - 0: The maximum resident set size (KB) = 757360 + 0: The total amount of wall time = 223.485050 + 0: The maximum resident set size (KB) = 755428 Test 085 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmg_debug_intel Checking test 086 control_csawmg_debug_intel 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.542438 - 0: The maximum resident set size (KB) = 802284 + 0: The total amount of wall time = 338.432189 + 0: The maximum resident set size (KB) = 797380 Test 086 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmgt_debug_intel Checking test 087 control_csawmgt_debug_intel 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.660238 - 0: The maximum resident set size (KB) = 803716 + 0: The total amount of wall time = 336.750128 + 0: The maximum resident set size (KB) = 797028 Test 087 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_ras_debug_intel Checking test 088 control_ras_debug_intel 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.431456 - 0: The maximum resident set size (KB) = 762456 + 0: The total amount of wall time = 208.231344 + 0: The maximum resident set size (KB) = 762160 Test 088 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_diag_debug_intel Checking test 089 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.058677 - 0: The maximum resident set size (KB) = 804912 + 0: The total amount of wall time = 230.950116 + 0: The maximum resident set size (KB) = 808072 Test 089 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_debug_p8_intel Checking test 090 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.728666 - 0: The maximum resident set size (KB) = 1591356 + 0: The total amount of wall time = 259.820649 + 0: The maximum resident set size (KB) = 1573912 Test 090 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_debug_intel Checking test 091 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1292.766440 - 0: The maximum resident set size (KB) = 774804 + 0: The total amount of wall time = 1320.204556 + 0: The maximum resident set size (KB) = 771704 Test 091 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_debug_intel Checking test 092 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.905467 - 0: The maximum resident set size (KB) = 1143516 + 0: The total amount of wall time = 412.394126 + 0: The maximum resident set size (KB) = 1139088 Test 092 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_debug_intel Checking test 093 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.723687 - 0: The maximum resident set size (KB) = 1135228 + 0: The total amount of wall time = 368.971701 + 0: The maximum resident set size (KB) = 1141676 Test 093 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_gf_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_gf_debug_intel Checking test 094 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 568.069211 - 0: The maximum resident set size (KB) = 1148940 + 0: The total amount of wall time = 384.144308 + 0: The maximum resident set size (KB) = 1134896 Test 094 hrrr_gf_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_c3_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_c3_debug_intel Checking test 095 hrrr_c3_debug_intel 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.213665 - 0: The maximum resident set size (KB) = 1150412 + 0: The total amount of wall time = 374.292742 + 0: The maximum resident set size (KB) = 1141004 Test 095 hrrr_c3_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_unified_drag_suite_debug_intel Checking test 096 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.587197 - 0: The maximum resident set size (KB) = 1135364 + 0: The total amount of wall time = 379.345896 + 0: The maximum resident set size (KB) = 1127784 Test 096 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_diag_debug_intel Checking test 097 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 601.041242 - 0: The maximum resident set size (KB) = 1228576 + 0: The total amount of wall time = 372.839704 + 0: The maximum resident set size (KB) = 1233016 Test 097 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_cires_ugwp_debug_intel Checking test 098 rap_cires_ugwp_debug_intel 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.461759 - 0: The maximum resident set size (KB) = 1136368 + 0: The total amount of wall time = 387.737180 + 0: The maximum resident set size (KB) = 1132164 Test 098 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_unified_ugwp_debug_intel Checking test 099 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.903126 - 0: The maximum resident set size (KB) = 1149400 + 0: The total amount of wall time = 387.158771 + 0: The maximum resident set size (KB) = 1148900 Test 099 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_lndp_debug_intel Checking test 100 rap_lndp_debug_intel 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.025359 - 0: The maximum resident set size (KB) = 1146308 + 0: The total amount of wall time = 414.412666 + 0: The maximum resident set size (KB) = 1134836 Test 100 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_progcld_thompson_debug_intel Checking test 101 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.226125 - 0: The maximum resident set size (KB) = 1141056 + 0: The total amount of wall time = 402.580284 + 0: The maximum resident set size (KB) = 1140684 Test 101 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_noah_debug_intel Checking test 102 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.430331 - 0: The maximum resident set size (KB) = 1135924 + 0: The total amount of wall time = 397.754075 + 0: The maximum resident set size (KB) = 1138404 Test 102 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_debug_intel Checking test 103 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.394535 - 0: The maximum resident set size (KB) = 1138804 + 0: The total amount of wall time = 420.985075 + 0: The maximum resident set size (KB) = 1127668 Test 103 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 579.086733 - 0: The maximum resident set size (KB) = 1138424 + 0: The total amount of wall time = 622.675988 + 0: The maximum resident set size (KB) = 1135428 Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1beta_debug_intel Checking test 105 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.855515 - 0: The maximum resident set size (KB) = 1130172 + 0: The total amount of wall time = 365.983416 + 0: The maximum resident set size (KB) = 1132500 Test 105 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_clm_lake_debug_intel Checking test 106 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 424.791817 - 0: The maximum resident set size (KB) = 1145256 + 0: The total amount of wall time = 500.533720 + 0: The maximum resident set size (KB) = 1147348 Test 106 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_flake_debug_intel Checking test 107 rap_flake_debug_intel 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.887187 - 0: The maximum resident set size (KB) = 1137688 + 0: The total amount of wall time = 372.260984 + 0: The maximum resident set size (KB) = 1134312 Test 107 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/gnv1_c96_no_nest_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/gnv1_c96_no_nest_debug_intel Checking test 108 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4040,26 +4040,26 @@ Checking test 108 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 635.517852 - 0: The maximum resident set size (KB) = 1150112 + 0: The total amount of wall time = 636.570167 + 0: The maximum resident set size (KB) = 1147328 Test 108 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 356.678515 - 0: The maximum resident set size (KB) = 428228 + 0: The total amount of wall time = 359.733480 + 0: The maximum resident set size (KB) = 431712 Test 109 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4070,14 +4070,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 305.193401 - 0: The maximum resident set size (KB) = 1081728 + 0: The total amount of wall time = 315.699958 + 0: The maximum resident set size (KB) = 1069572 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4124,14 +4124,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 490.604441 - 0: The maximum resident set size (KB) = 899680 + 0: The total amount of wall time = 492.326583 + 0: The maximum resident set size (KB) = 888276 Test 111 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4178,14 +4178,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.536128 - 0: The maximum resident set size (KB) = 868732 + 0: The total amount of wall time = 258.400150 + 0: The maximum resident set size (KB) = 860660 Test 112 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_2threads_dyn32_phy32_intel Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4232,14 +4232,14 @@ Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.100544 - 0: The maximum resident set size (KB) = 939524 + 0: The total amount of wall time = 465.018652 + 0: The maximum resident set size (KB) = 946184 Test 113 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_2threads_dyn32_phy32_intel Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4286,14 +4286,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.815004 - 0: The maximum resident set size (KB) = 908468 + 0: The total amount of wall time = 233.068344 + 0: The maximum resident set size (KB) = 908712 Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_decomp_dyn32_phy32_intel Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4340,14 +4340,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 264.716343 - 0: The maximum resident set size (KB) = 847108 + 0: The total amount of wall time = 267.227455 + 0: The maximum resident set size (KB) = 841436 Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_restart_dyn32_phy32_intel Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4386,28 +4386,28 @@ Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.936582 - 0: The maximum resident set size (KB) = 894932 + 0: The total amount of wall time = 362.989915 + 0: The maximum resident set size (KB) = 895280 Test 116 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_restart_dyn32_phy32_intel Checking test 117 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 139.092026 - 0: The maximum resident set size (KB) = 834104 + 0: The total amount of wall time = 133.425572 + 0: The maximum resident set size (KB) = 839884 Test 117 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_control_intel Checking test 118 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4423,72 +4423,122 @@ Checking test 118 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 160.838415 - 0: The maximum resident set size (KB) = 1102664 + 0: The total amount of wall time = 157.001414 + 0: The maximum resident set size (KB) = 1091696 Test 118 conus13km_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_2threads_intel Checking test 119 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 70.081011 - 0: The maximum resident set size (KB) = 1047204 + 0: The total amount of wall time = 68.047240 + 0: The maximum resident set size (KB) = 1041272 Test 119 conus13km_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_restart_mismatch_intel Checking test 120 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 88.372858 - 0: The maximum resident set size (KB) = 1020236 + 0: The total amount of wall time = 84.616591 + 0: The maximum resident set size (KB) = 1011036 Test 120 conus13km_restart_mismatch_intel PASS -Test 121 rap_control_dyn64_phy32_intel FAIL -Test 121 rap_control_dyn64_phy32_intel FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn64_phy32_intel +Checking test 121 rap_control_dyn64_phy32_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 323.723216 + 0: The maximum resident set size (KB) = 895060 + +Test 121 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_debug_dyn32_phy32_intel Checking test 122 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.779114 - 0: The maximum resident set size (KB) = 1016940 + 0: The total amount of wall time = 353.162945 + 0: The maximum resident set size (KB) = 1017040 Test 122 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_debug_dyn32_phy32_intel Checking test 123 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 336.540688 - 0: The maximum resident set size (KB) = 1015156 + 0: The total amount of wall time = 347.442231 + 0: The maximum resident set size (KB) = 1006316 Test 123 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_intel Checking test 124 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4502,14 +4552,14 @@ Checking test 124 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1087.799619 - 0: The maximum resident set size (KB) = 1133244 + 0: The total amount of wall time = 1092.506712 + 0: The maximum resident set size (KB) = 1128048 Test 124 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_debug_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_qr_intel Checking test 125 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4523,81 +4573,81 @@ Checking test 125 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1105.620089 - 0: The maximum resident set size (KB) = 843328 + 0: The total amount of wall time = 1094.715932 + 0: The maximum resident set size (KB) = 844840 Test 125 conus13km_debug_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_2threads_intel Checking test 126 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 628.659268 - 0: The maximum resident set size (KB) = 1073936 + 0: The total amount of wall time = 632.574106 + 0: The maximum resident set size (KB) = 1076568 Test 126 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/conus13km_radar_tten_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_radar_tten_debug_intel Checking test 127 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1090.134073 - 0: The maximum resident set size (KB) = 1199392 + 0: The total amount of wall time = 1092.346453 + 0: The maximum resident set size (KB) = 1188812 Test 127 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn64_phy32_debug_intel Checking test 128 rap_control_dyn64_phy32_debug_intel 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.904484 - 0: The maximum resident set size (KB) = 1060596 + 0: The total amount of wall time = 353.299285 + 0: The maximum resident set size (KB) = 1063104 Test 128 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_intel Checking test 129 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 465.372109 - 0: The maximum resident set size (KB) = 712304 + 0: The total amount of wall time = 415.161700 + 0: The maximum resident set size (KB) = 710044 Test 129 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_thompson_gfdlsf_intel Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 477.551739 - 0: The maximum resident set size (KB) = 1093428 + 0: The total amount of wall time = 396.476427 + 0: The maximum resident set size (KB) = 1082184 Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_ocn_intel Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4606,14 +4656,14 @@ Checking test 131 hafs_regional_atm_ocn_intel 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 = 567.839293 - 0: The maximum resident set size (KB) = 764688 + 0: The total amount of wall time = 543.913780 + 0: The maximum resident set size (KB) = 760212 Test 131 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_wav_intel Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4622,14 +4672,14 @@ Checking test 132 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 997.822163 - 0: The maximum resident set size (KB) = 927660 + 0: The total amount of wall time = 948.970014 + 0: The maximum resident set size (KB) = 800416 Test 132 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_ocn_wav_intel Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4640,14 +4690,14 @@ Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1105.254249 - 0: The maximum resident set size (KB) = 812168 + 0: The total amount of wall time = 1068.321048 + 0: The maximum resident set size (KB) = 815872 Test 133 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/gnv1_nested_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/gnv1_nested_intel Checking test 134 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4659,32 +4709,32 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -4694,14 +4744,14 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 349.149234 - 0: The maximum resident set size (KB) = 773316 + 0: The total amount of wall time = 365.957252 + 0: The maximum resident set size (KB) = 772940 Test 134 gnv1_nested_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_docn_intel Checking test 135 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4709,14 +4759,14 @@ Checking test 135 hafs_regional_docn_intel 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 = 554.668426 - 0: The maximum resident set size (KB) = 763712 + 0: The total amount of wall time = 486.948595 + 0: The maximum resident set size (KB) = 762132 Test 135 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_docn_oisst_intel Checking test 136 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4724,118 +4774,118 @@ Checking test 136 hafs_regional_docn_oisst_intel 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 = 579.678186 - 0: The maximum resident set size (KB) = 746072 + 0: The total amount of wall time = 519.498295 + 0: The maximum resident set size (KB) = 749208 Test 136 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_cfsr_intel Checking test 137 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.297206 - 0: The maximum resident set size (KB) = 1037368 + 0: The total amount of wall time = 202.854371 + 0: The maximum resident set size (KB) = 1036812 Test 137 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_restart_cfsr_intel Checking test 138 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.982174 - 0: The maximum resident set size (KB) = 1004624 + 0: The total amount of wall time = 123.553902 + 0: The maximum resident set size (KB) = 1010096 Test 138 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_gefs_intel Checking test 139 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.183999 - 0: The maximum resident set size (KB) = 909792 + 0: The total amount of wall time = 196.552702 + 0: The maximum resident set size (KB) = 911324 Test 139 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_iau_gefs_intel Checking test 140 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.058704 - 0: The maximum resident set size (KB) = 917328 + 0: The total amount of wall time = 200.814502 + 0: The maximum resident set size (KB) = 912628 Test 140 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_stochy_gefs_intel Checking test 141 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.945604 - 0: The maximum resident set size (KB) = 915468 + 0: The total amount of wall time = 204.959901 + 0: The maximum resident set size (KB) = 912120 Test 141 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_ciceC_cfsr_intel Checking test 142 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.121399 - 0: The maximum resident set size (KB) = 1042820 + 0: The total amount of wall time = 205.511636 + 0: The maximum resident set size (KB) = 1040232 Test 142 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_bulk_cfsr_intel Checking test 143 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.490694 - 0: The maximum resident set size (KB) = 1038888 + 0: The total amount of wall time = 205.511114 + 0: The maximum resident set size (KB) = 1042048 Test 143 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_bulk_gefs_intel Checking test 144 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 199.872745 - 0: The maximum resident set size (KB) = 915980 + 0: The total amount of wall time = 186.200450 + 0: The maximum resident set size (KB) = 915604 Test 144 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_mx025_cfsr_intel Checking test 145 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4844,14 +4894,14 @@ Checking test 145 datm_cdeps_mx025_cfsr_intel 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 = 467.346769 - 0: The maximum resident set size (KB) = 882220 + 0: The total amount of wall time = 529.774122 + 0: The maximum resident set size (KB) = 880788 Test 145 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_mx025_gefs_intel Checking test 146 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4860,77 +4910,77 @@ Checking test 146 datm_cdeps_mx025_gefs_intel 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 = 468.781817 - 0: The maximum resident set size (KB) = 832900 + 0: The total amount of wall time = 469.175957 + 0: The maximum resident set size (KB) = 838632 Test 146 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_multiple_files_cfsr_intel Checking test 147 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.929763 - 0: The maximum resident set size (KB) = 1040264 + 0: The total amount of wall time = 203.911044 + 0: The maximum resident set size (KB) = 1039072 Test 147 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_3072x1536_cfsr_intel Checking test 148 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 295.179018 - 0: The maximum resident set size (KB) = 2389416 + 0: The total amount of wall time = 286.455759 + 0: The maximum resident set size (KB) = 2390100 Test 148 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_gfs_intel Checking test 149 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 298.332500 - 0: The maximum resident set size (KB) = 2349332 + 0: The total amount of wall time = 290.255899 + 0: The maximum resident set size (KB) = 2348952 Test 149 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_debug_cfsr_intel Checking test 150 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 474.510845 - 0: The maximum resident set size (KB) = 982944 + 0: The total amount of wall time = 464.668999 + 0: The maximum resident set size (KB) = 980696 Test 150 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_cfsr_faster_intel Checking test 151 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.218043 - 0: The maximum resident set size (KB) = 1036948 + 0: The total amount of wall time = 204.159634 + 0: The maximum resident set size (KB) = 1041940 Test 151 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_gswp3_intel Checking test 152 datm_cdeps_lnd_gswp3_intel 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 @@ -4939,14 +4989,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 99.391731 - 0: The maximum resident set size (KB) = 226916 + 0: The total amount of wall time = 79.209631 + 0: The maximum resident set size (KB) = 224600 Test 152 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_lnd_era5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_era5_intel Checking test 153 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -4955,14 +5005,14 @@ Checking test 153 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 72.979412 - 0: The maximum resident set size (KB) = 250596 + 0: The total amount of wall time = 68.544359 + 0: The maximum resident set size (KB) = 248888 Test 153 datm_cdeps_lnd_era5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/datm_cdeps_lnd_era5_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_era5_rst_intel Checking test 154 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -4971,14 +5021,14 @@ Checking test 154 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 77.868172 - 0: The maximum resident set size (KB) = 245364 + 0: The total amount of wall time = 43.573184 + 0: The maximum resident set size (KB) = 246788 Test 154 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_atmlnd_sbs_intel Checking test 155 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5067,14 +5117,14 @@ Checking test 155 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 708.106718 - 0: The maximum resident set size (KB) = 1596332 + 0: The total amount of wall time = 614.389627 + 0: The maximum resident set size (KB) = 1575892 Test 155 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_p8_atmlnd_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_atmlnd_intel Checking test 156 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5163,14 +5213,14 @@ Checking test 156 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 743.021733 - 0: The maximum resident set size (KB) = 1576572 + 0: The total amount of wall time = 621.053022 + 0: The maximum resident set size (KB) = 1576120 Test 156 control_p8_atmlnd_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_restart_p8_atmlnd_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_p8_atmlnd_intel Checking test 157 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5191,14 +5241,14 @@ Checking test 157 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 296.205425 - 0: The maximum resident set size (KB) = 861812 + 0: The total amount of wall time = 306.682487 + 0: The maximum resident set size (KB) = 852240 Test 157 control_restart_p8_atmlnd_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmwav_control_noaero_p8_intel Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5241,14 +5291,14 @@ Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 127.991521 - 0: The maximum resident set size (KB) = 1595684 + 0: The total amount of wall time = 130.054074 + 0: The maximum resident set size (KB) = 1589052 Test 158 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_atmwav_intel Checking test 159 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5292,65 +5342,18 @@ Checking test 159 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 120.866261 - 0: The maximum resident set size (KB) = 599780 + 0: The total amount of wall time = 124.585846 + 0: The maximum resident set size (KB) = 597616 Test 159 control_atmwav_intel PASS +Test 160 atmaero_control_p8_intel FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmaero_control_p8_intel -Checking test 160 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 387.190035 - 0: The maximum resident set size (KB) = 1692196 - -Test 160 atmaero_control_p8_intel PASS +Test 160 atmaero_control_p8_intel FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmaero_control_p8_rad_intel Checking test 161 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5394,14 +5397,14 @@ Checking test 161 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.024329 - 0: The maximum resident set size (KB) = 1714636 + 0: The total amount of wall time = 376.854059 + 0: The maximum resident set size (KB) = 1689624 Test 161 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_187419/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmaero_control_p8_rad_micro_intel Checking test 162 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5445,40 +5448,40 @@ Checking test 162 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.967384 - 0: The maximum resident set size (KB) = 1726520 + 0: The total amount of wall time = 405.723526 + 0: The maximum resident set size (KB) = 1714264 Test 162 atmaero_control_p8_rad_micro_intel PASS FAILED TESTS: cpld_debug_gfsv17_intel 006 failed in run_test -rap_control_dyn64_phy32_intel 121 failed in run_test +atmaero_control_p8_intel 160 failed in run_test REGRESSION TEST FAILED -Tue Feb 6 18:33:40 UTC 2024 -Elapsed time: 03h:33m:44s. Have a nice day! -Tue Feb 6 19:04:24 UTC 2024 +Thu Feb 8 20:24:43 UTC 2024 +Elapsed time: 04h:38m:21s. Have a nice day! +Thu Feb 8 20:28:27 UTC 2024 Start Regression test -Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile rrfs_dyn64_phy32_intel elapsed time 1815 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 312 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 1783 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 326 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_256125/cpld_debug_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_254345/cpld_debug_gfsv17_intel Checking test 001 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -5530,66 +5533,63 @@ Checking test 001 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1796.716592 - 0: The maximum resident set size (KB) = 1643048 + 0: The total amount of wall time = 1795.087507 + 0: The maximum resident set size (KB) = 1648396 Test 001 cpld_debug_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_256125/rap_control_dyn64_phy32_intel -Checking test 002 rap_control_dyn64_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_254345/atmaero_control_p8_intel +Checking test 002 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.515893 - 0: The maximum resident set size (KB) = 905720 + 0: The total amount of wall time = 304.244533 + 0: The maximum resident set size (KB) = 1670716 -Test 002 rap_control_dyn64_phy32_intel PASS +Test 002 atmaero_control_p8_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 6 19:46:33 UTC 2024 -Elapsed time: 00h:42m:09s. Have a nice day! +Thu Feb 8 21:09:48 UTC 2024 +Elapsed time: 00h:41m:22s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 093e7bbfef..783f3a344d 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,62 +1,62 @@ -Tue Feb 6 08:29:59 CST 2024 +Thu Feb 8 08:58:12 CST 2024 Start Regression test -Testing UFSWM Hash: 231731469bb66f6daa5769cc588740ecf1a4f8c5 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 715 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 201 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 681 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 285 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 803 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 788 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 709 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 250 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 406 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 462 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 692 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 849 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 236 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 779 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 822 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 851 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 685 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 745 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 778 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 747 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 857 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 307 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1305 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 323 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1265 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 880 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 307 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 898 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 199 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 750 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 705 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 687 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 213 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 492 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 396 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 77 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 681 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 759 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 221 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 757 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 771 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 850 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 732 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 772 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 878 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 316 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1090 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1060 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 855 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 305 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 881 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_pdlib_debug_intel elapsed time 288 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2sw_pdlib_intel elapsed time 1004 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8_mixedmode_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 298.445963 - 0: The maximum resident set size (KB) = 3185776 + 0: The total amount of wall time = 295.531409 + 0: The maximum resident set size (KB) = 3181680 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 971.884941 - 0: The maximum resident set size (KB) = 1738240 + 0: The total amount of wall time = 972.717260 + 0: The maximum resident set size (KB) = 1737832 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1024.208345 - 0: The maximum resident set size (KB) = 2019756 + 0: The total amount of wall time = 1036.889930 + 0: The maximum resident set size (KB) = 2029272 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.318101 - 0: The maximum resident set size (KB) = 1108648 + 0: The total amount of wall time = 476.266575 + 0: The maximum resident set size (KB) = 1105484 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1104.485319 - 0: The maximum resident set size (KB) = 1640668 + 0: The total amount of wall time = 1095.342974 + 0: The maximum resident set size (KB) = 1654824 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1360.597226 - 0: The maximum resident set size (KB) = 1690896 + 0: The total amount of wall time = 1372.125849 + 0: The maximum resident set size (KB) = 1688488 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.813042 - 0: The maximum resident set size (KB) = 3216768 + 0: The total amount of wall time = 327.095707 + 0: The maximum resident set size (KB) = 3215592 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 322.594867 - 0: The maximum resident set size (KB) = 3211332 + 0: The total amount of wall time = 325.383970 + 0: The maximum resident set size (KB) = 3209964 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 188.941609 - 0: The maximum resident set size (KB) = 3251456 + 0: The total amount of wall time = 187.362371 + 0: The maximum resident set size (KB) = 3250844 Test 009 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.737561 - 0: The maximum resident set size (KB) = 3238924 + 0: The total amount of wall time = 323.703547 + 0: The maximum resident set size (KB) = 3237888 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.386312 - 0: The maximum resident set size (KB) = 3270864 + 0: The total amount of wall time = 192.101518 + 0: The maximum resident set size (KB) = 3261784 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.265402 - 0: The maximum resident set size (KB) = 3551252 + 0: The total amount of wall time = 353.190437 + 0: The maximum resident set size (KB) = 3554292 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.582100 - 0: The maximum resident set size (KB) = 3206244 + 0: The total amount of wall time = 326.639443 + 0: The maximum resident set size (KB) = 3208708 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.814145 - 0: The maximum resident set size (KB) = 3069696 + 0: The total amount of wall time = 266.925501 + 0: The maximum resident set size (KB) = 3062824 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.105808 - 0: The maximum resident set size (KB) = 3215068 + 0: The total amount of wall time = 325.345357 + 0: The maximum resident set size (KB) = 3212136 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 583.188567 - 0: The maximum resident set size (KB) = 3340328 + 0: The total amount of wall time = 576.825323 + 0: The maximum resident set size (KB) = 3335944 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 362.419364 - 0: The maximum resident set size (KB) = 3628012 + 0: The total amount of wall time = 355.755081 + 0: The maximum resident set size (KB) = 3620040 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 624.663774 - 0: The maximum resident set size (KB) = 4121996 + 0: The total amount of wall time = 636.044712 + 0: The maximum resident set size (KB) = 4122260 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.058002 - 0: The maximum resident set size (KB) = 4366468 + 0: The total amount of wall time = 382.879580 + 0: The maximum resident set size (KB) = 4370596 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 308.780221 - 0: The maximum resident set size (KB) = 3177428 + 0: The total amount of wall time = 308.473946 + 0: The maximum resident set size (KB) = 3173064 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 248.993660 - 0: The maximum resident set size (KB) = 1736464 + 0: The total amount of wall time = 261.157650 + 0: The maximum resident set size (KB) = 1740300 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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.609227 - 0: The maximum resident set size (KB) = 1781164 + 0: The total amount of wall time = 249.449168 + 0: The maximum resident set size (KB) = 1785088 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 492.358234 - 0: The maximum resident set size (KB) = 3243392 + 0: The total amount of wall time = 496.179319 + 0: The maximum resident set size (KB) = 3249868 Test 023 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.384803 - 0: The maximum resident set size (KB) = 1750804 + 0: The total amount of wall time = 344.738981 + 0: The maximum resident set size (KB) = 1748116 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 246.822809 - 0: The maximum resident set size (KB) = 1782768 + 0: The total amount of wall time = 249.529783 + 0: The maximum resident set size (KB) = 1772184 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel 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 = 475.514696 - 0: The maximum resident set size (KB) = 2826040 + 0: The total amount of wall time = 471.642374 + 0: The maximum resident set size (KB) = 2828716 Test 026 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.011398 - 0: The maximum resident set size (KB) = 3210364 + 0: The total amount of wall time = 306.704800 + 0: The maximum resident set size (KB) = 3204164 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 970.854195 - 0: The maximum resident set size (KB) = 1772404 + 0: The total amount of wall time = 1066.581337 + 0: The maximum resident set size (KB) = 1774328 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 469.237423 - 0: The maximum resident set size (KB) = 1171160 + 0: The total amount of wall time = 473.941834 + 0: The maximum resident set size (KB) = 1178848 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1091.315165 - 0: The maximum resident set size (KB) = 1684468 + 0: The total amount of wall time = 1093.224118 + 0: The maximum resident set size (KB) = 1677952 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1468.540401 - 0: The maximum resident set size (KB) = 1718044 + 0: The total amount of wall time = 1501.564132 + 0: The maximum resident set size (KB) = 1728284 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.904449 - 0: The maximum resident set size (KB) = 692928 + 0: The total amount of wall time = 195.007873 + 0: The maximum resident set size (KB) = 700664 Test 032 control_flake_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2080,14 +2080,14 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.805410 - 0: The maximum resident set size (KB) = 645604 + 0: The total amount of wall time = 132.782472 + 0: The maximum resident set size (KB) = 646916 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.668957 - 0: The maximum resident set size (KB) = 658108 + 0: The total amount of wall time = 139.936098 + 0: The maximum resident set size (KB) = 654516 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.046549 - 0: The maximum resident set size (KB) = 654424 + 0: The total amount of wall time = 136.465317 + 0: The maximum resident set size (KB) = 649980 Test 035 control_latlon_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.795898 - 0: The maximum resident set size (KB) = 653864 + 0: The total amount of wall time = 137.252370 + 0: The maximum resident set size (KB) = 648024 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.505407 -0: The maximum resident set size (KB) = 875520 +0: The total amount of wall time = 348.276384 +0: The maximum resident set size (KB) = 874608 Test 037 control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c48.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.946855 -0: The maximum resident set size (KB) = 870880 +0: The total amount of wall time = 346.796887 +0: The maximum resident set size (KB) = 871508 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.436604 - 0: The maximum resident set size (KB) = 850876 + 0: The total amount of wall time = 531.187913 + 0: The maximum resident set size (KB) = 857336 Test 039 control_c192_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 581.329296 - 0: The maximum resident set size (KB) = 1246528 + 0: The total amount of wall time = 655.699185 + 0: The maximum resident set size (KB) = 1250816 Test 040 control_c384_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2288,15 +2288,15 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 514.805750 - 0: The maximum resident set size (KB) = 1355344 + 0: The total amount of wall time = 522.155681 + 0: The maximum resident set size (KB) = 1356696 Test 041 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.856508 - 0: The maximum resident set size (KB) = 619120 + 0: The total amount of wall time = 88.710628 + 0: The maximum resident set size (KB) = 650120 Test 042 control_stochy_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_stochy_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.663215 - 0: The maximum resident set size (KB) = 506108 + 0: The total amount of wall time = 51.185074 + 0: The maximum resident set size (KB) = 499248 Test 043 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.010475 - 0: The maximum resident set size (KB) = 656736 + 0: The total amount of wall time = 85.764689 + 0: The maximum resident set size (KB) = 652640 Test 044 control_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_iovr4_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.935899 - 0: The maximum resident set size (KB) = 652256 + 0: The total amount of wall time = 135.817936 + 0: The maximum resident set size (KB) = 651820 Test 045 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_iovr5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.996551 - 0: The maximum resident set size (KB) = 653452 + 0: The total amount of wall time = 135.876252 + 0: The maximum resident set size (KB) = 651904 Test 046 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.737329 - 0: The maximum resident set size (KB) = 1629868 + 0: The total amount of wall time = 167.081399 + 0: The maximum resident set size (KB) = 1627696 Test 047 control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.689370 - 0: The maximum resident set size (KB) = 1637288 + 0: The total amount of wall time = 166.653006 + 0: The maximum resident set size (KB) = 1636356 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_ugwpv1_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.320481 - 0: The maximum resident set size (KB) = 1634508 + 0: The total amount of wall time = 159.822106 + 0: The maximum resident set size (KB) = 1625316 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 86.925044 - 0: The maximum resident set size (KB) = 887344 + 0: The total amount of wall time = 88.421193 + 0: The maximum resident set size (KB) = 884856 Test 050 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_noqr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.333395 - 0: The maximum resident set size (KB) = 1616648 + 0: The total amount of wall time = 161.588427 + 0: The maximum resident set size (KB) = 1614208 Test 051 control_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_restart_noqr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 84.918284 - 0: The maximum resident set size (KB) = 931100 + 0: The total amount of wall time = 85.687575 + 0: The maximum resident set size (KB) = 928800 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.746062 - 0: The maximum resident set size (KB) = 1571984 + 0: The total amount of wall time = 169.069100 + 0: The maximum resident set size (KB) = 1609088 Test 053 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.273654 - 0: The maximum resident set size (KB) = 1717328 + 0: The total amount of wall time = 173.286482 + 0: The maximum resident set size (KB) = 1717068 Test 054 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 299.122936 - 0: The maximum resident set size (KB) = 1628164 + 0: The total amount of wall time = 301.982160 + 0: The maximum resident set size (KB) = 1628952 Test 055 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.737719 - 0: The maximum resident set size (KB) = 1691160 + 0: The total amount of wall time = 226.219477 + 0: The maximum resident set size (KB) = 1697144 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_mynn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.771588 - 0: The maximum resident set size (KB) = 1638400 + 0: The total amount of wall time = 167.998252 + 0: The maximum resident set size (KB) = 1638332 Test 057 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/merra2_thompson_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.087473 - 0: The maximum resident set size (KB) = 1637836 + 0: The total amount of wall time = 197.781493 + 0: The maximum resident set size (KB) = 1639152 Test 058 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.968151 - 0: The maximum resident set size (KB) = 856096 + 0: The total amount of wall time = 298.605196 + 0: The maximum resident set size (KB) = 858860 Test 059 regional_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 158.207357 - 0: The maximum resident set size (KB) = 1024324 + 0: The total amount of wall time = 153.699340 + 0: The maximum resident set size (KB) = 1022024 Test 060 regional_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 314.543303 - 0: The maximum resident set size (KB) = 848720 + 0: The total amount of wall time = 322.722236 + 0: The maximum resident set size (KB) = 798760 Test 061 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 206.685530 - 0: The maximum resident set size (KB) = 848356 + 0: The total amount of wall time = 207.882523 + 0: The maximum resident set size (KB) = 848340 Test 062 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_noquilt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel 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 = 292.527427 - 0: The maximum resident set size (KB) = 1365440 + 0: The total amount of wall time = 293.642892 + 0: The maximum resident set size (KB) = 1363152 Test 063 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 300.243755 - 0: The maximum resident set size (KB) = 857960 + 0: The total amount of wall time = 292.897949 + 0: The maximum resident set size (KB) = 851496 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.523284 - 0: The maximum resident set size (KB) = 852392 + 0: The total amount of wall time = 294.655531 + 0: The maximum resident set size (KB) = 856984 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_wofs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 383.680496 - 0: The maximum resident set size (KB) = 1921124 + 0: The total amount of wall time = 381.836940 + 0: The maximum resident set size (KB) = 1914396 Test 066 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.745353 - 0: The maximum resident set size (KB) = 1120444 + 0: The total amount of wall time = 449.534861 + 0: The maximum resident set size (KB) = 1109352 Test 067 rap_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 268.230976 - 0: The maximum resident set size (KB) = 1301304 + 0: The total amount of wall time = 267.970465 + 0: The maximum resident set size (KB) = 1299520 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.568039 - 0: The maximum resident set size (KB) = 989280 + 0: The total amount of wall time = 471.356981 + 0: The maximum resident set size (KB) = 1028172 Test 069 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.337058 - 0: The maximum resident set size (KB) = 1183212 + 0: The total amount of wall time = 462.530912 + 0: The maximum resident set size (KB) = 1177664 Test 070 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.798240 - 0: The maximum resident set size (KB) = 1095072 + 0: The total amount of wall time = 230.611852 + 0: The maximum resident set size (KB) = 1098176 Test 071 rap_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.806751 - 0: The maximum resident set size (KB) = 1103520 + 0: The total amount of wall time = 449.336408 + 0: The maximum resident set size (KB) = 1105148 Test 072 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.349140 - 0: The maximum resident set size (KB) = 1027232 + 0: The total amount of wall time = 475.248602 + 0: The maximum resident set size (KB) = 1032528 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.943627 - 0: The maximum resident set size (KB) = 1137348 + 0: The total amount of wall time = 337.270427 + 0: The maximum resident set size (KB) = 1124096 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.076962 - 0: The maximum resident set size (KB) = 1034636 + 0: The total amount of wall time = 228.723452 + 0: The maximum resident set size (KB) = 1033936 Test 075 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.042568 - 0: The maximum resident set size (KB) = 1019416 + 0: The total amount of wall time = 235.045399 + 0: The maximum resident set size (KB) = 1017764 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.477501 - 0: The maximum resident set size (KB) = 1105748 + 0: The total amount of wall time = 192.711364 + 0: The maximum resident set size (KB) = 1113024 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.809296 - 0: The maximum resident set size (KB) = 999420 + 0: The total amount of wall time = 120.524523 + 0: The maximum resident set size (KB) = 1002508 Test 078 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.240812 - 0: The maximum resident set size (KB) = 1094236 + 0: The total amount of wall time = 442.992770 + 0: The maximum resident set size (KB) = 1094428 Test 079 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.717221 - 0: The maximum resident set size (KB) = 1994560 + 0: The total amount of wall time = 544.420440 + 0: The maximum resident set size (KB) = 1991540 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.488368 - 0: The maximum resident set size (KB) = 2068264 + 0: The total amount of wall time = 522.941028 + 0: The maximum resident set size (KB) = 2068592 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmg_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.882205 - 0: The maximum resident set size (KB) = 744296 + 0: The total amount of wall time = 338.495057 + 0: The maximum resident set size (KB) = 745636 Test 082 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmgt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 332.743009 - 0: The maximum resident set size (KB) = 746136 + 0: The total amount of wall time = 339.017842 + 0: The maximum resident set size (KB) = 751852 Test 083 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_ras_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.773274 - 0: The maximum resident set size (KB) = 731428 + 0: The total amount of wall time = 186.385374 + 0: The maximum resident set size (KB) = 739420 Test 084 control_ras_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wam_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.444346 - 0: The maximum resident set size (KB) = 654532 + 0: The total amount of wall time = 112.874490 + 0: The maximum resident set size (KB) = 657604 Test 085 control_wam_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.595884 - 0: The maximum resident set size (KB) = 1624484 + 0: The total amount of wall time = 145.650303 + 0: The maximum resident set size (KB) = 1624672 Test 086 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_control_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.155084 - 0: The maximum resident set size (KB) = 849768 + 0: The total amount of wall time = 268.656966 + 0: The maximum resident set size (KB) = 856064 Test 087 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 156.256833 - 0: The maximum resident set size (KB) = 815284 + 0: The total amount of wall time = 154.508677 + 0: The maximum resident set size (KB) = 819144 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.857256 - 0: The maximum resident set size (KB) = 814376 + 0: The total amount of wall time = 150.615534 + 0: The maximum resident set size (KB) = 810940 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_stochy_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.160601 - 0: The maximum resident set size (KB) = 815552 + 0: The total amount of wall time = 175.386628 + 0: The maximum resident set size (KB) = 816720 Test 090 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.876142 - 0: The maximum resident set size (KB) = 817124 + 0: The total amount of wall time = 155.938039 + 0: The maximum resident set size (KB) = 814112 Test 091 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.127181 - 0: The maximum resident set size (KB) = 862232 + 0: The total amount of wall time = 239.760893 + 0: The maximum resident set size (KB) = 863120 Test 092 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.253887 - 0: The maximum resident set size (KB) = 868304 + 0: The total amount of wall time = 234.518689 + 0: The maximum resident set size (KB) = 868340 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_ras_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_ras_debug_intel Checking test 094 control_ras_debug_intel 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.785686 - 0: The maximum resident set size (KB) = 831660 + 0: The total amount of wall time = 153.633282 + 0: The maximum resident set size (KB) = 827540 Test 094 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.264704 - 0: The maximum resident set size (KB) = 872788 + 0: The total amount of wall time = 158.403334 + 0: The maximum resident set size (KB) = 874732 Test 095 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.161442 - 0: The maximum resident set size (KB) = 1647264 + 0: The total amount of wall time = 166.578778 + 0: The maximum resident set size (KB) = 1641032 Test 096 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1065.077162 - 0: The maximum resident set size (KB) = 836216 + 0: The total amount of wall time = 1026.384500 + 0: The maximum resident set size (KB) = 847044 Test 097 regional_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.073877 - 0: The maximum resident set size (KB) = 1199212 + 0: The total amount of wall time = 288.006884 + 0: The maximum resident set size (KB) = 1197732 Test 098 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.395187 - 0: The maximum resident set size (KB) = 1198388 + 0: The total amount of wall time = 276.176667 + 0: The maximum resident set size (KB) = 1193536 Test 099 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_gf_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.663963 - 0: The maximum resident set size (KB) = 1215380 + 0: The total amount of wall time = 284.641493 + 0: The maximum resident set size (KB) = 1198772 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_c3_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.275909 - 0: The maximum resident set size (KB) = 1203568 + 0: The total amount of wall time = 284.407553 + 0: The maximum resident set size (KB) = 1196412 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel 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.991625 - 0: The maximum resident set size (KB) = 1210044 + 0: The total amount of wall time = 283.961436 + 0: The maximum resident set size (KB) = 1203160 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel 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.640832 - 0: The maximum resident set size (KB) = 1284784 + 0: The total amount of wall time = 299.696419 + 0: The maximum resident set size (KB) = 1292580 Test 103 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.414849 - 0: The maximum resident set size (KB) = 1209824 + 0: The total amount of wall time = 286.910984 + 0: The maximum resident set size (KB) = 1194892 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.628502 - 0: The maximum resident set size (KB) = 1197324 + 0: The total amount of wall time = 294.791870 + 0: The maximum resident set size (KB) = 1204176 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel 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.472989 - 0: The maximum resident set size (KB) = 1204044 + 0: The total amount of wall time = 286.041402 + 0: The maximum resident set size (KB) = 1200500 Test 106 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.535564 - 0: The maximum resident set size (KB) = 1202024 + 0: The total amount of wall time = 285.759903 + 0: The maximum resident set size (KB) = 1201144 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_noah_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.610158 - 0: The maximum resident set size (KB) = 1199428 + 0: The total amount of wall time = 278.171801 + 0: The maximum resident set size (KB) = 1201832 Test 108 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel 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.722778 - 0: The maximum resident set size (KB) = 1161580 + 0: The total amount of wall time = 283.712951 + 0: The maximum resident set size (KB) = 1206212 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 467.437460 - 0: The maximum resident set size (KB) = 1193444 + 0: The total amount of wall time = 467.521313 + 0: The maximum resident set size (KB) = 1201768 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel 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.075702 - 0: The maximum resident set size (KB) = 1195268 + 0: The total amount of wall time = 279.860984 + 0: The maximum resident set size (KB) = 1197996 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 332.524383 - 0: The maximum resident set size (KB) = 1207316 + 0: The total amount of wall time = 365.356539 + 0: The maximum resident set size (KB) = 1206200 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_flake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.173088 - 0: The maximum resident set size (KB) = 1201660 + 0: The total amount of wall time = 283.637059 + 0: The maximum resident set size (KB) = 1209716 Test 113 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/gnv1_c96_no_nest_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 497.239003 - 0: The maximum resident set size (KB) = 1204856 + 0: The total amount of wall time = 507.435300 + 0: The maximum resident set size (KB) = 1209368 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_wam_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 283.135608 - 0: The maximum resident set size (KB) = 473188 + 0: The total amount of wall time = 286.998778 + 0: The maximum resident set size (KB) = 508124 Test 115 control_wam_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 253.241816 - 0: The maximum resident set size (KB) = 1158388 + 0: The total amount of wall time = 249.786685 + 0: The maximum resident set size (KB) = 1160748 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.573762 - 0: The maximum resident set size (KB) = 1056460 + 0: The total amount of wall time = 370.396123 + 0: The maximum resident set size (KB) = 1047460 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.636976 - 0: The maximum resident set size (KB) = 982472 + 0: The total amount of wall time = 191.177814 + 0: The maximum resident set size (KB) = 980132 Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 390.143672 - 0: The maximum resident set size (KB) = 1087648 + 0: The total amount of wall time = 388.721559 + 0: The maximum resident set size (KB) = 1088908 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.267943 - 0: The maximum resident set size (KB) = 966280 + 0: The total amount of wall time = 166.346744 + 0: The maximum resident set size (KB) = 965168 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.033748 - 0: The maximum resident set size (KB) = 921684 + 0: The total amount of wall time = 202.976446 + 0: The maximum resident set size (KB) = 922000 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.098475 - 0: The maximum resident set size (KB) = 998936 + 0: The total amount of wall time = 277.441741 + 0: The maximum resident set size (KB) = 1033780 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.269225 - 0: The maximum resident set size (KB) = 930488 + 0: The total amount of wall time = 102.694901 + 0: The maximum resident set size (KB) = 926132 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 117.522697 - 0: The maximum resident set size (KB) = 1201456 + 0: The total amount of wall time = 111.669185 + 0: The maximum resident set size (KB) = 1206672 Test 124 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 49.968359 - 0: The maximum resident set size (KB) = 1121652 + 0: The total amount of wall time = 49.794920 + 0: The maximum resident set size (KB) = 1123420 Test 125 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.303057 - 0: The maximum resident set size (KB) = 1114932 + 0: The total amount of wall time = 66.835969 + 0: The maximum resident set size (KB) = 1111040 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.139598 - 0: The maximum resident set size (KB) = 988620 + 0: The total amount of wall time = 242.892242 + 0: The maximum resident set size (KB) = 995236 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.022479 - 0: The maximum resident set size (KB) = 1081144 + 0: The total amount of wall time = 287.362087 + 0: The maximum resident set size (KB) = 1084220 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel 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.744385 - 0: The maximum resident set size (KB) = 1079380 + 0: The total amount of wall time = 275.582939 + 0: The maximum resident set size (KB) = 1078580 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 842.066041 - 0: The maximum resident set size (KB) = 1227864 + 0: The total amount of wall time = 851.922184 + 0: The maximum resident set size (KB) = 1232524 Test 130 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_debug_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 863.441328 - 0: The maximum resident set size (KB) = 928352 + 0: The total amount of wall time = 860.171664 + 0: The maximum resident set size (KB) = 931792 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 497.676287 - 0: The maximum resident set size (KB) = 1161520 + 0: The total amount of wall time = 491.298743 + 0: The maximum resident set size (KB) = 1156532 Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 833.097687 - 0: The maximum resident set size (KB) = 1294472 + 0: The total amount of wall time = 858.291234 + 0: The maximum resident set size (KB) = 1296916 Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel 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.382728 - 0: The maximum resident set size (KB) = 1087692 + 0: The total amount of wall time = 296.930398 + 0: The maximum resident set size (KB) = 1118848 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 320.783232 - 0: The maximum resident set size (KB) = 740940 + 0: The total amount of wall time = 315.061596 + 0: The maximum resident set size (KB) = 743576 Test 135 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 339.492355 - 0: The maximum resident set size (KB) = 1118940 + 0: The total amount of wall time = 339.937228 + 0: The maximum resident set size (KB) = 1118696 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel 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 = 401.373523 - 0: The maximum resident set size (KB) = 832912 + 0: The total amount of wall time = 402.512774 + 0: The maximum resident set size (KB) = 831084 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 767.095232 - 0: The maximum resident set size (KB) = 866628 + 0: The total amount of wall time = 750.312664 + 0: The maximum resident set size (KB) = 867120 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 853.173180 - 0: The maximum resident set size (KB) = 880052 + 0: The total amount of wall time = 864.678190 + 0: The maximum resident set size (KB) = 880400 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 352.855498 - 0: The maximum resident set size (KB) = 500836 + 0: The total amount of wall time = 364.555775 + 0: The maximum resident set size (KB) = 501144 Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 433.555596 - 0: The maximum resident set size (KB) = 520264 + 0: The total amount of wall time = 433.599265 + 0: The maximum resident set size (KB) = 522460 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,15 +5075,15 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK @@ -5102,7 +5102,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5112,14 +5112,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 174.732692 - 0: The maximum resident set size (KB) = 373364 + 0: The total amount of wall time = 176.940254 + 0: The maximum resident set size (KB) = 375628 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5150,14 +5150,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK @@ -5177,14 +5177,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 456.353040 - 0: The maximum resident set size (KB) = 481540 + 0: The total amount of wall time = 455.372886 + 0: The maximum resident set size (KB) = 481676 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 232.092972 - 0: The maximum resident set size (KB) = 528864 + 0: The total amount of wall time = 232.449456 + 0: The maximum resident set size (KB) = 526520 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 219.296926 - 0: The maximum resident set size (KB) = 529180 + 0: The total amount of wall time = 224.349682 + 0: The maximum resident set size (KB) = 530400 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5262,28 +5262,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 304.658936 - 0: The maximum resident set size (KB) = 588612 + 0: The total amount of wall time = 302.352931 + 0: The maximum resident set size (KB) = 592444 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 75.817324 - 0: The maximum resident set size (KB) = 405468 + 0: The total amount of wall time = 72.272371 + 0: The maximum resident set size (KB) = 405728 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/gnv1_nested_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......NOT OK Comparing sfcf006.nc ............ALT CHECK......NOT OK @@ -5330,28 +5330,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - 0: The total amount of wall time = 259.178396 - 0: The maximum resident set size (KB) = 804588 + 0: The total amount of wall time = 261.145551 + 0: The maximum resident set size (KB) = 804960 Test 148 gnv1_nested_intel FAIL Tries: 2 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 815.129999 - 0: The maximum resident set size (KB) = 570804 + 0: The total amount of wall time = 770.779140 + 0: The maximum resident set size (KB) = 569712 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 557.142689 - 0: The maximum resident set size (KB) = 674672 + 0: The total amount of wall time = 561.011573 + 0: The maximum resident set size (KB) = 676156 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 564.686497 - 0: The maximum resident set size (KB) = 746016 + 0: The total amount of wall time = 562.600796 + 0: The maximum resident set size (KB) = 693160 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 401.329133 - 0: The maximum resident set size (KB) = 692208 + 0: The total amount of wall time = 397.005775 + 0: The maximum resident set size (KB) = 735004 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel 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 = 363.407247 - 0: The maximum resident set size (KB) = 831772 + 0: The total amount of wall time = 359.592440 + 0: The maximum resident set size (KB) = 829700 Test 153 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 369.879821 - 0: The maximum resident set size (KB) = 813308 + 0: The total amount of wall time = 364.605045 + 0: The maximum resident set size (KB) = 816460 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 953.176089 - 0: The maximum resident set size (KB) = 1209980 + 0: The total amount of wall time = 949.407623 + 0: The maximum resident set size (KB) = 1174192 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.403045 - 0: The maximum resident set size (KB) = 1125252 + 0: The total amount of wall time = 148.937060 + 0: The maximum resident set size (KB) = 1143984 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 91.182377 - 0: The maximum resident set size (KB) = 1079364 + 0: The total amount of wall time = 87.960218 + 0: The maximum resident set size (KB) = 1084064 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.002254 - 0: The maximum resident set size (KB) = 1011444 + 0: The total amount of wall time = 141.410578 + 0: The maximum resident set size (KB) = 1017344 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.165180 - 0: The maximum resident set size (KB) = 1019488 + 0: The total amount of wall time = 144.367995 + 0: The maximum resident set size (KB) = 1015404 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.149106 - 0: The maximum resident set size (KB) = 1014672 + 0: The total amount of wall time = 144.413319 + 0: The maximum resident set size (KB) = 1017156 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.763271 - 0: The maximum resident set size (KB) = 1129716 + 0: The total amount of wall time = 147.465229 + 0: The maximum resident set size (KB) = 1133672 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.998073 - 0: The maximum resident set size (KB) = 1121420 + 0: The total amount of wall time = 149.324559 + 0: The maximum resident set size (KB) = 1139856 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.609635 - 0: The maximum resident set size (KB) = 1018056 + 0: The total amount of wall time = 143.527166 + 0: The maximum resident set size (KB) = 1014508 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 335.695977 - 0: The maximum resident set size (KB) = 1055956 + 0: The total amount of wall time = 336.875988 + 0: The maximum resident set size (KB) = 1055732 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 341.102543 - 0: The maximum resident set size (KB) = 1036060 + 0: The total amount of wall time = 336.898028 + 0: The maximum resident set size (KB) = 1032636 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.308729 - 0: The maximum resident set size (KB) = 1133360 + 0: The total amount of wall time = 148.663450 + 0: The maximum resident set size (KB) = 1136220 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.718694 - 0: The maximum resident set size (KB) = 2409432 + 0: The total amount of wall time = 200.998586 + 0: The maximum resident set size (KB) = 2449396 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 211.179966 - 0: The maximum resident set size (KB) = 2436264 + 0: The total amount of wall time = 206.926367 + 0: The maximum resident set size (KB) = 2438476 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 352.182105 - 0: The maximum resident set size (KB) = 1061740 + 0: The total amount of wall time = 353.393557 + 0: The maximum resident set size (KB) = 1060016 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.177197 - 0: The maximum resident set size (KB) = 1130064 + 0: The total amount of wall time = 146.362175 + 0: The maximum resident set size (KB) = 1139996 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 37.904671 - 0: The maximum resident set size (KB) = 263516 + 0: The total amount of wall time = 37.706783 + 0: The maximum resident set size (KB) = 257584 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_lnd_era5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 37.729440 - 0: The maximum resident set size (KB) = 323360 + 0: The total amount of wall time = 37.621511 + 0: The maximum resident set size (KB) = 322924 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/datm_cdeps_lnd_era5_rst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 22.053200 - 0: The maximum resident set size (KB) = 320592 + 0: The total amount of wall time = 21.266173 + 0: The maximum resident set size (KB) = 323604 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 241.782125 - 0: The maximum resident set size (KB) = 1615044 + 0: The total amount of wall time = 242.592537 + 0: The maximum resident set size (KB) = 1601000 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_p8_atmlnd_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 240.768056 - 0: The maximum resident set size (KB) = 1599008 + 0: The total amount of wall time = 243.732255 + 0: The maximum resident set size (KB) = 1609892 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_restart_p8_atmlnd_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 124.145740 - 0: The maximum resident set size (KB) = 893168 + 0: The total amount of wall time = 124.208687 + 0: The maximum resident set size (KB) = 899620 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.947722 - 0: The maximum resident set size (KB) = 1668948 + 0: The total amount of wall time = 93.985240 + 0: The maximum resident set size (KB) = 1662804 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/control_atmwav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.831730 - 0: The maximum resident set size (KB) = 677492 + 0: The total amount of wall time = 90.326766 + 0: The maximum resident set size (KB) = 676552 Test 178 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.176823 - 0: The maximum resident set size (KB) = 3023212 + 0: The total amount of wall time = 226.970479 + 0: The maximum resident set size (KB) = 3022192 Test 179 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.749826 - 0: The maximum resident set size (KB) = 3086372 + 0: The total amount of wall time = 274.737253 + 0: The maximum resident set size (KB) = 3093372 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.802408 - 0: The maximum resident set size (KB) = 3046776 + 0: The total amount of wall time = 293.098306 + 0: The maximum resident set size (KB) = 3110924 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_83719/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6182,8 +6182,8 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1234.763566 - 0: The maximum resident set size (KB) = 4574720 + 0: The total amount of wall time = 1231.536326 + 0: The maximum resident set size (KB) = 4573004 Test 182 regional_atmaq_debug_intel PASS @@ -6192,30 +6192,29 @@ FAILED TESTS: gnv1_nested_intel 148 failed in run_test REGRESSION TEST FAILED -Tue Feb 6 09:55:54 CST 2024 -Elapsed time: 01h:25m:56s. Have a nice day! - -Tue Feb 6 13:42:02 CST 2024 +Thu Feb 8 10:23:18 CST 2024 +Elapsed time: 01h:25m:08s. Have a nice day! +Thu Feb 8 10:28:34 CST 2024 Start Regression test -Testing UFSWM Hash: baa5df9bc1ecd7a6848cc63a4caba044b66a2573 +Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 782 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 725 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_124937/gnv1_nested_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_386460/gnv1_nested_intel Checking test 001 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -6228,15 +6227,15 @@ Checking test 001 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -6249,12 +6248,12 @@ Checking test 001 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK @@ -6262,12 +6261,12 @@ Checking test 001 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 256.778223 - 0: The maximum resident set size (KB) = 804676 + 0: The total amount of wall time = 263.087549 + 0: The maximum resident set size (KB) = 809212 -Test 001 gnv1_nested_intel PASS +Test 001 gnv1_nested_intel PASS Tries: 2 REGRESSION TEST WAS SUCCESSFUL -Tue Feb 6 14:04:00 CST 2024 -Elapsed time: 00h:22m:00s. Have a nice day! +Thu Feb 8 10:57:22 CST 2024 +Elapsed time: 00h:28m:49s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 57899b0f9b..f15d9e134a 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,54 +1,54 @@ -Wed Feb 7 15:53:44 UTC 2024 +Thu Feb 8 12:11:45 UTC 2024 Start Regression test -Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc +Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) + c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 660 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 508 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 1074 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 741 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 1456 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 581 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 715 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 266 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 907 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1091 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 1180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 2086 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1775 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 662 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 1010 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 683 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 959 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1328 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 276 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1477 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 998 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8_mixedmode_intel + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (remotes/origin/sppint-2-ga556180) +Compile atmaero_intel elapsed time 908 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 750 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 897 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 787 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 871 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 665 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 930 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1069 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 727 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1059 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 747 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 866 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 680 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1284 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 670 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 2087 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 957 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1923 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 1243 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 691 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 320 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 330.513243 -The maximum resident set size (KB) = 2974844 +The total amount of wall time = 322.772414 +The maximum resident set size (KB) = 2972708 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 918.624876 -The maximum resident set size (KB) = 1590416 +The total amount of wall time = 910.731032 +The maximum resident set size (KB) = 1587172 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 1008.782052 -The maximum resident set size (KB) = 1714808 +The total amount of wall time = 983.544800 +The maximum resident set size (KB) = 1706440 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 472.710851 -The maximum resident set size (KB) = 846280 +The total amount of wall time = 456.242341 +The maximum resident set size (KB) = 847432 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1069.206931 -The maximum resident set size (KB) = 1569008 +The total amount of wall time = 1065.338692 +The maximum resident set size (KB) = 1566980 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_debug_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1407.709316 -The maximum resident set size (KB) = 1604712 +The total amount of wall time = 1404.169036 +The maximum resident set size (KB) = 1598984 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.657167 -The maximum resident set size (KB) = 3001628 +The total amount of wall time = 366.702921 +The maximum resident set size (KB) = 3001884 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.472293 -The maximum resident set size (KB) = 3000956 +The total amount of wall time = 364.742969 +The maximum resident set size (KB) = 3002400 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 215.964856 -The maximum resident set size (KB) = 3059360 +The total amount of wall time = 218.301189 +The maximum resident set size (KB) = 3063012 Test 009 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -703,14 +703,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 367.013057 -The maximum resident set size (KB) = 3028440 +The total amount of wall time = 366.866719 +The maximum resident set size (KB) = 3028492 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -763,14 +763,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 221.360615 -The maximum resident set size (KB) = 3080500 +The total amount of wall time = 220.874218 +The maximum resident set size (KB) = 3080068 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -823,14 +823,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 329.300456 -The maximum resident set size (KB) = 3316088 +The total amount of wall time = 325.012400 +The maximum resident set size (KB) = 3316164 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -883,14 +883,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.879871 -The maximum resident set size (KB) = 2997776 +The total amount of wall time = 357.907522 +The maximum resident set size (KB) = 2997104 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -943,14 +943,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 302.249143 -The maximum resident set size (KB) = 2924608 +The total amount of wall time = 303.652377 +The maximum resident set size (KB) = 2923216 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.355738 -The maximum resident set size (KB) = 3000832 +The total amount of wall time = 364.033549 +The maximum resident set size (KB) = 3004436 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_bmark_p8_intel Checking test 016 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 755.333633 -The maximum resident set size (KB) = 3952344 +The total amount of wall time = 756.259365 +The maximum resident set size (KB) = 3952964 Test 016 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_bmark_p8_intel Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1125,14 +1125,14 @@ Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 521.140415 -The maximum resident set size (KB) = 4250524 +The total amount of wall time = 541.490510 +The maximum resident set size (KB) = 4256924 Test 017 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_s2sa_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_s2sa_p8_intel Checking test 018 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1183,14 +1183,14 @@ Checking test 018 cpld_s2sa_p8_intel 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 = 342.927362 -The maximum resident set size (KB) = 2967324 +The total amount of wall time = 343.894288 +The maximum resident set size (KB) = 2967508 Test 018 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_noaero_p8_intel Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1254,14 +1254,14 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 273.397148 -The maximum resident set size (KB) = 1585756 +The total amount of wall time = 277.108455 +The maximum resident set size (KB) = 1584664 Test 019 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_nowave_noaero_p8_intel Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel 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 = 276.827902 -The maximum resident set size (KB) = 1635196 +The total amount of wall time = 282.769568 +The maximum resident set size (KB) = 1636840 Test 020 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1392,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 283.147633 -The maximum resident set size (KB) = 1638880 +The total amount of wall time = 274.684919 +The maximum resident set size (KB) = 1634592 Test 021 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_c48_intel 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 = 412.286901 -The maximum resident set size (KB) = 2655792 +The total amount of wall time = 408.146202 +The maximum resident set size (KB) = 2650456 Test 022 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_faster_intel Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 023 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 361.122304 -The maximum resident set size (KB) = 3002096 +The total amount of wall time = 358.005204 +The maximum resident set size (KB) = 3003900 Test 023 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 931.458020 -The maximum resident set size (KB) = 1598116 +The total amount of wall time = 929.239085 +The maximum resident set size (KB) = 1597568 Test 024 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 468.094791 -The maximum resident set size (KB) = 899216 +The total amount of wall time = 469.141027 +The maximum resident set size (KB) = 898064 Test 025 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1722,14 +1722,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1082.320252 -The maximum resident set size (KB) = 1569540 +The total amount of wall time = 1077.611155 +The maximum resident set size (KB) = 1577576 Test 026 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1781,14 +1781,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1495.742655 -The maximum resident set size (KB) = 1613380 +The total amount of wall time = 1489.582749 +The maximum resident set size (KB) = 1619680 Test 027 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.964981 -The maximum resident set size (KB) = 572284 +The total amount of wall time = 215.004933 +The maximum resident set size (KB) = 571512 Test 028 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.416683 -The maximum resident set size (KB) = 524040 +The total amount of wall time = 133.747232 +The maximum resident set size (KB) = 521376 Test 029 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1855,14 +1855,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.999875 -The maximum resident set size (KB) = 526468 +The total amount of wall time = 139.499754 +The maximum resident set size (KB) = 527656 Test 030 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1873,14 +1873,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.424029 -The maximum resident set size (KB) = 521612 +The total amount of wall time = 134.980258 +The maximum resident set size (KB) = 523128 Test 031 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1891,14 +1891,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.899182 -The maximum resident set size (KB) = 523820 +The total amount of wall time = 137.075317 +The maximum resident set size (KB) = 522056 Test 032 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1937,14 +1937,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.421638 -The maximum resident set size (KB) = 717204 +The total amount of wall time = 329.632449 +The maximum resident set size (KB) = 715436 Test 033 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c48.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 335.344933 -The maximum resident set size (KB) = 715104 +The total amount of wall time = 329.697470 +The maximum resident set size (KB) = 714940 Test 034 control_c48.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 537.255373 -The maximum resident set size (KB) = 638084 +The total amount of wall time = 531.463784 +The maximum resident set size (KB) = 637944 Test 035 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2019,14 +2019,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 604.466260 -The maximum resident set size (KB) = 949568 +The total amount of wall time = 585.159398 +The maximum resident set size (KB) = 952192 Test 036 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 561.651934 -The maximum resident set size (KB) = 1093284 +The total amount of wall time = 516.438040 +The maximum resident set size (KB) = 1094076 Test 037 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2087,28 +2087,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.767666 -The maximum resident set size (KB) = 535380 +The total amount of wall time = 88.311892 +The maximum resident set size (KB) = 531904 Test 038 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.453910 -The maximum resident set size (KB) = 331088 +The total amount of wall time = 50.558205 +The maximum resident set size (KB) = 337064 Test 039 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2119,14 +2119,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.160856 -The maximum resident set size (KB) = 533604 +The total amount of wall time = 83.674427 +The maximum resident set size (KB) = 528260 Test 040 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.968061 -The maximum resident set size (KB) = 524756 +The total amount of wall time = 133.689079 +The maximum resident set size (KB) = 524600 Test 041 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2163,14 +2163,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.240492 -The maximum resident set size (KB) = 522308 +The total amount of wall time = 134.159394 +The maximum resident set size (KB) = 522968 Test 042 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2217,14 +2217,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.380858 -The maximum resident set size (KB) = 1506936 +The total amount of wall time = 163.142716 +The maximum resident set size (KB) = 1498532 Test 043 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2271,14 +2271,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.603604 -The maximum resident set size (KB) = 1504792 +The total amount of wall time = 163.898079 +The maximum resident set size (KB) = 1495984 Test 044 control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_ugwpv1_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2325,14 +2325,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.750044 -The maximum resident set size (KB) = 1501460 +The total amount of wall time = 160.150591 +The maximum resident set size (KB) = 1505432 Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2371,14 +2371,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 91.971087 -The maximum resident set size (KB) = 692192 +The total amount of wall time = 90.567027 +The maximum resident set size (KB) = 689420 Test 046 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2425,14 +2425,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 168.902673 -The maximum resident set size (KB) = 1488876 +The total amount of wall time = 163.307225 +The maximum resident set size (KB) = 1488620 Test 047 control_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_restart_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 95.664512 -The maximum resident set size (KB) = 696304 +The total amount of wall time = 89.466469 +The maximum resident set size (KB) = 692724 Test 048 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 172.798270 -The maximum resident set size (KB) = 1502776 +The total amount of wall time = 168.177930 +The maximum resident set size (KB) = 1498708 Test 049 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2571,14 +2571,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 149.847120 -The maximum resident set size (KB) = 1589448 +The total amount of wall time = 146.539529 +The maximum resident set size (KB) = 1597580 Test 050 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 294.503327 -The maximum resident set size (KB) = 1500668 +The total amount of wall time = 294.833818 +The maximum resident set size (KB) = 1505424 Test 051 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 223.787528 -The maximum resident set size (KB) = 1567736 +The total amount of wall time = 226.376626 +The maximum resident set size (KB) = 1553972 Test 052 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.087446 -The maximum resident set size (KB) = 1510760 +The total amount of wall time = 169.877046 +The maximum resident set size (KB) = 1512596 Test 053 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2759,14 +2759,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 199.983725 -The maximum resident set size (KB) = 1509708 +The total amount of wall time = 203.845086 +The maximum resident set size (KB) = 1518516 Test 054 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2777,28 +2777,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 293.472118 -The maximum resident set size (KB) = 607800 +The total amount of wall time = 291.454854 +The maximum resident set size (KB) = 605920 Test 055 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 159.440091 -The maximum resident set size (KB) = 778004 +The total amount of wall time = 155.249031 +The maximum resident set size (KB) = 777340 Test 056 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2809,14 +2809,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 305.711290 -The maximum resident set size (KB) = 604648 +The total amount of wall time = 303.047275 +The maximum resident set size (KB) = 605796 Test 057 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 172.884082 -The maximum resident set size (KB) = 662004 +The total amount of wall time = 172.278279 +The maximum resident set size (KB) = 668288 Test 058 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_noquilt_intel Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2842,28 +2842,28 @@ Checking test 059 regional_noquilt_intel 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 = 283.471570 -The maximum resident set size (KB) = 1143584 +The total amount of wall time = 280.805624 +The maximum resident set size (KB) = 1138164 Test 059 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_netcdf_parallel_intel Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 288.751028 -The maximum resident set size (KB) = 607272 +The total amount of wall time = 285.101281 +The maximum resident set size (KB) = 607028 Test 060 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_2dwrtdecomp_intel Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2874,14 +2874,14 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.923947 -The maximum resident set size (KB) = 608404 +The total amount of wall time = 289.825775 +The maximum resident set size (KB) = 608984 Test 061 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_wofs_intel Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 390.057341 -The maximum resident set size (KB) = 1578388 +The total amount of wall time = 372.335239 +The maximum resident set size (KB) = 1579964 Test 062 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2946,14 +2946,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 415.346375 -The maximum resident set size (KB) = 915168 +The total amount of wall time = 408.266116 +The maximum resident set size (KB) = 915576 Test 063 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2964,14 +2964,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 243.872370 -The maximum resident set size (KB) = 1089128 +The total amount of wall time = 240.781829 +The maximum resident set size (KB) = 1090784 Test 064 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3018,14 +3018,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 428.051462 -The maximum resident set size (KB) = 917212 +The total amount of wall time = 421.490321 +The maximum resident set size (KB) = 914780 Test 065 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 373.960842 -The maximum resident set size (KB) = 1006472 +The total amount of wall time = 370.198457 +The maximum resident set size (KB) = 1006440 Test 066 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3118,14 +3118,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 209.685683 -The maximum resident set size (KB) = 784528 +The total amount of wall time = 212.308251 +The maximum resident set size (KB) = 783116 Test 067 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3172,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 409.685192 -The maximum resident set size (KB) = 913196 +The total amount of wall time = 407.502892 +The maximum resident set size (KB) = 911192 Test 068 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3226,14 +3226,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 427.604618 -The maximum resident set size (KB) = 912596 +The total amount of wall time = 423.159391 +The maximum resident set size (KB) = 912000 Test 069 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3272,14 +3272,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 304.102430 -The maximum resident set size (KB) = 787752 +The total amount of wall time = 302.415086 +The maximum resident set size (KB) = 782380 Test 070 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3326,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.050979 -The maximum resident set size (KB) = 908852 +The total amount of wall time = 210.357208 +The maximum resident set size (KB) = 906692 Test 071 hrrr_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3380,14 +3380,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.497744 -The maximum resident set size (KB) = 907884 +The total amount of wall time = 212.480979 +The maximum resident set size (KB) = 909184 Test 072 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3434,28 +3434,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 188.754311 -The maximum resident set size (KB) = 996164 +The total amount of wall time = 187.693284 +The maximum resident set size (KB) = 997904 Test 073 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 116.017535 -The maximum resident set size (KB) = 742048 +The total amount of wall time = 110.324867 +The maximum resident set size (KB) = 743852 Test 074 hrrr_control_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3502,14 +3502,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 402.628732 -The maximum resident set size (KB) = 908068 +The total amount of wall time = 400.553044 +The maximum resident set size (KB) = 909704 Test 075 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 490.056607 -The maximum resident set size (KB) = 1873752 +The total amount of wall time = 488.987399 +The maximum resident set size (KB) = 1872972 Test 076 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 477.536426 -The maximum resident set size (KB) = 1860264 +The total amount of wall time = 472.407966 +The maximum resident set size (KB) = 1859360 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3564,14 +3564,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 340.700332 -The maximum resident set size (KB) = 600372 +The total amount of wall time = 336.156818 +The maximum resident set size (KB) = 602952 Test 078 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3582,14 +3582,14 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 341.729656 -The maximum resident set size (KB) = 596900 +The total amount of wall time = 332.533486 +The maximum resident set size (KB) = 594364 Test 079 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_ras_intel Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3600,26 +3600,26 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.901098 -The maximum resident set size (KB) = 562052 +The total amount of wall time = 184.950621 +The maximum resident set size (KB) = 559432 Test 080 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wam_intel Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 123.407945 -The maximum resident set size (KB) = 272580 +The total amount of wall time = 119.338500 +The maximum resident set size (KB) = 272840 Test 081 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_faster_intel Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.377258 -The maximum resident set size (KB) = 1501476 +The total amount of wall time = 157.937879 +The maximum resident set size (KB) = 1503168 Test 082 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_control_faster_intel Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3684,14 +3684,14 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.648520 -The maximum resident set size (KB) = 611940 +The total amount of wall time = 282.310219 +The maximum resident set size (KB) = 609908 Test 083 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3718,364 +3718,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 162.699391 -The maximum resident set size (KB) = 689012 +The total amount of wall time = 163.533173 +The maximum resident set size (KB) = 684512 Test 084 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.707859 -The maximum resident set size (KB) = 690668 +The total amount of wall time = 160.836127 +The maximum resident set size (KB) = 693188 Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.279197 -The maximum resident set size (KB) = 689716 +The total amount of wall time = 180.703328 +The maximum resident set size (KB) = 693420 Test 086 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.391404 -The maximum resident set size (KB) = 693492 +The total amount of wall time = 162.417812 +The maximum resident set size (KB) = 692092 Test 087 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.674496 -The maximum resident set size (KB) = 731928 +The total amount of wall time = 257.539294 +The maximum resident set size (KB) = 732228 Test 088 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 392.407883 -The maximum resident set size (KB) = 729960 +The total amount of wall time = 253.758498 +The maximum resident set size (KB) = 731240 Test 089 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.302493 -The maximum resident set size (KB) = 705168 +The total amount of wall time = 167.140986 +The maximum resident set size (KB) = 703804 Test 090 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.950019 -The maximum resident set size (KB) = 744616 +The total amount of wall time = 166.628987 +The maximum resident set size (KB) = 746256 Test 091 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.254619 -The maximum resident set size (KB) = 1520100 +The total amount of wall time = 169.847887 +The maximum resident set size (KB) = 1521184 Test 092 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_debug_intel Checking test 093 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1064.558758 -The maximum resident set size (KB) = 629556 +The total amount of wall time = 1057.576212 +The maximum resident set size (KB) = 632792 Test 093 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.011903 -The maximum resident set size (KB) = 1074088 +The total amount of wall time = 304.227471 +The maximum resident set size (KB) = 1077604 Test 094 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.416471 -The maximum resident set size (KB) = 1066616 +The total amount of wall time = 298.599585 +The maximum resident set size (KB) = 1069440 Test 095 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_gf_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_gf_debug_intel Checking test 096 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.029740 -The maximum resident set size (KB) = 1078092 +The total amount of wall time = 304.371168 +The maximum resident set size (KB) = 1071732 Test 096 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_c3_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_c3_debug_intel Checking test 097 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.489699 -The maximum resident set size (KB) = 1069828 +The total amount of wall time = 305.726062 +The maximum resident set size (KB) = 1074888 Test 097 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_unified_drag_suite_debug_intel Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.202265 -The maximum resident set size (KB) = 1077420 +The total amount of wall time = 303.275215 +The maximum resident set size (KB) = 1080748 Test 098 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_diag_debug_intel Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 317.323312 -The maximum resident set size (KB) = 1162900 +The total amount of wall time = 314.584640 +The maximum resident set size (KB) = 1155332 Test 099 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_cires_ugwp_debug_intel Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.767029 -The maximum resident set size (KB) = 1076684 +The total amount of wall time = 307.750164 +The maximum resident set size (KB) = 1073920 Test 100 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_unified_ugwp_debug_intel Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.000754 -The maximum resident set size (KB) = 1075944 +The total amount of wall time = 308.818130 +The maximum resident set size (KB) = 1076280 Test 101 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_lndp_debug_intel Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.330130 -The maximum resident set size (KB) = 1079796 +The total amount of wall time = 303.969573 +The maximum resident set size (KB) = 1078336 Test 102 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_progcld_thompson_debug_intel Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.995172 -The maximum resident set size (KB) = 1073152 +The total amount of wall time = 304.074241 +The maximum resident set size (KB) = 1073032 Test 103 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_noah_debug_intel Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.778462 -The maximum resident set size (KB) = 1078908 +The total amount of wall time = 297.279825 +The maximum resident set size (KB) = 1072620 Test 104 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_debug_intel Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.284280 -The maximum resident set size (KB) = 1074928 +The total amount of wall time = 301.181075 +The maximum resident set size (KB) = 1071460 Test 105 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 494.631992 -The maximum resident set size (KB) = 1071600 +The total amount of wall time = 491.996978 +The maximum resident set size (KB) = 1070932 Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1beta_debug_intel Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.798437 -The maximum resident set size (KB) = 1072476 +The total amount of wall time = 297.225742 +The maximum resident set size (KB) = 1068100 Test 107 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_clm_lake_debug_intel Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 353.292868 -The maximum resident set size (KB) = 1075312 +The total amount of wall time = 351.399253 +The maximum resident set size (KB) = 1075296 Test 108 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_flake_debug_intel Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.531471 -The maximum resident set size (KB) = 1078596 +The total amount of wall time = 301.904245 +The maximum resident set size (KB) = 1076368 Test 109 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/gnv1_c96_no_nest_debug_intel Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4116,26 +4116,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 529.239028 -The maximum resident set size (KB) = 1076592 +The total amount of wall time = 525.187740 +The maximum resident set size (KB) = 1079352 Test 110 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wam_debug_intel Checking test 111 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.153766 -The maximum resident set size (KB) = 298180 +The total amount of wall time = 295.899096 +The maximum resident set size (KB) = 296816 Test 111 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 247.993229 -The maximum resident set size (KB) = 953804 +The total amount of wall time = 227.670595 +The maximum resident set size (KB) = 955232 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4200,14 +4200,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 349.607595 -The maximum resident set size (KB) = 789432 +The total amount of wall time = 335.725423 +The maximum resident set size (KB) = 789816 Test 113 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4254,14 +4254,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.085784 -The maximum resident set size (KB) = 788244 +The total amount of wall time = 179.182742 +The maximum resident set size (KB) = 787528 Test 114 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4308,14 +4308,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 322.752539 -The maximum resident set size (KB) = 852820 +The total amount of wall time = 305.603189 +The maximum resident set size (KB) = 851512 Test 115 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4362,14 +4362,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.937391 -The maximum resident set size (KB) = 839900 +The total amount of wall time = 159.646100 +The maximum resident set size (KB) = 841524 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4416,14 +4416,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.163299 -The maximum resident set size (KB) = 788500 +The total amount of wall time = 184.542179 +The maximum resident set size (KB) = 788688 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4462,28 +4462,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 251.751808 -The maximum resident set size (KB) = 688512 +The total amount of wall time = 249.992297 +The maximum resident set size (KB) = 688444 Test 118 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 95.749365 -The maximum resident set size (KB) = 670148 +The total amount of wall time = 93.291122 +The maximum resident set size (KB) = 670088 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4499,40 +4499,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 122.351734 -The maximum resident set size (KB) = 1006164 +The total amount of wall time = 120.036268 +The maximum resident set size (KB) = 1006688 Test 120 conus13km_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 68.820318 -The maximum resident set size (KB) = 1006100 +The total amount of wall time = 62.068988 +The maximum resident set size (KB) = 1004968 Test 121 conus13km_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 77.317389 -The maximum resident set size (KB) = 881608 +The total amount of wall time = 71.888271 +The maximum resident set size (KB) = 881768 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4579,42 +4579,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 230.368168 -The maximum resident set size (KB) = 812344 +The total amount of wall time = 229.924763 +The maximum resident set size (KB) = 811036 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.559679 -The maximum resident set size (KB) = 945724 +The total amount of wall time = 295.211871 +The maximum resident set size (KB) = 950276 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.214124 -The maximum resident set size (KB) = 949904 +The total amount of wall time = 288.904924 +The maximum resident set size (KB) = 948412 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4628,14 +4628,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 896.293792 -The maximum resident set size (KB) = 1039444 +The total amount of wall time = 885.969783 +The maximum resident set size (KB) = 1035812 Test 126 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_debug_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4649,81 +4649,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 908.427563 -The maximum resident set size (KB) = 710836 +The total amount of wall time = 890.813272 +The maximum resident set size (KB) = 710492 Test 127 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 511.351738 -The maximum resident set size (KB) = 1037524 +The total amount of wall time = 510.687907 +The maximum resident set size (KB) = 1037972 Test 128 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 892.895547 -The maximum resident set size (KB) = 1102480 +The total amount of wall time = 891.181302 +The maximum resident set size (KB) = 1099836 Test 129 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.650813 -The maximum resident set size (KB) = 981688 +The total amount of wall time = 298.315154 +The maximum resident set size (KB) = 982816 Test 130 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 394.481721 -The maximum resident set size (KB) = 619516 +The total amount of wall time = 351.343193 +The maximum resident set size (KB) = 620944 Test 131 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 411.301803 -The maximum resident set size (KB) = 967176 +The total amount of wall time = 320.014688 +The maximum resident set size (KB) = 966704 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,14 +4732,14 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 453.285626 -The maximum resident set size (KB) = 661900 +The total amount of wall time = 421.291448 +The maximum resident set size (KB) = 666536 Test 133 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4748,14 +4748,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 803.447349 -The maximum resident set size (KB) = 686644 +The total amount of wall time = 750.626780 +The maximum resident set size (KB) = 691316 Test 134 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 971.357791 -The maximum resident set size (KB) = 705148 +The total amount of wall time = 933.836052 +The maximum resident set size (KB) = 704968 Test 135 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 330.889285 -The maximum resident set size (KB) = 389728 +The total amount of wall time = 320.150492 +The maximum resident set size (KB) = 387648 Test 136 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4811,14 +4811,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 419.473789 -The maximum resident set size (KB) = 410768 +The total amount of wall time = 408.399377 +The maximum resident set size (KB) = 410968 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4865,14 +4865,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 222.731207 -The maximum resident set size (KB) = 288720 +The total amount of wall time = 174.809942 +The maximum resident set size (KB) = 282528 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 527.320235 -The maximum resident set size (KB) = 372472 +The total amount of wall time = 507.720307 +The maximum resident set size (KB) = 376972 Test 139 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4970,14 +4970,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 269.303929 -The maximum resident set size (KB) = 420256 +The total amount of wall time = 222.447786 +The maximum resident set size (KB) = 422436 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4999,14 +4999,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 256.250607 -The maximum resident set size (KB) = 419680 +The total amount of wall time = 206.579523 +The maximum resident set size (KB) = 417820 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,97 +5015,43 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 308.416034 -The maximum resident set size (KB) = 486664 +The total amount of wall time = 268.429851 +The maximum resident set size (KB) = 488184 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 120.711061 -The maximum resident set size (KB) = 314292 +The total amount of wall time = 95.605926 +The maximum resident set size (KB) = 315000 Test 143 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/gnv1_nested_intel -Checking test 144 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - -The total amount of wall time = 261.270732 -The maximum resident set size (KB) = 676472 - -Test 144 gnv1_nested_intel FAIL Tries: 2 - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 823.355236 -The maximum resident set size (KB) = 501744 +The total amount of wall time = 816.259567 +The maximum resident set size (KB) = 498564 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5115,15 +5061,15 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 568.327644 -The maximum resident set size (KB) = 533552 +The total amount of wall time = 522.295834 +The maximum resident set size (KB) = 530228 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5133,75 +5079,75 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 538.223518 -The maximum resident set size (KB) = 709040 +The total amount of wall time = 529.409840 +The maximum resident set size (KB) = 707012 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc ............ALT CHECK......NOT OK - Comparing sfcf003.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f003.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f003.nc ............ALT CHECK......NOT OK - Comparing ocn_2020_08_25_15.nc ............ALT CHECK......NOT OK - Comparing 20200825.150000.out_grd.ww3 .........NOT OK - Comparing 20200825.150000.out_pnt.ww3 .........NOT OK +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 392.510766 -The maximum resident set size (KB) = 709580 +The total amount of wall time = 384.686943 +The maximum resident set size (KB) = 710620 -Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 +Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_docn_intel -Checking test 149 hafs_regional_docn_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_docn_intel +Checking test 148 hafs_regional_docn_intel 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 -The total amount of wall time = 519.842307 -The maximum resident set size (KB) = 658060 +The total amount of wall time = 392.604842 +The maximum resident set size (KB) = 653792 -Test 149 hafs_regional_docn_intel PASS +Test 148 hafs_regional_docn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_docn_oisst_intel -Checking test 150 hafs_regional_docn_oisst_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_docn_oisst_intel +Checking test 149 hafs_regional_docn_oisst_intel 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 -The total amount of wall time = 498.404810 -The maximum resident set size (KB) = 639940 +The total amount of wall time = 396.925525 +The maximum resident set size (KB) = 640920 -Test 150 hafs_regional_docn_oisst_intel PASS +Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/hafs_regional_datm_cdeps_intel -Checking test 151 hafs_regional_datm_cdeps_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_datm_cdeps_intel +Checking test 150 hafs_regional_datm_cdeps_intel 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 = 958.258521 -The maximum resident set size (KB) = 881448 +The total amount of wall time = 951.862273 +The maximum resident set size (KB) = 881080 -Test 151 hafs_regional_datm_cdeps_intel PASS +Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_atmlnd_sbs_intel -Checking test 152 control_p8_atmlnd_sbs_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_atmlnd_sbs_intel +Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5289,15 +5235,15 @@ Checking test 152 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 285.081771 -The maximum resident set size (KB) = 1541728 +The total amount of wall time = 274.928982 +The maximum resident set size (KB) = 1543700 -Test 152 control_p8_atmlnd_sbs_intel PASS +Test 151 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_p8_atmlnd_intel -Checking test 153 control_p8_atmlnd_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_atmlnd_intel +Checking test 152 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5385,15 +5331,15 @@ Checking test 153 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 283.940278 -The maximum resident set size (KB) = 1543680 +The total amount of wall time = 277.779951 +The maximum resident set size (KB) = 1548328 -Test 153 control_p8_atmlnd_intel PASS +Test 152 control_p8_atmlnd_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/control_restart_p8_atmlnd_intel -Checking test 154 control_restart_p8_atmlnd_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_p8_atmlnd_intel +Checking test 153 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5413,15 +5359,15 @@ Checking test 154 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 152.222866 -The maximum resident set size (KB) = 739032 +The total amount of wall time = 151.491189 +The maximum resident set size (KB) = 739472 -Test 154 control_restart_p8_atmlnd_intel PASS +Test 153 control_restart_p8_atmlnd_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/atmaero_control_p8_intel -Checking test 155 atmaero_control_p8_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_intel +Checking test 154 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5464,15 +5410,15 @@ Checking test 155 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 252.266101 -The maximum resident set size (KB) = 2854724 +The total amount of wall time = 240.375083 +The maximum resident set size (KB) = 2849900 -Test 155 atmaero_control_p8_intel PASS +Test 154 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/atmaero_control_p8_rad_intel -Checking test 156 atmaero_control_p8_rad_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_rad_intel +Checking test 155 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5515,15 +5461,15 @@ Checking test 156 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 291.411057 -The maximum resident set size (KB) = 2910232 +The total amount of wall time = 278.341096 +The maximum resident set size (KB) = 2911956 -Test 156 atmaero_control_p8_rad_intel PASS +Test 155 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/atmaero_control_p8_rad_micro_intel -Checking test 157 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_rad_micro_intel +Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5566,15 +5512,15 @@ Checking test 157 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 303.860176 -The maximum resident set size (KB) = 2925568 +The total amount of wall time = 298.926042 +The maximum resident set size (KB) = 2919712 -Test 157 atmaero_control_p8_rad_micro_intel PASS +Test 156 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_153932/regional_atmaq_debug_intel -Checking test 158 regional_atmaq_debug_intel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_atmaq_debug_intel +Checking test 157 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5587,114 +5533,10 @@ Checking test 158 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1338.763818 -The maximum resident set size (KB) = 4440144 - -Test 158 regional_atmaq_debug_intel PASS - -FAILED TESTS: -144 gnv1_nested_intel failed in check_result -gnv1_nested_intel 144 failed in run_test -148 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 148 failed in run_test - -REGRESSION TEST FAILED -Wed Feb 7 17:26:02 UTC 2024 -Elapsed time: 01h:32m:19s. Have a nice day! -Wed Feb 7 18:57:08 UTC 2024 -Start Regression test - -Testing UFSWM Hash: b4fb66da291dfbc181af46bcafd26619d8047ebc -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 6a42a57224d2d2b83f6b656053988f2dc8d36970 FV3 (remotes/origin/sfc_coldstart) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafs_mom6w_intel elapsed time 597 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 584 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182304/gnv1_nested_intel -Checking test 001 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - -The total amount of wall time = 242.176367 -The maximum resident set size (KB) = 678668 - -Test 001 gnv1_nested_intel FAIL Tries: 2 - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240126/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_182304/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - -The total amount of wall time = 385.362715 -The maximum resident set size (KB) = 712144 +The total amount of wall time = 1320.210491 +The maximum resident set size (KB) = 4439436 -Test 002 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Test 157 regional_atmaq_debug_intel PASS -FAILED TESTS: -001 gnv1_nested_intel failed in check_result -gnv1_nested_intel 001 failed in run_test -REGRESSION TEST FAILED -Wed Feb 7 19:21:03 UTC 2024 -Elapsed time: 00h:23m:56s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL From 760e00254350e828aed5a627b4821c90997f1ad6 Mon Sep 17 00:00:00 2001 From: Cameron Book <43379611+ulmononian@users.noreply.github.com> Date: Fri, 9 Feb 2024 21:27:17 -0800 Subject: [PATCH 04/10] Updates for Gaea C5 & F2/F5 Transition + Fix out of bound errors in block_atmos_copy routines in fv3atm #2124 (#2115) - Gaea C5 modulefile & DISKNM update: closes issues Gaea F2 to F5 file system migration #2101 - Bring in the global-workflow detect_machine.sh to keep consistent between projects. (Closes Bring in detect_machine.sh from global workflow for consistency across the community. #2096 ) - Fix out of bound errors in block_atmos_copy routines in fv3atm --- FV3 | 2 +- ...intel.cmake => configure_gaea.intel.cmake} | 0 ...s_gaea-c5.intel.lua => ufs_gaea.intel.lua} | 4 +- tests/ci/Dockerfile | 2 +- tests/compile.sh | 4 +- tests/default_vars.sh | 2 +- tests/detect_machine.sh | 166 +- ...slurm.IN_gaea-c5 => compile_slurm.IN_gaea} | 0 ...fv3_slurm.IN_gaea-c5 => fv3_slurm.IN_gaea} | 0 tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 1132 +++---- tests/logs/RegressionTests_derecho.log | 1598 +++++----- ...s_gaea-c5.log => RegressionTests_gaea.log} | 2718 ++++++++++------- tests/logs/RegressionTests_hera.log | 1610 +++++----- tests/logs/RegressionTests_hercules.log | 1626 +++++----- tests/logs/RegressionTests_jet.log | 1225 ++++---- tests/logs/RegressionTests_orion.log | 1391 ++++----- tests/logs/RegressionTests_wcoss2.log | 1014 +++--- tests/module-setup.sh | 6 +- tests/opnReqTest | 2 +- tests/rt.conf | 6 +- tests/rt.sh | 20 +- tests/rt_utils.sh | 8 +- tests/run_test.sh | 7 +- tests/tests/regional_atmaq | 2 - tests/tests/regional_atmaq_debug | 2 +- tests/tests/regional_atmaq_faster | 2 +- 29 files changed, 6342 insertions(+), 6303 deletions(-) rename cmake/{configure_gaea-c5.intel.cmake => configure_gaea.intel.cmake} (100%) rename modulefiles/{ufs_gaea-c5.intel.lua => ufs_gaea.intel.lua} (78%) rename tests/fv3_conf/{compile_slurm.IN_gaea-c5 => compile_slurm.IN_gaea} (100%) rename tests/fv3_conf/{fv3_slurm.IN_gaea-c5 => fv3_slurm.IN_gaea} (100%) rename tests/logs/{RegressionTests_gaea-c5.log => RegressionTests_gaea.log} (70%) diff --git a/FV3 b/FV3 index 9dec0faa6e..28bfc365eb 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9dec0faa6eafefc4b01f3cd117231619fb0670f4 +Subproject commit 28bfc365eb65364f1b4972a870837640cb7331a3 diff --git a/cmake/configure_gaea-c5.intel.cmake b/cmake/configure_gaea.intel.cmake similarity index 100% rename from cmake/configure_gaea-c5.intel.cmake rename to cmake/configure_gaea.intel.cmake diff --git a/modulefiles/ufs_gaea-c5.intel.lua b/modulefiles/ufs_gaea.intel.lua similarity index 78% rename from modulefiles/ufs_gaea-c5.intel.lua rename to modulefiles/ufs_gaea.intel.lua index 0162442940..746bbef471 100644 --- a/modulefiles/ufs_gaea-c5.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -10,8 +10,8 @@ load("intel-classic/2023.1.0") load("cray-mpich/8.1.25") load("python/3.9.12") -prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") -prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/modulefiles") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 6b8f76d2a3..966b94aa3b 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -13,7 +13,7 @@ ENV test_name=$test_name ENV run_case=$run_case ENV CI_TEST=true ENV RT_COMPILER=gnu -ENV RT_MACHINE=linux +ENV MACHINE=linux ENV MACHINE_ID=linux # ACCNR CAN BE ANYTHING; DOCKER DOES NOT NEED THIS ENV ACCNR=nems diff --git a/tests/compile.sh b/tests/compile.sh index 567c80c756..284fb51cc0 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -58,8 +58,8 @@ if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} else # Activate lua environment for gaea c5 - if [[ $MACHINE_ID == gaea-c5 ]]; then - source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh + if [[ $MACHINE_ID == gaea ]]; then + module reset fi # Load fv3 module module use $PATHTR/modulefiles diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 570b6e9cae..01b67e2731 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -216,7 +216,7 @@ elif [[ $MACHINE_ID = s4 ]]; then ICE_tasks_cpl_bmrk=48 WAV_tasks_cpl_bmrk=80 -elif [[ $MACHINE_ID = gaea-c5 ]]; then +elif [[ $MACHINE_ID = gaea ]]; then TPN=128 diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 09607c46ba..98839e2c70 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -1,73 +1,41 @@ #!/bin/bash -# Do not set ACCNR here or it will break the per-system defaults in rt.sh. - +# The authoritative copy of this script lives in the ufs-weather-model at: +# https://github.com/ufs-community/ufs-weather-model/blob/develop/tests/detect_machine.sh +# If any local modifications are made or new platform support added, +# please consider opening an issue and a PR to the ufs-weather-model +# so that this copy remains in sync with its authoritative source +# +# Thank you for your contribution + +# If the MACHINE_ID variable is set, skip this script. +[[ -n ${MACHINE_ID:-} ]] && return + +# First detect w/ hostname case $(hostname -f) in - clogin01.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin02.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin03.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin04.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin05.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin06.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin07.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin08.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - clogin09.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus - - dlogin01.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin02.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin03.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin04.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin05.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin06.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin07.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin08.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - dlogin09.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood - - alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - alogin03.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - - gaea51.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea51 - gaea52.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea52 - gaea53.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea53 - gaea54.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea54 - gaea55.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea55 - gaea56.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea56 - gaea57.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea57 - gaea58.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea58 - - hfe01) MACHINE_ID=hera ;; ### hera01 - hfe02) MACHINE_ID=hera ;; ### hera02 - hfe03) MACHINE_ID=hera ;; ### hera03 - hfe04) MACHINE_ID=hera ;; ### hera04 - hfe05) MACHINE_ID=hera ;; ### hera05 - hfe06) MACHINE_ID=hera ;; ### hera06 - hfe07) MACHINE_ID=hera ;; ### hera07 - hfe08) MACHINE_ID=hera ;; ### hera08 - hfe09) MACHINE_ID=hera ;; ### hera09 - hfe10) MACHINE_ID=hera ;; ### hera10 - hfe11) MACHINE_ID=hera ;; ### hera11 - hfe12) MACHINE_ID=hera ;; ### hera12 - hecflow01) MACHINE_ID=hera ;; ### heraecflow01 + adecflow0[12].acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn + alogin0[123].acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn + clogin0[1-9].cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus01-9 + clogin10.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus10 + dlogin0[1-9].dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood01-9 + dlogin10.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood10 + + gaea5[1-8]) MACHINE_ID=gaea ;; ### gaea51-58 + gaea5[1-8].ncrc.gov) MACHINE_ID=gaea ;; ### gaea51-58 + + hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09 + hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12 + hecflow01) MACHINE_ID=hera ;; ### heraecflow01 s4-submit.ssec.wisc.edu) MACHINE_ID=s4 ;; ### s4 - fe1) MACHINE_ID=jet ;; ### jet01 - fe2) MACHINE_ID=jet ;; ### jet02 - fe3) MACHINE_ID=jet ;; ### jet03 - fe4) MACHINE_ID=jet ;; ### jet04 - fe5) MACHINE_ID=jet ;; ### jet05 - fe6) MACHINE_ID=jet ;; ### jet06 - fe7) MACHINE_ID=jet ;; ### jet07 - fe8) MACHINE_ID=jet ;; ### jet08 - tfe1) MACHINE_ID=jet ;; ### jet09 - tfe2) MACHINE_ID=jet ;; ### jet10 - - Orion-login-1.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1 - Orion-login-2.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion2 - Orion-login-3.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion3 - Orion-login-4.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion4 + fe[1-8]) MACHINE_ID=jet ;; ### jet01-8 + tfe[12]) MACHINE_ID=jet ;; ### tjet1-2 + + Orion-login-[1-4].HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1-4 + + [Hh]ercules-login-[1-4].[Hh][Pp][Cc].[Mm]s[Ss]tate.[Ee]du) MACHINE_ID=hercules ;; ### hercules1-4 derecho1.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho1 derecho2.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho2 @@ -77,31 +45,57 @@ case $(hostname -f) in derecho6.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho6 derecho7.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho7 derecho8.hsn.de.hpc.ucar.edu) MACHINE_ID=derecho ;; ### derecho8 - - Hercules-login-1.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules1 - Hercules-login-2.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules2 - Hercules-login-3.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules3 - Hercules-login-4.HPC.MsState.Edu) MACHINE_ID=hercules;; ### hercules4 - - login1.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1 - login2.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede2 - login3.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede3 - login4.stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede4 - - - login01.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1 - login02.expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse2 -esac + login[1-4].stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1-4 -case $(echo ${PW_CSP:-nono}) in + login0[1-2].expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1-2 - aws) MACHINE_ID=aws ;; ### parallelworks aws - google) MACHINE_ID=gcp ;; ### parallelworks gcp - azure) MACHINE_ID=azure ;; ### parallelworks azure - + discover3[1-5].prv.cube) MACHINE_ID=discover ;; ### discover31-35 + *) MACHINE_ID=UNKNOWN ;; # Unknown platform esac -[[ ${MACHINE_ID} =~ "aws" || ${MACHINE_ID} =~ "gcp" || ${MACHINE_ID} =~ "azure" ]] && MACHINE_ID=noaacloud -# Overwrite auto-detect with RT_MACHINE if set -MACHINE_ID=${RT_MACHINE:-${MACHINE_ID}} +if [[ ${MACHINE_ID} == "UNKNOWN" ]]; then + case ${PW_CSP:-} in + "aws" | "google" | "azure") MACHINE_ID=noaacloud ;; + *) PW_CSP="UNKNOWN" + esac +fi + +# Overwrite auto-detect with MACHINE if set +MACHINE_ID=${MACHINE:-${MACHINE_ID}} + +# If MACHINE_ID is no longer UNKNNOWN, return it +if [[ "${MACHINE_ID}" != "UNKNOWN" ]]; then + return +fi + +# Try searching based on paths since hostname may not match on compute nodes +if [[ -d /lfs/h3 ]]; then + # We are on NOAA Cactus or Dogwood + MACHINE_ID=wcoss2 +elif [[ -d /lfs/h1 && ! -d /lfs/h3 ]]; then + # We are on NOAA TDS Acorn + MACHINE_ID=acorn +elif [[ -d /mnt/lfs1 ]]; then + # We are on NOAA Jet + MACHINE_ID=jet +elif [[ -d /scratch1 ]]; then + # We are on NOAA Hera + MACHINE_ID=hera +elif [[ -d /work ]]; then + # We are on MSU Orion or Hercules + if [[ -d /apps/other ]]; then + # We are on Hercules + MACHINE_ID=hercules + else + MACHINE_ID=orion + fi +elif [[ -d /gpfs && -d /ncrc ]]; then + # We are on GAEA. + MACHINE_ID=gaea +elif [[ -d /data/prod ]]; then + # We are on SSEC's S4 + MACHINE_ID=s4 +else + echo WARNING: UNKNOWN PLATFORM 1>&2 +fi diff --git a/tests/fv3_conf/compile_slurm.IN_gaea-c5 b/tests/fv3_conf/compile_slurm.IN_gaea similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaea-c5 rename to tests/fv3_conf/compile_slurm.IN_gaea diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea-c5 b/tests/fv3_conf/fv3_slurm.IN_gaea similarity index 100% rename from tests/fv3_conf/fv3_slurm.IN_gaea-c5 rename to tests/fv3_conf/fv3_slurm.IN_gaea diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 50c3840ea4..1c213bde54 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Feb 8 14:00:04 UTC 2024 +Fri Feb 9 14:39:17 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.080729 - 0: The maximum resident set size (KB) = 1311728 + 0: The total amount of wall time = 282.839267 + 0: The maximum resident set size (KB) = 1304660 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 903.668548 - 0: The maximum resident set size (KB) = 1287728 + 0: The total amount of wall time = 892.021338 + 0: The maximum resident set size (KB) = 1288444 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.952287 - 0: The maximum resident set size (KB) = 1281684 + 0: The total amount of wall time = 249.299884 + 0: The maximum resident set size (KB) = 1281236 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.057241 - 0: The maximum resident set size (KB) = 1283180 + 0: The total amount of wall time = 247.586878 + 0: The maximum resident set size (KB) = 1284604 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.649190 - 0: The maximum resident set size (KB) = 1283604 + 0: The total amount of wall time = 247.664516 + 0: The maximum resident set size (KB) = 1283488 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.317862 - 0: The maximum resident set size (KB) = 1286884 + 0: The total amount of wall time = 249.494655 + 0: The maximum resident set size (KB) = 1281868 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_103025/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.513148 - 0: The maximum resident set size (KB) = 1282944 + 0: The total amount of wall time = 249.472280 + 0: The maximum resident set size (KB) = 1283528 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 8 15:16:58 UTC 2024 -Elapsed time: 01h:16m:54s. Have a nice day! +Fri Feb 9 17:11:49 UTC 2024 +Elapsed time: 02h:32m:32s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 440c27b5ec..50fc402047 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Thu Feb 8 16:09:31 UTC 2024 +Fri Feb 9 18:43:44 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1240.052369 - 0: The maximum resident set size (KB) = 1416160 + 0: The total amount of wall time = 1225.252760 + 0: The maximum resident set size (KB) = 1412400 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu 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 = 377.256407 - 0: The maximum resident set size (KB) = 1404068 + 0: The total amount of wall time = 372.797074 + 0: The maximum resident set size (KB) = 1405444 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_14065/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 379.461864 - 0: The maximum resident set size (KB) = 1402872 + 0: The total amount of wall time = 377.466475 + 0: The maximum resident set size (KB) = 1404384 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 8 19:05:11 UTC 2024 -Elapsed time: 02h:55m:44s. Have a nice day! +Fri Feb 9 19:48:46 UTC 2024 +Elapsed time: 01h:05m:02s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 1cd548a1e2..25755a6eac 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Feb 8 15:19:18 UTC 2024 +Fri Feb 9 18:00:49 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 517.095038 - 0: The maximum resident set size (KB) = 600236 + 0: The total amount of wall time = 521.814442 + 0: The maximum resident set size (KB) = 592736 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 520.741238 - 0: The maximum resident set size (KB) = 598704 + 0: The total amount of wall time = 512.876185 + 0: The maximum resident set size (KB) = 591908 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_5278/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 520.308317 - 0: The maximum resident set size (KB) = 592456 + 0: The total amount of wall time = 505.653831 + 0: The maximum resident set size (KB) = 596020 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 8 15:59:45 UTC 2024 -Elapsed time: 00h:40m:27s. Have a nice day! +Fri Feb 9 18:39:56 UTC 2024 +Elapsed time: 00h:39m:08s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 4a1a537e4f..14cb612062 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,60 +1,60 @@ -Thu Feb 8 12:11:33 UTC 2024 +Fri Feb 9 17:34:04 UTC 2024 Start Regression test -Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184 +Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) + c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 511 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 182 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaero_intel elapsed time 519 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 505 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 236 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile atm_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 556 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 516 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 550 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 536 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 53 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 531 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 561 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 201 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 572 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 562 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 617 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 596 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 522 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 525 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 460 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 458 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 555 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 627 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_dyn32_phy32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 550 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 550 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 983 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 899 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 614 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 619 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 610 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1033 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 857 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 630 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 924 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2sw_pdlib_intel elapsed time 934 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.611772 -The maximum resident set size (KB) = 2976096 +The total amount of wall time = 325.069319 +The maximum resident set size (KB) = 2977512 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 902.811006 -The maximum resident set size (KB) = 1593072 +The total amount of wall time = 901.574297 +The maximum resident set size (KB) = 1588856 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 970.179773 -The maximum resident set size (KB) = 1719444 +The total amount of wall time = 970.585781 +The maximum resident set size (KB) = 1714640 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 450.513848 -The maximum resident set size (KB) = 849240 +The total amount of wall time = 449.948426 +The maximum resident set size (KB) = 849864 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1057.532561 -The maximum resident set size (KB) = 1580320 +The total amount of wall time = 1057.877826 +The maximum resident set size (KB) = 1570648 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1403.718457 -The maximum resident set size (KB) = 1607576 +The total amount of wall time = 1443.576316 +The maximum resident set size (KB) = 1610604 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.818493 -The maximum resident set size (KB) = 3005040 +The total amount of wall time = 364.281607 +The maximum resident set size (KB) = 3003988 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 362.272785 -The maximum resident set size (KB) = 3002316 +The total amount of wall time = 364.047392 +The maximum resident set size (KB) = 3000400 Test 008 cpld_control_p8.v2.sfc_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.283078 -The maximum resident set size (KB) = 3058252 +The total amount of wall time = 213.604123 +The maximum resident set size (KB) = 3058484 Test 009 cpld_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.896427 -The maximum resident set size (KB) = 3026668 +The total amount of wall time = 365.416961 +The maximum resident set size (KB) = 3028140 Test 010 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.069512 -The maximum resident set size (KB) = 3079264 +The total amount of wall time = 217.152233 +The maximum resident set size (KB) = 3080048 Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.289607 -The maximum resident set size (KB) = 3313068 +The total amount of wall time = 326.244114 +The maximum resident set size (KB) = 3316092 Test 012 cpld_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.730839 -The maximum resident set size (KB) = 2995164 +The total amount of wall time = 357.785847 +The maximum resident set size (KB) = 2996540 Test 013 cpld_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -949,14 +949,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 300.218678 -The maximum resident set size (KB) = 2925712 +The total amount of wall time = 305.227913 +The maximum resident set size (KB) = 2924320 Test 014 cpld_mpi_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.462067 -The maximum resident set size (KB) = 3000584 +The total amount of wall time = 368.575371 +The maximum resident set size (KB) = 3000544 Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 016 cpld_s2sa_p8_intel 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 = 342.692238 -The maximum resident set size (KB) = 2966420 +The total amount of wall time = 342.253295 +The maximum resident set size (KB) = 2971624 Test 016 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 269.362524 -The maximum resident set size (KB) = 1588368 +The total amount of wall time = 270.201647 +The maximum resident set size (KB) = 1589376 Test 017 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1219,14 +1219,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 273.708208 -The maximum resident set size (KB) = 1639808 +The total amount of wall time = 280.223593 +The maximum resident set size (KB) = 1637552 Test 018 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1288,14 +1288,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel 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 = 276.517542 -The maximum resident set size (KB) = 1635132 +The total amount of wall time = 280.548146 +The maximum resident set size (KB) = 1634332 Test 019 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1345,14 +1345,14 @@ Checking test 020 cpld_control_c48_intel 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 = 406.771645 -The maximum resident set size (KB) = 2660260 +The total amount of wall time = 405.385811 +The maximum resident set size (KB) = 2661420 Test 020 cpld_control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 355.478873 -The maximum resident set size (KB) = 3001988 +The total amount of wall time = 357.379114 +The maximum resident set size (KB) = 3002160 Test 021 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 919.139744 -The maximum resident set size (KB) = 1609776 +The total amount of wall time = 918.070525 +The maximum resident set size (KB) = 1614120 Test 022 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 455.281404 -The maximum resident set size (KB) = 908976 +The total amount of wall time = 457.209050 +The maximum resident set size (KB) = 910796 Test 023 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1618,14 +1618,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1064.929281 -The maximum resident set size (KB) = 1593800 +The total amount of wall time = 1066.151181 +The maximum resident set size (KB) = 1584748 Test 024 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1677,14 +1677,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1499.100932 -The maximum resident set size (KB) = 1610892 +The total amount of wall time = 1489.432463 +The maximum resident set size (KB) = 1606768 Test 025 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1695,14 +1695,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.378864 -The maximum resident set size (KB) = 580296 +The total amount of wall time = 213.088566 +The maximum resident set size (KB) = 579084 Test 026 control_flake_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.453285 -The maximum resident set size (KB) = 530040 +The total amount of wall time = 131.253300 +The maximum resident set size (KB) = 530832 Test 027 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,14 +1751,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.220507 -The maximum resident set size (KB) = 535736 +The total amount of wall time = 137.026135 +The maximum resident set size (KB) = 533936 Test 028 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1769,14 +1769,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.066392 -The maximum resident set size (KB) = 529512 +The total amount of wall time = 132.242121 +The maximum resident set size (KB) = 527860 Test 029 control_latlon_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1787,14 +1787,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.859422 -The maximum resident set size (KB) = 530496 +The total amount of wall time = 134.346506 +The maximum resident set size (KB) = 531484 Test 030 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.440419 -The maximum resident set size (KB) = 721588 +The total amount of wall time = 326.434173 +The maximum resident set size (KB) = 723676 Test 031 control_c48_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48.v2.sfc_intel Checking test 032 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1879,14 +1879,14 @@ Checking test 032 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 328.756213 -The maximum resident set size (KB) = 721768 +The total amount of wall time = 327.095293 +The maximum resident set size (KB) = 721836 Test 032 control_c48.v2.sfc_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1897,14 +1897,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.577716 -The maximum resident set size (KB) = 644504 +The total amount of wall time = 527.061586 +The maximum resident set size (KB) = 646348 Test 033 control_c192_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1915,14 +1915,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 580.108798 -The maximum resident set size (KB) = 959496 +The total amount of wall time = 585.491892 +The maximum resident set size (KB) = 966528 Test 034 control_c384_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1965,14 +1965,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 511.625560 -The maximum resident set size (KB) = 1097996 +The total amount of wall time = 511.985063 +The maximum resident set size (KB) = 1098576 Test 035 control_c384gdas_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1983,28 +1983,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.399486 -The maximum resident set size (KB) = 534596 +The total amount of wall time = 88.729331 +The maximum resident set size (KB) = 538960 Test 036 control_stochy_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.297610 -The maximum resident set size (KB) = 338920 +The total amount of wall time = 49.140012 +The maximum resident set size (KB) = 338988 Test 037 control_stochy_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.662009 -The maximum resident set size (KB) = 535128 +The total amount of wall time = 83.444075 +The maximum resident set size (KB) = 536084 Test 038 control_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 131.910171 -The maximum resident set size (KB) = 529464 +The total amount of wall time = 133.544964 +The maximum resident set size (KB) = 528820 Test 039 control_iovr4_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2059,14 +2059,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.771433 -The maximum resident set size (KB) = 530092 +The total amount of wall time = 133.469248 +The maximum resident set size (KB) = 530248 Test 040 control_iovr5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.127863 -The maximum resident set size (KB) = 1513748 +The total amount of wall time = 162.594535 +The maximum resident set size (KB) = 1505512 Test 041 control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8.v2.sfc_intel Checking test 042 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2167,14 +2167,14 @@ Checking test 042 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.411420 -The maximum resident set size (KB) = 1509616 +The total amount of wall time = 163.170161 +The maximum resident set size (KB) = 1505916 Test 042 control_p8.v2.sfc_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_ugwpv1_intel Checking test 043 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2221,14 +2221,14 @@ Checking test 043 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.523179 -The maximum resident set size (KB) = 1513580 +The total amount of wall time = 159.630728 +The maximum resident set size (KB) = 1517440 Test 043 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_intel Checking test 044 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2267,14 +2267,14 @@ Checking test 044 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 89.174390 -The maximum resident set size (KB) = 700544 +The total amount of wall time = 89.739651 +The maximum resident set size (KB) = 697064 Test 044 control_restart_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_noqr_p8_intel Checking test 045 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2321,14 +2321,14 @@ Checking test 045 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 163.123791 -The maximum resident set size (KB) = 1500584 +The total amount of wall time = 162.679467 +The maximum resident set size (KB) = 1497164 Test 045 control_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_noqr_p8_intel Checking test 046 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 046 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 89.273198 -The maximum resident set size (KB) = 703852 +The total amount of wall time = 87.179377 +The maximum resident set size (KB) = 702536 Test 046 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_decomp_p8_intel Checking test 047 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2417,14 +2417,14 @@ Checking test 047 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.638993 -The maximum resident set size (KB) = 1504216 +The total amount of wall time = 165.867667 +The maximum resident set size (KB) = 1506852 Test 047 control_decomp_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_2threads_p8_intel Checking test 048 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 048 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.361942 -The maximum resident set size (KB) = 1600508 +The total amount of wall time = 143.236548 +The maximum resident set size (KB) = 1592596 Test 048 control_2threads_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_lndp_intel Checking test 049 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2493,14 +2493,14 @@ Checking test 049 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 292.116016 -The maximum resident set size (KB) = 1507376 +The total amount of wall time = 292.399085 +The maximum resident set size (KB) = 1510340 Test 049 control_p8_lndp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_rrtmgp_intel Checking test 050 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2547,14 +2547,14 @@ Checking test 050 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.670222 -The maximum resident set size (KB) = 1570332 +The total amount of wall time = 218.193873 +The maximum resident set size (KB) = 1569140 Test 050 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_mynn_intel Checking test 051 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2601,14 +2601,14 @@ Checking test 051 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.860094 -The maximum resident set size (KB) = 1515880 +The total amount of wall time = 165.738776 +The maximum resident set size (KB) = 1514804 Test 051 control_p8_mynn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/merra2_thompson_intel Checking test 052 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 052 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 196.736246 -The maximum resident set size (KB) = 1515464 +The total amount of wall time = 197.007516 +The maximum resident set size (KB) = 1520040 Test 052 merra2_thompson_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_intel Checking test 053 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2673,28 +2673,28 @@ Checking test 053 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.618520 -The maximum resident set size (KB) = 615952 +The total amount of wall time = 283.095339 +The maximum resident set size (KB) = 611600 Test 053 regional_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_restart_intel Checking test 054 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.919739 -The maximum resident set size (KB) = 786260 +The total amount of wall time = 154.086833 +The maximum resident set size (KB) = 786908 Test 054 regional_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_decomp_intel Checking test 055 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 055 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 297.844147 -The maximum resident set size (KB) = 612216 +The total amount of wall time = 298.627065 +The maximum resident set size (KB) = 612448 Test 055 regional_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2threads_intel Checking test 056 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2723,14 +2723,14 @@ Checking test 056 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 169.237858 -The maximum resident set size (KB) = 666624 +The total amount of wall time = 171.233296 +The maximum resident set size (KB) = 670288 Test 056 regional_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_noquilt_intel Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2738,14 +2738,14 @@ Checking test 057 regional_noquilt_intel 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 = 279.879265 -The maximum resident set size (KB) = 1146092 +The total amount of wall time = 277.230072 +The maximum resident set size (KB) = 1156628 Test 057 regional_noquilt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.735880 -The maximum resident set size (KB) = 616188 +The total amount of wall time = 282.338410 +The maximum resident set size (KB) = 614520 Test 058 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 367.222732 -The maximum resident set size (KB) = 1586860 +The total amount of wall time = 366.623529 +The maximum resident set size (KB) = 1590696 Test 059 regional_wofs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_control_intel Checking test 060 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 060 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 313.897341 -The maximum resident set size (KB) = 611380 +The total amount of wall time = 314.701823 +The maximum resident set size (KB) = 611676 Test 060 regional_ifi_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_decomp_intel Checking test 061 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2810,14 +2810,14 @@ Checking test 061 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 329.597396 -The maximum resident set size (KB) = 610164 +The total amount of wall time = 331.175442 +The maximum resident set size (KB) = 610184 Test 061 regional_ifi_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_ifi_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_2threads_intel Checking test 062 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 062 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 189.873742 -The maximum resident set size (KB) = 665628 +The total amount of wall time = 190.343883 +The maximum resident set size (KB) = 665508 Test 062 regional_ifi_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.151485 -The maximum resident set size (KB) = 915444 +The total amount of wall time = 405.005427 +The maximum resident set size (KB) = 913724 Test 063 rap_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.229443 -The maximum resident set size (KB) = 1102636 +The total amount of wall time = 237.962552 +The maximum resident set size (KB) = 1100812 Test 064 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2954,14 +2954,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.716547 -The maximum resident set size (KB) = 917800 +The total amount of wall time = 418.604997 +The maximum resident set size (KB) = 913096 Test 065 rap_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3008,14 +3008,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 368.284763 -The maximum resident set size (KB) = 1003168 +The total amount of wall time = 371.410385 +The maximum resident set size (KB) = 996636 Test 066 rap_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.013809 -The maximum resident set size (KB) = 788596 +The total amount of wall time = 208.044395 +The maximum resident set size (KB) = 786800 Test 067 rap_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3108,14 +3108,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.998872 -The maximum resident set size (KB) = 914680 +The total amount of wall time = 403.858451 +The maximum resident set size (KB) = 909660 Test 068 rap_sfcdiff_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3162,14 +3162,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.999979 -The maximum resident set size (KB) = 912288 +The total amount of wall time = 419.720523 +The maximum resident set size (KB) = 910392 Test 069 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.149392 -The maximum resident set size (KB) = 784768 +The total amount of wall time = 304.973740 +The maximum resident set size (KB) = 790356 Test 070 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 205.964835 -The maximum resident set size (KB) = 908472 +The total amount of wall time = 207.951558 +The maximum resident set size (KB) = 908336 Test 071 hrrr_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.426246 -The maximum resident set size (KB) = 912084 +The total amount of wall time = 211.409873 +The maximum resident set size (KB) = 907676 Test 072 hrrr_control_decomp_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,28 +3370,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.434840 -The maximum resident set size (KB) = 990576 +The total amount of wall time = 185.758241 +The maximum resident set size (KB) = 985612 Test 073 hrrr_control_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.946088 -The maximum resident set size (KB) = 740732 +The total amount of wall time = 108.813453 +The maximum resident set size (KB) = 744520 Test 074 hrrr_control_restart_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 395.551368 -The maximum resident set size (KB) = 910124 +The total amount of wall time = 396.825195 +The maximum resident set size (KB) = 910400 Test 075 rrfs_v1beta_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3460,14 +3460,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.321182 -The maximum resident set size (KB) = 1871576 +The total amount of wall time = 483.383052 +The maximum resident set size (KB) = 1872612 Test 076 rrfs_v1nssl_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3482,14 +3482,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 467.602453 -The maximum resident set size (KB) = 1859568 +The total amount of wall time = 469.391748 +The maximum resident set size (KB) = 1859888 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3500,14 +3500,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 334.594469 -The maximum resident set size (KB) = 602656 +The total amount of wall time = 337.101706 +The maximum resident set size (KB) = 606352 Test 078 control_csawmg_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3518,26 +3518,26 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 333.460693 -The maximum resident set size (KB) = 600960 +The total amount of wall time = 332.555390 +The maximum resident set size (KB) = 598396 Test 079 control_csawmgt_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_intel Checking test 080 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.642945 -The maximum resident set size (KB) = 276388 +The total amount of wall time = 119.385910 +The maximum resident set size (KB) = 276576 Test 080 control_wam_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_faster_intel Checking test 081 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 081 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.687504 -The maximum resident set size (KB) = 1503432 +The total amount of wall time = 157.748353 +The maximum resident set size (KB) = 1500744 Test 081 control_p8_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_faster_intel Checking test 082 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3602,14 +3602,14 @@ Checking test 082 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 269.069375 -The maximum resident set size (KB) = 608996 +The total amount of wall time = 270.645322 +The maximum resident set size (KB) = 605820 Test 082 regional_control_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3636,364 +3636,364 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.302618 -The maximum resident set size (KB) = 685036 +The total amount of wall time = 159.966216 +The maximum resident set size (KB) = 686040 Test 083 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.786515 -The maximum resident set size (KB) = 690556 +The total amount of wall time = 158.911460 +The maximum resident set size (KB) = 688080 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_debug_intel Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.174032 -The maximum resident set size (KB) = 688196 +The total amount of wall time = 179.193481 +The maximum resident set size (KB) = 690436 Test 085 control_stochy_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_debug_intel Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.817218 -The maximum resident set size (KB) = 690072 +The total amount of wall time = 160.838063 +The maximum resident set size (KB) = 692140 Test 086 control_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_debug_intel Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.849095 -The maximum resident set size (KB) = 730176 +The total amount of wall time = 249.590459 +The maximum resident set size (KB) = 727932 Test 087 control_csawmg_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_debug_intel Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.289400 -The maximum resident set size (KB) = 728100 +The total amount of wall time = 246.113797 +The maximum resident set size (KB) = 731936 Test 088 control_csawmgt_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_ras_debug_intel Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.459170 -The maximum resident set size (KB) = 701080 +The total amount of wall time = 164.143203 +The maximum resident set size (KB) = 702056 Test 089 control_ras_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_diag_debug_intel Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.029933 -The maximum resident set size (KB) = 748684 +The total amount of wall time = 163.968208 +The maximum resident set size (KB) = 747192 Test 090 control_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_debug_p8_intel Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.543819 -The maximum resident set size (KB) = 1518276 +The total amount of wall time = 168.845102 +The maximum resident set size (KB) = 1518356 Test 091 control_debug_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_debug_intel Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1045.877702 -The maximum resident set size (KB) = 628504 +The total amount of wall time = 1047.368932 +The maximum resident set size (KB) = 629320 Test 092 regional_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_intel Checking test 093 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.385685 -The maximum resident set size (KB) = 1073504 +The total amount of wall time = 298.885194 +The maximum resident set size (KB) = 1072696 Test 093 rap_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_intel Checking test 094 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.164904 -The maximum resident set size (KB) = 1069160 +The total amount of wall time = 291.667503 +The maximum resident set size (KB) = 1065048 Test 094 hrrr_control_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_gf_debug_intel Checking test 095 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.009429 -The maximum resident set size (KB) = 1075828 +The total amount of wall time = 298.438010 +The maximum resident set size (KB) = 1071048 Test 095 hrrr_gf_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_c3_debug_intel Checking test 096 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.810459 -The maximum resident set size (KB) = 1076872 +The total amount of wall time = 298.459178 +The maximum resident set size (KB) = 1077248 Test 096 hrrr_c3_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.461430 -The maximum resident set size (KB) = 1075804 +The total amount of wall time = 298.352337 +The maximum resident set size (KB) = 1073256 Test 097 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.369655 -The maximum resident set size (KB) = 1158724 +The total amount of wall time = 309.559939 +The maximum resident set size (KB) = 1156952 Test 098 rap_diag_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.187340 -The maximum resident set size (KB) = 1074300 +The total amount of wall time = 305.581865 +The maximum resident set size (KB) = 1076260 Test 099 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.506140 -The maximum resident set size (KB) = 1072284 +The total amount of wall time = 305.053733 +The maximum resident set size (KB) = 1074768 Test 100 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.396932 -The maximum resident set size (KB) = 1076452 +The total amount of wall time = 301.599292 +The maximum resident set size (KB) = 1075068 Test 101 rap_lndp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.069111 -The maximum resident set size (KB) = 1075048 +The total amount of wall time = 299.156143 +The maximum resident set size (KB) = 1075180 Test 102 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.773366 -The maximum resident set size (KB) = 1076524 +The total amount of wall time = 291.984446 +The maximum resident set size (KB) = 1073072 Test 103 rap_noah_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.191676 -The maximum resident set size (KB) = 1070628 +The total amount of wall time = 298.922273 +The maximum resident set size (KB) = 1074364 Test 104 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.469552 -The maximum resident set size (KB) = 1073948 +The total amount of wall time = 489.841587 +The maximum resident set size (KB) = 1073724 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.456047 -The maximum resident set size (KB) = 1069328 +The total amount of wall time = 299.631434 +The maximum resident set size (KB) = 1064756 Test 106 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 348.935150 -The maximum resident set size (KB) = 1074940 +The total amount of wall time = 348.835644 +The maximum resident set size (KB) = 1073756 Test 107 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.459310 -The maximum resident set size (KB) = 1074844 +The total amount of wall time = 299.148473 +The maximum resident set size (KB) = 1073584 Test 108 rap_flake_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_c96_no_nest_debug_intel Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4034,26 +4034,26 @@ Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 522.581705 -The maximum resident set size (KB) = 1080220 +The total amount of wall time = 521.256417 +The maximum resident set size (KB) = 1079824 Test 109 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_debug_intel Checking test 110 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.055782 -The maximum resident set size (KB) = 298720 +The total amount of wall time = 297.373066 +The maximum resident set size (KB) = 299136 Test 110 control_wam_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 226.625120 -The maximum resident set size (KB) = 960224 +The total amount of wall time = 228.732005 +The maximum resident set size (KB) = 960160 Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn32_phy32_intel Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 334.270880 -The maximum resident set size (KB) = 795488 +The total amount of wall time = 333.378945 +The maximum resident set size (KB) = 794880 Test 112 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_dyn32_phy32_intel Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.175636 -The maximum resident set size (KB) = 788112 +The total amount of wall time = 175.792607 +The maximum resident set size (KB) = 793124 Test 113 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 306.550756 -The maximum resident set size (KB) = 856392 +The total amount of wall time = 305.521690 +The maximum resident set size (KB) = 860124 Test 114 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.688862 -The maximum resident set size (KB) = 844952 +The total amount of wall time = 159.462393 +The maximum resident set size (KB) = 842856 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.850283 -The maximum resident set size (KB) = 791632 +The total amount of wall time = 183.999423 +The maximum resident set size (KB) = 790656 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,28 +4380,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.939585 -The maximum resident set size (KB) = 690980 +The total amount of wall time = 250.983474 +The maximum resident set size (KB) = 690988 Test 117 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.299960 -The maximum resident set size (KB) = 673660 +The total amount of wall time = 93.245514 +The maximum resident set size (KB) = 672380 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_control_intel Checking test 119 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 119 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 115.789816 -The maximum resident set size (KB) = 1006692 +The total amount of wall time = 116.682896 +The maximum resident set size (KB) = 1004720 Test 119 conus13km_control_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_2threads_intel Checking test 120 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 57.663096 -The maximum resident set size (KB) = 1005620 +The total amount of wall time = 60.302281 +The maximum resident set size (KB) = 1008360 Test 120 conus13km_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_restart_mismatch_intel Checking test 121 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.157185 -The maximum resident set size (KB) = 884248 +The total amount of wall time = 70.742648 +The maximum resident set size (KB) = 884664 Test 121 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,42 +4497,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.808235 -The maximum resident set size (KB) = 819796 +The total amount of wall time = 228.293293 +The maximum resident set size (KB) = 816148 Test 122 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_dyn32_phy32_intel Checking test 123 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.424539 -The maximum resident set size (KB) = 956660 +The total amount of wall time = 295.066175 +The maximum resident set size (KB) = 954740 Test 123 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_dyn32_phy32_intel Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.346478 -The maximum resident set size (KB) = 955928 +The total amount of wall time = 286.418924 +The maximum resident set size (KB) = 950464 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_intel Checking test 125 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4546,14 +4546,14 @@ Checking test 125 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 897.018552 -The maximum resident set size (KB) = 1041768 +The total amount of wall time = 893.354675 +The maximum resident set size (KB) = 1037660 Test 125 conus13km_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_qr_intel Checking test 126 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4567,81 +4567,81 @@ Checking test 126 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 900.985766 -The maximum resident set size (KB) = 711008 +The total amount of wall time = 900.523350 +The maximum resident set size (KB) = 708992 Test 126 conus13km_debug_qr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 516.673198 -The maximum resident set size (KB) = 1036988 +The total amount of wall time = 513.846417 +The maximum resident set size (KB) = 1037804 Test 127 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 917.107301 -The maximum resident set size (KB) = 1105408 +The total amount of wall time = 893.948066 +The maximum resident set size (KB) = 1108164 Test 128 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.236134 -The maximum resident set size (KB) = 976468 +The total amount of wall time = 299.152457 +The maximum resident set size (KB) = 974948 Test 129 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 342.169924 -The maximum resident set size (KB) = 621792 +The total amount of wall time = 345.541689 +The maximum resident set size (KB) = 620640 Test 130 hafs_regional_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 310.508806 -The maximum resident set size (KB) = 971316 +The total amount of wall time = 310.406403 +The maximum resident set size (KB) = 968032 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4650,14 +4650,14 @@ Checking test 132 hafs_regional_atm_ocn_intel 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 = 422.470786 -The maximum resident set size (KB) = 662404 +The total amount of wall time = 425.847427 +The maximum resident set size (KB) = 662292 Test 132 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4666,14 +4666,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 746.388468 -The maximum resident set size (KB) = 694776 +The total amount of wall time = 751.546546 +The maximum resident set size (KB) = 693516 Test 133 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4684,14 +4684,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 941.019260 -The maximum resident set size (KB) = 707884 +The total amount of wall time = 934.494992 +The maximum resident set size (KB) = 705504 Test 134 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4713,14 +4713,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 314.978649 -The maximum resident set size (KB) = 399148 +The total amount of wall time = 317.605218 +The maximum resident set size (KB) = 391460 Test 135 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_telescopic_2nests_atm_intel Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4729,14 +4729,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 405.384902 -The maximum resident set size (KB) = 408316 +The total amount of wall time = 403.518609 +The maximum resident set size (KB) = 412724 Test 136 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_1nest_atm_intel Checking test 137 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4783,14 +4783,14 @@ Checking test 137 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 170.278883 -The maximum resident set size (KB) = 283368 +The total amount of wall time = 170.808951 +The maximum resident set size (KB) = 283520 Test 137 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4872,14 +4872,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 486.522391 -The maximum resident set size (KB) = 372988 +The total amount of wall time = 486.950302 +The maximum resident set size (KB) = 374216 Test 138 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_specified_moving_1nest_atm_intel Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4888,14 +4888,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 218.374333 -The maximum resident set size (KB) = 414296 +The total amount of wall time = 219.519626 +The maximum resident set size (KB) = 420804 Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_intel Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,14 +4917,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 204.980896 -The maximum resident set size (KB) = 420636 +The total amount of wall time = 206.019923 +The maximum resident set size (KB) = 422012 Test 140 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4933,28 +4933,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 264.191649 -The maximum resident set size (KB) = 494456 +The total amount of wall time = 262.971430 +The maximum resident set size (KB) = 491188 Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_storm_following_1nest_atm_intel Checking test 142 hafs_global_storm_following_1nest_atm_intel 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 = 91.972821 -The maximum resident set size (KB) = 323192 +The total amount of wall time = 92.909982 +The maximum resident set size (KB) = 315116 Test 142 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_nested_intel Checking test 143 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5001,28 +5001,28 @@ Checking test 143 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 237.804547 -The maximum resident set size (KB) = 682784 +The total amount of wall time = 238.952555 +The maximum resident set size (KB) = 677024 Test 143 gnv1_nested_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 815.386804 -The maximum resident set size (KB) = 502400 +The total amount of wall time = 815.677537 +The maximum resident set size (KB) = 507680 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5033,14 +5033,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 514.789611 -The maximum resident set size (KB) = 535896 +The total amount of wall time = 516.764418 +The maximum resident set size (KB) = 530996 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5051,14 +5051,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 522.046143 -The maximum resident set size (KB) = 712016 +The total amount of wall time = 523.005603 +The maximum resident set size (KB) = 711684 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 385.255191 -The maximum resident set size (KB) = 706472 +The total amount of wall time = 386.878211 +The maximum resident set size (KB) = 710628 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5083,14 +5083,14 @@ Checking test 148 hafs_regional_docn_intel 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.007385 -The maximum resident set size (KB) = 658632 +The total amount of wall time = 391.858057 +The maximum resident set size (KB) = 656576 Test 148 hafs_regional_docn_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5098,131 +5098,131 @@ Checking test 149 hafs_regional_docn_oisst_intel 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 = 398.036164 -The maximum resident set size (KB) = 638520 +The total amount of wall time = 399.051624 +The maximum resident set size (KB) = 638204 Test 149 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_datm_cdeps_intel Checking test 150 hafs_regional_datm_cdeps_intel 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 = 946.882696 -The maximum resident set size (KB) = 884056 +The total amount of wall time = 945.104264 +The maximum resident set size (KB) = 884252 Test 150 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_intel Checking test 151 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.558777 -The maximum resident set size (KB) = 750872 +The total amount of wall time = 142.743454 +The maximum resident set size (KB) = 749448 Test 151 datm_cdeps_control_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_restart_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_restart_cfsr_intel Checking test 152 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.527016 -The maximum resident set size (KB) = 738112 +The total amount of wall time = 86.123321 +The maximum resident set size (KB) = 738424 Test 152 datm_cdeps_restart_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_gefs_intel Checking test 153 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.387022 -The maximum resident set size (KB) = 628924 +The total amount of wall time = 133.800434 +The maximum resident set size (KB) = 630120 Test 153 datm_cdeps_control_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_iau_gefs_intel Checking test 154 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.437657 -The maximum resident set size (KB) = 627908 +The total amount of wall time = 136.625069 +The maximum resident set size (KB) = 629184 Test 154 datm_cdeps_iau_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_stochy_gefs_intel Checking test 155 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 138.735326 -The maximum resident set size (KB) = 629404 +The total amount of wall time = 137.621567 +The maximum resident set size (KB) = 635340 Test 155 datm_cdeps_stochy_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_ciceC_cfsr_intel Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.760720 -The maximum resident set size (KB) = 748616 +The total amount of wall time = 142.699376 +The maximum resident set size (KB) = 748376 Test 156 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_cfsr_intel Checking test 157 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.978655 -The maximum resident set size (KB) = 748420 +The total amount of wall time = 142.935817 +The maximum resident set size (KB) = 747108 Test 157 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_gefs_intel Checking test 158 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.008922 -The maximum resident set size (KB) = 637940 +The total amount of wall time = 133.823516 +The maximum resident set size (KB) = 627992 Test 158 datm_cdeps_bulk_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_cfsr_intel Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel 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 = 338.258668 -The maximum resident set size (KB) = 597356 +The total amount of wall time = 340.971185 +The maximum resident set size (KB) = 596184 Test 159 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_gefs_intel Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5247,64 +5247,64 @@ Checking test 160 datm_cdeps_mx025_gefs_intel 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 = 337.139239 -The maximum resident set size (KB) = 575816 +The total amount of wall time = 336.704980 +The maximum resident set size (KB) = 576776 Test 160 datm_cdeps_mx025_gefs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_multiple_files_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_multiple_files_cfsr_intel Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.020984 -The maximum resident set size (KB) = 747652 +The total amount of wall time = 142.802480 +The maximum resident set size (KB) = 747548 Test 161 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_3072x1536_cfsr_intel Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 261.128389 -The maximum resident set size (KB) = 2006244 +The total amount of wall time = 261.008363 +The maximum resident set size (KB) = 2008308 Test 162 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_gfs_intel Checking test 163 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 261.154855 -The maximum resident set size (KB) = 2009212 +The total amount of wall time = 261.373898 +The maximum resident set size (KB) = 2004796 Test 163 datm_cdeps_gfs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.598568 -The maximum resident set size (KB) = 747464 +The total amount of wall time = 142.413445 +The maximum resident set size (KB) = 750572 Test 164 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel 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 @@ -5313,14 +5313,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 58.115373 -The maximum resident set size (KB) = 226600 +The total amount of wall time = 57.234886 +The maximum resident set size (KB) = 218580 Test 165 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_era5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_intel Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 57.782992 -The maximum resident set size (KB) = 372344 +The total amount of wall time = 58.410388 +The maximum resident set size (KB) = 365616 Test 166 datm_cdeps_lnd_era5_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/datm_cdeps_lnd_era5_rst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_rst_intel Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5345,14 +5345,14 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 41.738809 -The maximum resident set size (KB) = 369036 +The total amount of wall time = 42.190902 +The maximum resident set size (KB) = 369756 Test 167 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_sbs_intel Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5441,14 +5441,14 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 273.901339 -The maximum resident set size (KB) = 1552676 +The total amount of wall time = 274.975496 +The maximum resident set size (KB) = 1546104 Test 168 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_intel Checking test 169 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5537,14 +5537,14 @@ Checking test 169 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 274.958810 -The maximum resident set size (KB) = 1551708 +The total amount of wall time = 274.189530 +The maximum resident set size (KB) = 1548268 Test 169 control_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_restart_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_atmlnd_intel Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5565,14 +5565,14 @@ Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 153.485020 -The maximum resident set size (KB) = 743256 +The total amount of wall time = 153.971567 +The maximum resident set size (KB) = 739256 Test 170 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmwav_control_noaero_p8_intel Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5615,14 +5615,14 @@ Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 98.407449 -The maximum resident set size (KB) = 1545788 +The total amount of wall time = 100.416904 +The maximum resident set size (KB) = 1548012 Test 171 atmwav_control_noaero_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_atmwav_intel Checking test 172 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5666,14 +5666,14 @@ Checking test 172 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 90.125650 -The maximum resident set size (KB) = 545940 +The total amount of wall time = 91.242314 +The maximum resident set size (KB) = 543824 Test 172 control_atmwav_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_intel Checking test 173 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5717,14 +5717,14 @@ Checking test 173 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 235.843111 -The maximum resident set size (KB) = 2849320 +The total amount of wall time = 237.901667 +The maximum resident set size (KB) = 2852976 Test 173 atmaero_control_p8_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_intel Checking test 174 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5768,14 +5768,14 @@ Checking test 174 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 275.571678 -The maximum resident set size (KB) = 2912816 +The total amount of wall time = 274.289914 +The maximum resident set size (KB) = 2910532 Test 174 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_micro_intel Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5819,14 +5819,14 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.166390 -The maximum resident set size (KB) = 2925388 +The total amount of wall time = 291.077525 +The maximum resident set size (KB) = 2924636 Test 175 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_82073/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5840,10 +5840,12 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1314.456259 -The maximum resident set size (KB) = 4443464 +The total amount of wall time = 1320.749454 +The maximum resident set size (KB) = 4429316 Test 176 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL +Fri Feb 9 19:28:48 UTC 2024 +Elapsed time: 01h:54m:45s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 98143b4f48..52cd1218aa 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,60 +1,60 @@ -Thu 08 Feb 2024 07:32:54 AM MST +Thu 08 Feb 2024 07:35:51 PM MST Start Regression test -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 +Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) + c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 608 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 456 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 692 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 717 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 721 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 721 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 276 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 438 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 438 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 132 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 798 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 934 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 397 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1105 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 884 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 692 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 301 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 825 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 817 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1112 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 519 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1203 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 518 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1120 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 489 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1081 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 481 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1132 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 295 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 673 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 648 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 495 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 762 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 755 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 763 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 315 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 470 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 146 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 841 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 987 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 435 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1153 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 928 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 723 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 334 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 874 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 865 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1185 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 572 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1263 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1159 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1136 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1192 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_p8_mixedmode_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 278.366598 -The maximum resident set size (KB) = 3070908 +The total amount of wall time = 283.116339 +The maximum resident set size (KB) = 3072688 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 812.161067 -The maximum resident set size (KB) = 1692396 +The total amount of wall time = 813.943705 +The maximum resident set size (KB) = 1681460 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_gfsv17_iau_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 892.401037 -The maximum resident set size (KB) = 1822596 +The total amount of wall time = 897.250202 +The maximum resident set size (KB) = 1817348 -Test 003 cpld_control_gfsv17_iau_intel PASS +Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2 baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 414.569333 -The maximum resident set size (KB) = 952340 +The total amount of wall time = 422.482839 +The maximum resident set size (KB) = 955876 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 932.838490 -The maximum resident set size (KB) = 1655000 +The total amount of wall time = 929.949945 +The maximum resident set size (KB) = 1653052 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1278.731443 -The maximum resident set size (KB) = 1703504 +The total amount of wall time = 1278.854488 +The maximum resident set size (KB) = 1694924 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,14 +505,86 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 322.209132 -The maximum resident set size (KB) = 3090856 +The total amount of wall time = 325.480126 +The maximum resident set size (KB) = 3092824 Test 007 cpld_control_p8_intel PASS +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 329.186547 +The maximum resident set size (KB) = 3096724 + +Test 008 cpld_control_p8.v2.sfc_intel PASS + + baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -565,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 183.315130 -The maximum resident set size (KB) = 3151580 +The total amount of wall time = 187.927131 +The maximum resident set size (KB) = 3150752 Test 009 cpld_restart_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_qr_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -637,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.562085 -The maximum resident set size (KB) = 3122900 +The total amount of wall time = 324.802251 +The maximum resident set size (KB) = 3129004 Test 010 cpld_control_qr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_qr_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -697,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 188.743688 -The maximum resident set size (KB) = 3177556 +The total amount of wall time = 188.573617 +The maximum resident set size (KB) = 3177364 Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_decomp_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -757,14 +829,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.577685 -The maximum resident set size (KB) = 3092328 +The total amount of wall time = 323.111015 +The maximum resident set size (KB) = 3092532 Test 012 cpld_decomp_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -817,14 +889,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 258.651912 -The maximum resident set size (KB) = 3389572 +The total amount of wall time = 262.378434 +The maximum resident set size (KB) = 3387196 Test 013 cpld_mpi_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_ciceC_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -889,14 +961,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.652095 -The maximum resident set size (KB) = 3103484 +The total amount of wall time = 324.817171 +The maximum resident set size (KB) = 3101008 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -949,14 +1021,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 503.585906 -The maximum resident set size (KB) = 3631448 +The total amount of wall time = 514.049625 +The maximum resident set size (KB) = 3638412 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_c192_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1009,14 +1081,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 333.550015 -The maximum resident set size (KB) = 3613968 +The total amount of wall time = 336.915721 +The maximum resident set size (KB) = 3614852 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_s2sa_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_s2sa_p8_intel Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1067,14 +1139,14 @@ Checking test 017 cpld_s2sa_p8_intel 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.748876 -The maximum resident set size (KB) = 3064124 +The total amount of wall time = 302.029895 +The maximum resident set size (KB) = 3070504 Test 017 cpld_s2sa_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_intel Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1138,14 +1210,14 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.556213 -The maximum resident set size (KB) = 1676416 +The total amount of wall time = 241.657851 +The maximum resident set size (KB) = 1681732 Test 018 cpld_control_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_nowave_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_nowave_noaero_p8_intel Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1207,14 +1279,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel 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 = 239.205767 -The maximum resident set size (KB) = 1726472 +The total amount of wall time = 245.482355 +The maximum resident set size (KB) = 1723964 Test 019 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_p8_intel Checking test 020 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1267,14 +1339,14 @@ Checking test 020 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 453.785653 -The maximum resident set size (KB) = 3148728 +The total amount of wall time = 452.200683 +The maximum resident set size (KB) = 3151076 Test 020 cpld_debug_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_noaero_p8_intel Checking test 021 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1326,14 +1398,14 @@ Checking test 021 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 299.481234 -The maximum resident set size (KB) = 1703380 +The total amount of wall time = 301.799048 +The maximum resident set size (KB) = 1701056 Test 021 cpld_debug_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_noaero_p8_agrid_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_agrid_intel Checking test 022 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1395,14 +1467,14 @@ Checking test 022 cpld_control_noaero_p8_agrid_intel 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 = 239.891101 -The maximum resident set size (KB) = 1723916 +The total amount of wall time = 243.747092 +The maximum resident set size (KB) = 1731124 Test 022 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_c48_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c48_intel Checking test 023 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1452,14 +1524,14 @@ Checking test 023 cpld_control_c48_intel 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 = 384.804620 -The maximum resident set size (KB) = 2668804 +The total amount of wall time = 386.919764 +The maximum resident set size (KB) = 2673324 Test 023 cpld_control_c48_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1523,14 +1595,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 824.997661 -The maximum resident set size (KB) = 1698456 +The total amount of wall time = 827.704808 +The maximum resident set size (KB) = 1698132 Test 024 cpld_control_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_restart_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1582,14 +1654,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 417.852563 -The maximum resident set size (KB) = 1013404 +The total amount of wall time = 427.614309 +The maximum resident set size (KB) = 1016316 Test 025 cpld_restart_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_mpi_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1725,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 948.169577 -The maximum resident set size (KB) = 1659464 +The total amount of wall time = 947.559386 +The maximum resident set size (KB) = 1670052 Test 026 cpld_mpi_pdlib_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/cpld_debug_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1712,14 +1784,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1343.694853 -The maximum resident set size (KB) = 1717028 +The total amount of wall time = 1346.192107 +The maximum resident set size (KB) = 1711564 -Test 027 cpld_debug_pdlib_p8_intel PASS +Test 027 cpld_debug_pdlib_p8_intel PASS Tries: 2 baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_flake_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1730,14 +1802,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 192.680202 -The maximum resident set size (KB) = 663692 +The total amount of wall time = 195.138807 +The maximum resident set size (KB) = 667604 Test 028 control_flake_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1764,14 +1836,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 116.418466 -The maximum resident set size (KB) = 614652 +The total amount of wall time = 114.646694 +The maximum resident set size (KB) = 617372 Test 029 control_CubedSphereGrid_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_parallel_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1786,14 +1858,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 117.118307 -The maximum resident set size (KB) = 624156 +The total amount of wall time = 120.851852 +The maximum resident set size (KB) = 622264 Test 030 control_CubedSphereGrid_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_latlon_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1804,14 +1876,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 113.600428 -The maximum resident set size (KB) = 617984 +The total amount of wall time = 115.032899 +The maximum resident set size (KB) = 620848 Test 031 control_latlon_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1822,14 +1894,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 115.524999 -The maximum resident set size (KB) = 619636 +The total amount of wall time = 116.134178 +The maximum resident set size (KB) = 617140 Test 032 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c48_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1868,14 +1940,60 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.900594 -The maximum resident set size (KB) = 727444 +The total amount of wall time = 309.345123 +The maximum resident set size (KB) = 729544 Test 033 control_c48_intel PASS +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48.v2.sfc_intel +Checking test 034 control_c48.v2.sfc_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 310.068806 +The maximum resident set size (KB) = 729312 + +Test 034 control_c48.v2.sfc_intel PASS + + baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c192_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1886,14 +2004,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 456.111312 -The maximum resident set size (KB) = 738920 +The total amount of wall time = 459.944531 +The maximum resident set size (KB) = 734336 -Test 035 control_c192_intel PASS +Test 035 control_c192_intel PASS Tries: 2 baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c384_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1904,14 +2022,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.244557 -The maximum resident set size (KB) = 1057112 +The total amount of wall time = 477.700454 +The maximum resident set size (KB) = 1062916 -Test 036 control_c384_intel PASS +Test 036 control_c384_intel PASS Tries: 2 baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_c384gdas_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1954,14 +2072,14 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.407890 -The maximum resident set size (KB) = 1195352 +The total amount of wall time = 424.307740 +The maximum resident set size (KB) = 1199572 Test 037 control_c384gdas_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1972,28 +2090,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 73.996396 -The maximum resident set size (KB) = 623912 +The total amount of wall time = 75.804766 +The maximum resident set size (KB) = 623532 Test 038 control_stochy_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_restart_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 40.816951 -The maximum resident set size (KB) = 434408 +The total amount of wall time = 41.742004 +The maximum resident set size (KB) = 436716 Test 039 control_stochy_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_lndp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2004,14 +2122,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 69.830315 -The maximum resident set size (KB) = 622096 +The total amount of wall time = 71.450324 +The maximum resident set size (KB) = 620356 Test 040 control_lndp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_iovr4_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2026,14 +2144,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 114.432772 -The maximum resident set size (KB) = 616400 +The total amount of wall time = 115.173531 +The maximum resident set size (KB) = 618900 -Test 041 control_iovr4_intel PASS +Test 041 control_iovr4_intel PASS Tries: 2 baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_iovr5_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2048,14 +2166,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 113.969616 -The maximum resident set size (KB) = 619144 +The total amount of wall time = 115.437444 +The maximum resident set size (KB) = 617796 Test 042 control_iovr5_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2102,14 +2220,68 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 136.727108 -The maximum resident set size (KB) = 1599680 +The total amount of wall time = 139.985306 +The maximum resident set size (KB) = 1599704 Test 043 control_p8_intel PASS +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8.v2.sfc_intel +Checking test 044 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 140.002842 +The maximum resident set size (KB) = 1599864 + +Test 044 control_p8.v2.sfc_intel PASS + + baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_ugwpv1_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2156,14 +2328,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 136.055116 -The maximum resident set size (KB) = 1596572 +The total amount of wall time = 139.353776 +The maximum resident set size (KB) = 1597044 Test 045 control_p8_ugwpv1_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2202,14 +2374,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 73.440874 -The maximum resident set size (KB) = 792524 +The total amount of wall time = 75.146615 +The maximum resident set size (KB) = 791972 Test 046 control_restart_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_noqr_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2256,14 +2428,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 136.717509 -The maximum resident set size (KB) = 1581588 +The total amount of wall time = 139.945671 +The maximum resident set size (KB) = 1576984 Test 047 control_noqr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_noqr_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2302,14 +2474,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 72.097229 -The maximum resident set size (KB) = 799652 +The total amount of wall time = 73.537670 +The maximum resident set size (KB) = 799724 Test 048 control_restart_noqr_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_decomp_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2352,14 +2524,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 142.562033 -The maximum resident set size (KB) = 1590672 +The total amount of wall time = 144.155448 +The maximum resident set size (KB) = 1593868 Test 049 control_decomp_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_lndp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_lndp_intel Checking test 050 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2378,14 +2550,14 @@ Checking test 050 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 249.046392 -The maximum resident set size (KB) = 1590092 +The total amount of wall time = 252.377982 +The maximum resident set size (KB) = 1600412 Test 050 control_p8_lndp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_rrtmgp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_rrtmgp_intel Checking test 051 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2432,14 +2604,14 @@ Checking test 051 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.234551 -The maximum resident set size (KB) = 1655480 +The total amount of wall time = 189.306214 +The maximum resident set size (KB) = 1655904 Test 051 control_p8_rrtmgp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_mynn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_mynn_intel Checking test 052 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2486,14 +2658,14 @@ Checking test 052 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 139.573285 -The maximum resident set size (KB) = 1605860 +The total amount of wall time = 141.528162 +The maximum resident set size (KB) = 1600840 Test 052 control_p8_mynn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/merra2_thompson_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/merra2_thompson_intel Checking test 053 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2540,14 +2712,14 @@ Checking test 053 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.084197 -The maximum resident set size (KB) = 1604192 +The total amount of wall time = 169.983004 +The maximum resident set size (KB) = 1598496 Test 053 merra2_thompson_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_intel Checking test 054 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2558,28 +2730,28 @@ Checking test 054 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 255.017284 -The maximum resident set size (KB) = 627864 +The total amount of wall time = 261.109765 +The maximum resident set size (KB) = 626132 Test 054 regional_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_restart_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_restart_intel Checking test 055 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 138.422732 -The maximum resident set size (KB) = 793580 +The total amount of wall time = 140.810195 +The maximum resident set size (KB) = 795928 Test 055 regional_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_decomp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_decomp_intel Checking test 056 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2590,14 +2762,14 @@ Checking test 056 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 269.373816 -The maximum resident set size (KB) = 623816 +The total amount of wall time = 273.113666 +The maximum resident set size (KB) = 625916 Test 056 regional_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_noquilt_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_noquilt_intel Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2605,28 +2777,28 @@ Checking test 057 regional_noquilt_intel 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 = 252.605680 -The maximum resident set size (KB) = 1155664 +The total amount of wall time = 254.863225 +The maximum resident set size (KB) = 1157048 Test 057 regional_noquilt_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_netcdf_parallel_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_netcdf_parallel_intel Checking test 058 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 255.481331 -The maximum resident set size (KB) = 624212 +The total amount of wall time = 256.349682 +The maximum resident set size (KB) = 622116 Test 058 regional_netcdf_parallel_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_2dwrtdecomp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_2dwrtdecomp_intel Checking test 059 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2637,32 +2809,32 @@ Checking test 059 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 256.814605 -The maximum resident set size (KB) = 627784 +The total amount of wall time = 262.120628 +The maximum resident set size (KB) = 627004 Test 059 regional_2dwrtdecomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_wofs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_wofs_intel Checking test 060 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........NOT OK - Comparing PRSLEV.GrbF06 .........NOT OK - Comparing NATLEV.GrbF00 .........NOT OK - Comparing NATLEV.GrbF06 .........NOT OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.639131 -The maximum resident set size (KB) = 1598256 +The total amount of wall time = 322.736964 +The maximum resident set size (KB) = 1597032 -Test 060 regional_wofs_intel FAIL Tries: 2 +Test 060 regional_wofs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_intel Checking test 061 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2709,14 +2881,14 @@ Checking test 061 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 357.655730 -The maximum resident set size (KB) = 1005116 +The total amount of wall time = 355.672496 +The maximum resident set size (KB) = 1008760 Test 061 rap_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_spp_sppt_shum_skeb_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_intel Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2727,14 +2899,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 200.662783 -The maximum resident set size (KB) = 1190900 +The total amount of wall time = 206.335463 +The maximum resident set size (KB) = 1193964 Test 062 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_decomp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_decomp_intel Checking test 063 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2781,14 +2953,14 @@ Checking test 063 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.631655 -The maximum resident set size (KB) = 1008936 +The total amount of wall time = 369.997382 +The maximum resident set size (KB) = 1007820 Test 063 rap_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_restart_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2827,14 +2999,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.231939 -The maximum resident set size (KB) = 881996 +The total amount of wall time = 182.773442 +The maximum resident set size (KB) = 881852 Test 064 rap_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2881,14 +3053,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.426030 -The maximum resident set size (KB) = 1004284 +The total amount of wall time = 356.264052 +The maximum resident set size (KB) = 1005568 Test 065 rap_sfcdiff_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_decomp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2935,14 +3107,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 372.255662 -The maximum resident set size (KB) = 1005860 +The total amount of wall time = 371.098443 +The maximum resident set size (KB) = 1008792 Test 066 rap_sfcdiff_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_restart_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2981,14 +3153,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 262.345994 -The maximum resident set size (KB) = 882136 +The total amount of wall time = 265.527425 +The maximum resident set size (KB) = 884084 Test 067 rap_sfcdiff_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3035,14 +3207,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.136332 -The maximum resident set size (KB) = 1003648 +The total amount of wall time = 183.260712 +The maximum resident set size (KB) = 1001448 Test 068 hrrr_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_decomp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3089,14 +3261,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.676223 -The maximum resident set size (KB) = 999848 +The total amount of wall time = 186.244718 +The maximum resident set size (KB) = 1004132 Test 069 hrrr_control_decomp_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_2threads_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3143,28 +3315,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.169098 -The maximum resident set size (KB) = 1092608 +The total amount of wall time = 161.179313 +The maximum resident set size (KB) = 1087204 Test 070 hrrr_control_2threads_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_restart_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 94.536448 -The maximum resident set size (KB) = 833652 +The total amount of wall time = 95.552484 +The maximum resident set size (KB) = 837104 Test 071 hrrr_control_restart_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1beta_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3211,14 +3383,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 345.509210 -The maximum resident set size (KB) = 1002336 +The total amount of wall time = 347.136479 +The maximum resident set size (KB) = 1003412 Test 072 rrfs_v1beta_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3229,18 +3401,18 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........NOT OK - Comparing GFSPRS.GrbF09 .........NOT OK - Comparing GFSPRS.GrbF12 .........NOT OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 426.953722 -The maximum resident set size (KB) = 1960256 +The total amount of wall time = 431.703119 +The maximum resident set size (KB) = 1960876 -Test 073 rrfs_v1nssl_intel FAIL Tries: 2 +Test 073 rrfs_v1nssl_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3251,18 +3423,18 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........NOT OK - Comparing GFSPRS.GrbF09 .........NOT OK - Comparing GFSPRS.GrbF12 .........NOT OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 416.436146 -The maximum resident set size (KB) = 1949036 +The total amount of wall time = 413.903843 +The maximum resident set size (KB) = 1950852 -Test 074 rrfs_v1nssl_nohailnoccn_intel FAIL Tries: 2 +Test 074 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmg_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3273,14 +3445,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 297.800708 -The maximum resident set size (KB) = 689912 +The total amount of wall time = 300.668152 +The maximum resident set size (KB) = 690452 Test 075 control_csawmg_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmgt_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3291,14 +3463,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 294.489031 -The maximum resident set size (KB) = 693652 +The total amount of wall time = 298.459430 +The maximum resident set size (KB) = 692876 Test 076 control_csawmgt_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_ras_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3309,26 +3481,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 160.475751 -The maximum resident set size (KB) = 655200 +The total amount of wall time = 162.560573 +The maximum resident set size (KB) = 654488 Test 077 control_ras_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wam_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 102.797114 -The maximum resident set size (KB) = 381776 +The total amount of wall time = 105.149311 +The maximum resident set size (KB) = 383768 Test 078 control_wam_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_faster_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3375,14 +3547,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 130.577917 -The maximum resident set size (KB) = 1599428 +The total amount of wall time = 132.858699 +The maximum resident set size (KB) = 1594508 Test 079 control_p8_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_control_faster_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3393,14 +3565,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 240.224735 -The maximum resident set size (KB) = 628276 +The total amount of wall time = 246.277595 +The maximum resident set size (KB) = 624140 Test 080 regional_control_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_CubedSphereGrid_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3427,364 +3599,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 140.181543 -The maximum resident set size (KB) = 794708 +The total amount of wall time = 143.051336 +The maximum resident set size (KB) = 792764 Test 081 control_CubedSphereGrid_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 140.208381 -The maximum resident set size (KB) = 791964 +The total amount of wall time = 141.115260 +The maximum resident set size (KB) = 791528 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_stochy_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.140731 -The maximum resident set size (KB) = 802024 +The total amount of wall time = 160.055984 +The maximum resident set size (KB) = 801540 Test 083 control_stochy_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_lndp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 142.818359 -The maximum resident set size (KB) = 800912 +The total amount of wall time = 147.219860 +The maximum resident set size (KB) = 796288 Test 084 control_lndp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmg_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 221.834189 -The maximum resident set size (KB) = 838420 +The total amount of wall time = 224.749099 +The maximum resident set size (KB) = 833248 Test 085 control_csawmg_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_csawmgt_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 223.714100 -The maximum resident set size (KB) = 840472 +The total amount of wall time = 220.319064 +The maximum resident set size (KB) = 835732 Test 086 control_csawmgt_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_ras_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 149.017760 -The maximum resident set size (KB) = 806552 +The total amount of wall time = 145.920210 +The maximum resident set size (KB) = 803944 Test 087 control_ras_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_diag_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.370147 -The maximum resident set size (KB) = 856024 +The total amount of wall time = 148.018536 +The maximum resident set size (KB) = 852472 Test 088 control_diag_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_debug_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.172424 -The maximum resident set size (KB) = 1625676 +The total amount of wall time = 150.318865 +The maximum resident set size (KB) = 1629036 Test 089 control_debug_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 942.293655 -The maximum resident set size (KB) = 661120 +The total amount of wall time = 945.852804 +The maximum resident set size (KB) = 661600 Test 090 regional_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.938931 -The maximum resident set size (KB) = 1183176 +The total amount of wall time = 267.242571 +The maximum resident set size (KB) = 1179124 Test 091 rap_control_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.852783 -The maximum resident set size (KB) = 1177280 +The total amount of wall time = 268.562304 +The maximum resident set size (KB) = 1174500 Test 092 hrrr_control_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_gf_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.191342 -The maximum resident set size (KB) = 1179872 +The total amount of wall time = 271.039593 +The maximum resident set size (KB) = 1176192 Test 093 hrrr_gf_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_c3_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.860812 -The maximum resident set size (KB) = 1179364 +The total amount of wall time = 269.103612 +The maximum resident set size (KB) = 1181928 Test 094 hrrr_c3_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_unified_drag_suite_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.940251 -The maximum resident set size (KB) = 1183372 +The total amount of wall time = 268.926176 +The maximum resident set size (KB) = 1180024 Test 095 rap_unified_drag_suite_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_diag_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 278.533816 -The maximum resident set size (KB) = 1263668 +The total amount of wall time = 285.393634 +The maximum resident set size (KB) = 1262036 Test 096 rap_diag_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.419175 -The maximum resident set size (KB) = 1183368 +The total amount of wall time = 273.169079 +The maximum resident set size (KB) = 1179424 Test 097 rap_cires_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_unified_ugwp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 272.991136 -The maximum resident set size (KB) = 1179820 +The total amount of wall time = 281.839362 +The maximum resident set size (KB) = 1181140 Test 098 rap_unified_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_lndp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.860152 -The maximum resident set size (KB) = 1181468 +The total amount of wall time = 269.484551 +The maximum resident set size (KB) = 1180268 Test 099 rap_lndp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_progcld_thompson_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.754282 -The maximum resident set size (KB) = 1180272 +The total amount of wall time = 269.486570 +The maximum resident set size (KB) = 1179744 Test 100 rap_progcld_thompson_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_noah_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 262.830742 -The maximum resident set size (KB) = 1176432 +The total amount of wall time = 261.635725 +The maximum resident set size (KB) = 1177000 Test 101 rap_noah_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_sfcdiff_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.491923 -The maximum resident set size (KB) = 1180180 +The total amount of wall time = 268.662886 +The maximum resident set size (KB) = 1178260 Test 102 rap_sfcdiff_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 443.299079 -The maximum resident set size (KB) = 1178912 +The total amount of wall time = 440.230638 +The maximum resident set size (KB) = 1175020 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rrfs_v1beta_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 263.014271 -The maximum resident set size (KB) = 1172380 +The total amount of wall time = 264.357214 +The maximum resident set size (KB) = 1175180 Test 104 rrfs_v1beta_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_clm_lake_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 338.422860 -The maximum resident set size (KB) = 1182060 +The total amount of wall time = 335.581738 +The maximum resident set size (KB) = 1183080 Test 105 rap_clm_lake_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_flake_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.972494 -The maximum resident set size (KB) = 1178700 +The total amount of wall time = 274.315894 +The maximum resident set size (KB) = 1178156 Test 106 rap_flake_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/gnv1_c96_no_nest_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3825,26 +3997,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 464.560260 -The maximum resident set size (KB) = 1182200 +The total amount of wall time = 479.027383 +The maximum resident set size (KB) = 1179752 Test 107 gnv1_c96_no_nest_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_wam_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 266.207365 -The maximum resident set size (KB) = 422156 +The total amount of wall time = 277.006958 +The maximum resident set size (KB) = 417856 Test 108 control_wam_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3855,14 +4027,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 191.193573 -The maximum resident set size (KB) = 1057420 +The total amount of wall time = 193.741344 +The maximum resident set size (KB) = 1058576 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3909,14 +4081,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.020916 -The maximum resident set size (KB) = 887212 +The total amount of wall time = 298.409683 +The maximum resident set size (KB) = 883064 Test 110 rap_control_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3963,14 +4135,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.682859 -The maximum resident set size (KB) = 879220 +The total amount of wall time = 156.130259 +The maximum resident set size (KB) = 879588 Test 111 hrrr_control_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_decomp_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_dyn32_phy32_intel Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4017,14 +4189,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.270432 -The maximum resident set size (KB) = 879500 +The total amount of wall time = 165.224962 +The maximum resident set size (KB) = 880760 Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_restart_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_dyn32_phy32_intel Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4063,28 +4235,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 220.369546 -The maximum resident set size (KB) = 794964 +The total amount of wall time = 222.610543 +The maximum resident set size (KB) = 795532 Test 113 rap_restart_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_restart_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_dyn32_phy32_intel Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 80.974194 -The maximum resident set size (KB) = 774724 +The total amount of wall time = 83.400520 +The maximum resident set size (KB) = 776720 Test 114 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4100,40 +4272,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 100.582549 -The maximum resident set size (KB) = 1085352 +The total amount of wall time = 102.604974 +The maximum resident set size (KB) = 1084384 Test 115 conus13km_control_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_2threads_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 43.458268 -The maximum resident set size (KB) = 1085384 +The total amount of wall time = 45.782977 +The maximum resident set size (KB) = 1085228 Test 116 conus13km_2threads_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_restart_mismatch_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 56.588260 -The maximum resident set size (KB) = 974996 +The total amount of wall time = 59.109964 +The maximum resident set size (KB) = 977056 Test 117 conus13km_restart_mismatch_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn64_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4180,42 +4352,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 205.612481 -The maximum resident set size (KB) = 908012 +The total amount of wall time = 210.999676 +The maximum resident set size (KB) = 907660 Test 118 rap_control_dyn64_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 262.497922 -The maximum resident set size (KB) = 1052816 +The total amount of wall time = 259.602129 +The maximum resident set size (KB) = 1054716 Test 119 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.117279 -The maximum resident set size (KB) = 1049252 +The total amount of wall time = 260.765049 +The maximum resident set size (KB) = 1050544 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4229,67 +4401,67 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 789.399290 -The maximum resident set size (KB) = 1130588 +The total amount of wall time = 790.038482 +The maximum resident set size (KB) = 1129896 Test 121 conus13km_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/conus13km_radar_tten_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_radar_tten_debug_intel Checking test 122 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 805.799878 -The maximum resident set size (KB) = 1198136 +The total amount of wall time = 791.513741 +The maximum resident set size (KB) = 1197900 Test 122 conus13km_radar_tten_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/rap_control_dyn64_phy32_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_debug_intel Checking test 123 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.720831 -The maximum resident set size (KB) = 1080236 +The total amount of wall time = 263.106216 +The maximum resident set size (KB) = 1080332 Test 123 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_intel Checking test 124 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 252.293928 -The maximum resident set size (KB) = 719000 +The total amount of wall time = 259.304606 +The maximum resident set size (KB) = 720072 Test 124 hafs_regional_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_thompson_gfdlsf_intel Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 283.868066 -The maximum resident set size (KB) = 1067332 +The total amount of wall time = 292.917706 +The maximum resident set size (KB) = 1065116 Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_ocn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_intel Checking test 126 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4298,14 +4470,14 @@ Checking test 126 hafs_regional_atm_ocn_intel 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 = 365.753352 -The maximum resident set size (KB) = 780064 +The total amount of wall time = 373.049608 +The maximum resident set size (KB) = 775664 Test 126 hafs_regional_atm_ocn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_wav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_wav_intel Checking test 127 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4314,14 +4486,14 @@ Checking test 127 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 634.560729 -The maximum resident set size (KB) = 790668 +The total amount of wall time = 644.261762 +The maximum resident set size (KB) = 790424 Test 127 hafs_regional_atm_wav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_wav_intel Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4332,14 +4504,14 @@ Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 702.697655 -The maximum resident set size (KB) = 812604 +The total amount of wall time = 709.546700 +The maximum resident set size (KB) = 810576 Test 128 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_1nest_atm_intel Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4361,14 +4533,14 @@ Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 261.029962 -The maximum resident set size (KB) = 475788 +The total amount of wall time = 261.969825 +The maximum resident set size (KB) = 478496 Test 129 hafs_regional_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_telescopic_2nests_atm_intel Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4377,14 +4549,14 @@ Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 324.062906 -The maximum resident set size (KB) = 495740 +The total amount of wall time = 332.239233 +The maximum resident set size (KB) = 494656 Test 130 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_1nest_atm_intel Checking test 131 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4431,14 +4603,14 @@ Checking test 131 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 122.667599 -The maximum resident set size (KB) = 391148 +The total amount of wall time = 127.034352 +The maximum resident set size (KB) = 392964 Test 131 hafs_global_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_multiple_4nests_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4520,14 +4692,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 354.359356 -The maximum resident set size (KB) = 457820 +The total amount of wall time = 364.922319 +The maximum resident set size (KB) = 458960 Test 132 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_specified_moving_1nest_atm_intel Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4536,14 +4708,14 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 179.337579 -The maximum resident set size (KB) = 511092 +The total amount of wall time = 182.517862 +The maximum resident set size (KB) = 512004 Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_intel Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4565,14 +4737,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 166.506589 -The maximum resident set size (KB) = 509624 +The total amount of wall time = 170.141584 +The maximum resident set size (KB) = 512536 Test 134 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4581,28 +4753,28 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 209.652701 -The maximum resident set size (KB) = 589708 +The total amount of wall time = 213.809751 +The maximum resident set size (KB) = 591644 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel 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 = 58.585001 -The maximum resident set size (KB) = 425668 +The total amount of wall time = 62.314111 +The maximum resident set size (KB) = 422892 Test 136 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/gnv1_nested_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_nested_intel Checking test 137 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4649,28 +4821,28 @@ Checking test 137 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 184.972509 -The maximum resident set size (KB) = 788256 +The total amount of wall time = 188.533083 +The maximum resident set size (KB) = 789572 Test 137 gnv1_nested_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 698.609102 -The maximum resident set size (KB) = 609400 +The total amount of wall time = 704.003045 +The maximum resident set size (KB) = 607608 Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4681,14 +4853,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 411.816066 -The maximum resident set size (KB) = 626012 +The total amount of wall time = 412.863336 +The maximum resident set size (KB) = 627584 Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4699,31 +4871,31 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 416.240632 -The maximum resident set size (KB) = 679900 +The total amount of wall time = 422.899779 +The maximum resident set size (KB) = 682664 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc ............ALT CHECK......NOT OK - Comparing sfcf003.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f003.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f003.nc ............ALT CHECK......NOT OK - Comparing ocn_2020_08_25_15.nc ............ALT CHECK......NOT OK - Comparing 20200825.150000.out_grd.ww3 .........NOT OK - Comparing 20200825.150000.out_pnt.ww3 .........NOT OK + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 300.456709 -The maximum resident set size (KB) = 673444 +The total amount of wall time = 304.944588 +The maximum resident set size (KB) = 673216 -Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel FAIL Tries: 2 +Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_docn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_intel Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4731,14 +4903,14 @@ Checking test 142 hafs_regional_docn_intel 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 = 315.182157 -The maximum resident set size (KB) = 746968 +The total amount of wall time = 319.054045 +The maximum resident set size (KB) = 748412 Test 142 hafs_regional_docn_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_docn_oisst_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_oisst_intel Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4746,131 +4918,131 @@ Checking test 143 hafs_regional_docn_oisst_intel 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 = 315.081624 -The maximum resident set size (KB) = 730200 +The total amount of wall time = 322.042774 +The maximum resident set size (KB) = 733540 Test 143 hafs_regional_docn_oisst_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/hafs_regional_datm_cdeps_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_datm_cdeps_intel Checking test 144 hafs_regional_datm_cdeps_intel 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 = 956.504239 -The maximum resident set size (KB) = 894200 +The total amount of wall time = 958.298657 +The maximum resident set size (KB) = 892616 Test 144 hafs_regional_datm_cdeps_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_intel Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.453860 -The maximum resident set size (KB) = 760584 +The total amount of wall time = 140.831670 +The maximum resident set size (KB) = 762300 Test 145 datm_cdeps_control_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_restart_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_restart_cfsr_intel Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 83.767578 -The maximum resident set size (KB) = 736892 +The total amount of wall time = 85.601070 +The maximum resident set size (KB) = 747924 Test 146 datm_cdeps_restart_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_gefs_intel Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 131.698148 -The maximum resident set size (KB) = 642456 +The total amount of wall time = 133.957403 +The maximum resident set size (KB) = 640304 Test 147 datm_cdeps_control_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_iau_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_iau_gefs_intel Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.176013 -The maximum resident set size (KB) = 641732 +The total amount of wall time = 136.465227 +The maximum resident set size (KB) = 644380 Test 148 datm_cdeps_iau_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_stochy_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_stochy_gefs_intel Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.400324 -The maximum resident set size (KB) = 640108 +The total amount of wall time = 135.448355 +The maximum resident set size (KB) = 640180 Test 149 datm_cdeps_stochy_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_ciceC_cfsr_intel Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.664004 -The maximum resident set size (KB) = 748848 +The total amount of wall time = 142.260860 +The maximum resident set size (KB) = 762244 Test 150 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_bulk_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_cfsr_intel Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.098541 -The maximum resident set size (KB) = 760320 +The total amount of wall time = 142.080187 +The maximum resident set size (KB) = 761716 Test 151 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_bulk_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_gefs_intel Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 131.269257 -The maximum resident set size (KB) = 637840 +The total amount of wall time = 132.791236 +The maximum resident set size (KB) = 641664 Test 152 datm_cdeps_bulk_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_mx025_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_cfsr_intel Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4879,14 +5051,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel 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 = 320.895152 -The maximum resident set size (KB) = 687232 +The total amount of wall time = 329.380629 +The maximum resident set size (KB) = 692224 Test 153 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_mx025_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_gefs_intel Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4895,77 +5067,77 @@ Checking test 154 datm_cdeps_mx025_gefs_intel 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 = 319.738173 -The maximum resident set size (KB) = 670892 +The total amount of wall time = 325.150991 +The maximum resident set size (KB) = 672096 Test 154 datm_cdeps_mx025_gefs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_multiple_files_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_multiple_files_cfsr_intel Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.132394 -The maximum resident set size (KB) = 761052 +The total amount of wall time = 141.004904 +The maximum resident set size (KB) = 761272 Test 155 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_3072x1536_cfsr_intel Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 223.715620 -The maximum resident set size (KB) = 2019800 +The total amount of wall time = 228.438023 +The maximum resident set size (KB) = 2023728 Test 156 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_gfs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_gfs_intel Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 224.526638 -The maximum resident set size (KB) = 2020888 +The total amount of wall time = 226.771550 +The maximum resident set size (KB) = 2022364 Test 157 datm_cdeps_gfs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_debug_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_debug_cfsr_intel Checking test 158 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 295.283572 -The maximum resident set size (KB) = 747944 +The total amount of wall time = 299.324383 +The maximum resident set size (KB) = 746840 Test 158 datm_cdeps_debug_cfsr_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_faster_intel Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.101650 -The maximum resident set size (KB) = 761196 +The total amount of wall time = 142.292989 +The maximum resident set size (KB) = 761924 Test 159 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_gswp3_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_gswp3_intel Checking test 160 datm_cdeps_lnd_gswp3_intel 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 @@ -4974,14 +5146,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 52.572138 -The maximum resident set size (KB) = 301168 +The total amount of wall time = 61.219151 +The maximum resident set size (KB) = 308664 Test 160 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_era5_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_intel Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -4990,14 +5162,14 @@ Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 47.488110 -The maximum resident set size (KB) = 450572 +The total amount of wall time = 57.142021 +The maximum resident set size (KB) = 449852 Test 161 datm_cdeps_lnd_era5_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/datm_cdeps_lnd_era5_rst_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_rst_intel Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5006,14 +5178,14 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 28.915730 -The maximum resident set size (KB) = 450996 +The total amount of wall time = 32.165049 +The maximum resident set size (KB) = 450856 Test 162 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_atmlnd_sbs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_sbs_intel Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5102,14 +5274,14 @@ Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 343.794718 -The maximum resident set size (KB) = 1628028 +The total amount of wall time = 399.287537 +The maximum resident set size (KB) = 1634536 Test 163 control_p8_atmlnd_sbs_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_p8_atmlnd_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_intel Checking test 164 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5198,14 +5370,14 @@ Checking test 164 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 338.549950 -The maximum resident set size (KB) = 1631404 +The total amount of wall time = 418.763604 +The maximum resident set size (KB) = 1628584 Test 164 control_p8_atmlnd_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_restart_p8_atmlnd_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_atmlnd_intel Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5226,14 +5398,14 @@ Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 182.205331 -The maximum resident set size (KB) = 847036 +The total amount of wall time = 219.850821 +The maximum resident set size (KB) = 848576 Test 165 control_restart_p8_atmlnd_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmwav_control_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmwav_control_noaero_p8_intel Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5276,14 +5448,14 @@ Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 80.686994 -The maximum resident set size (KB) = 1635336 +The total amount of wall time = 82.974003 +The maximum resident set size (KB) = 1631516 Test 166 atmwav_control_noaero_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/control_atmwav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_atmwav_intel Checking test 167 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5327,14 +5499,14 @@ Checking test 167 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 75.790449 -The maximum resident set size (KB) = 633800 +The total amount of wall time = 78.676602 +The maximum resident set size (KB) = 637188 Test 167 control_atmwav_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_intel Checking test 168 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5378,14 +5550,14 @@ Checking test 168 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 202.807153 -The maximum resident set size (KB) = 2947520 +The total amount of wall time = 206.295568 +The maximum resident set size (KB) = 2946840 Test 168 atmaero_control_p8_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_rad_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_intel Checking test 169 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5429,14 +5601,14 @@ Checking test 169 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 242.950049 -The maximum resident set size (KB) = 3002804 +The total amount of wall time = 244.930632 +The maximum resident set size (KB) = 3000868 Test 169 atmaero_control_p8_rad_intel PASS baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_83837/atmaero_control_p8_rad_micro_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_micro_intel Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5480,300 +5652,12 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 255.668557 -The maximum resident set size (KB) = 3016548 +The total amount of wall time = 258.692191 +The maximum resident set size (KB) = 3012148 Test 170 atmaero_control_p8_rad_micro_intel PASS -FAILED TESTS: -cpld_control_p8.v2.sfc_intel 008 failed in run_test -control_c48.v2.sfc_intel 034 failed in run_test -control_p8.v2.sfc_intel 044 failed in run_test -060 regional_wofs_intel failed in check_result -regional_wofs_intel 060 failed in run_test -073 rrfs_v1nssl_intel failed in check_result -rrfs_v1nssl_intel 073 failed in run_test -074 rrfs_v1nssl_nohailnoccn_intel failed in check_result -rrfs_v1nssl_nohailnoccn_intel 074 failed in run_test -141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel failed in check_result -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel 141 failed in run_test - -REGRESSION TEST FAILED -Thu 08 Feb 2024 08:40:23 AM MST -Elapsed time: 01h:07m:30s. Have a nice day! -Thu 08 Feb 2024 10:15:15 AM MST -Start Regression test - -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 943 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2swa_intel elapsed time 1115 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/cpld_control_p8.v2.sfc_intel -Checking test 001 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 322.970294 -The maximum resident set size (KB) = 3092864 - -Test 001 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/control_c48.v2.sfc_intel -Checking test 002 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 309.003916 -The maximum resident set size (KB) = 730856 - -Test 002 control_c48.v2.sfc_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/control_p8.v2.sfc_intel -Checking test 003 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 136.798327 -The maximum resident set size (KB) = 1597336 - -Test 003 control_p8.v2.sfc_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/regional_wofs_intel -Checking test 004 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 322.715670 -The maximum resident set size (KB) = 1595336 - -Test 004 regional_wofs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/rrfs_v1nssl_intel -Checking test 005 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 430.075443 -The maximum resident set size (KB) = 1962016 - -Test 005 rrfs_v1nssl_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/rrfs_v1nssl_nohailnoccn_intel -Checking test 006 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 413.542868 -The maximum resident set size (KB) = 1953020 - -Test 006 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_115584/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 007 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - -The total amount of wall time = 299.761206 -The maximum resident set size (KB) = 675980 - -Test 007 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - REGRESSION TEST WAS SUCCESSFUL -Thu 08 Feb 2024 10:47:37 AM MST -Elapsed time: 00h:32m:23s. Have a nice day! +Thu 08 Feb 2024 09:43:05 PM MST +Elapsed time: 02h:07m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea-c5.log b/tests/logs/RegressionTests_gaea.log similarity index 70% rename from tests/logs/RegressionTests_gaea-c5.log rename to tests/logs/RegressionTests_gaea.log index 9cfb0497d2..869ba39db4 100644 --- a/tests/logs/RegressionTests_gaea-c5.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,62 +1,62 @@ -Tue 16 Jan 2024 05:43:42 PM EST +Thu 08 Feb 2024 09:14:00 PM EST Start Regression test -Testing UFSWM Hash: a3fd48cfc36e8487b8d5ce1225849a124527de8a +Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - f8f7ba76ac8b0687695c2a76deaf45ab5c2e39f3 CMEPS-interface/CMEPS (cmeps_v0.4.1-2301-gf8f7ba7) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 93375088f277aeed2178d25745afd4b5d86e2a0b FV3 (remotes/origin/hailcast-k) ++c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - 60c397b910c9f0c5d1b35f9fea2293ccebd27fc8 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9875-g60c397b91) - 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) - 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 604 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 396 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 797 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 602 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 459 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 783 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 596 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 621 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 633 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 359 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 632 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 615 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 150 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 688 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 415 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 851 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 689 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 372 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 731 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 725 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 729 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 869 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 540 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1259 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 539 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1079 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 879 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 511 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 469 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1158 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 572 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 390 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 712 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 616 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 333 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 583 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 660 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 696 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 877 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 669 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 651 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 667 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 784 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1147 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 418 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 977 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 773 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 415 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 727 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 417 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1125 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 315 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.693898 - 0: The maximum resident set size (KB) = 3046576 + 0: The total amount of wall time = 299.420878 + 0: The maximum resident set size (KB) = 3073108 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,30 +192,67 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 791.715872 - 0: The maximum resident set size (KB) = 1667604 + 0: The total amount of wall time = 783.101264 + 0: The maximum resident set size (KB) = 1695132 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_gfsv17_iau_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing 20210323.000000.out_pnt.ww3 .........OK - Comparing 20210323.000000.out_grd.ww3 .........OK + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK + Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 541.881266 - 0: The maximum resident set size (KB) = 946268 + 0: The total amount of wall time = 835.953830 + 0: The maximum resident set size (KB) = 1807968 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -268,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.935290 - 0: The maximum resident set size (KB) = 934752 + 0: The total amount of wall time = 380.125975 + 0: The maximum resident set size (KB) = 941948 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_mpi_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -339,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 861.217840 - 0: The maximum resident set size (KB) = 1655816 + 0: The total amount of wall time = 856.224449 + 0: The maximum resident set size (KB) = 1668764 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -398,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1264.912641 - 0: The maximum resident set size (KB) = 1662092 + 0: The total amount of wall time = 1463.391416 + 0: The maximum resident set size (KB) = 1699088 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -470,15 +507,27 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.473305 - 0: The maximum resident set size (KB) = 3082156 + 0: The total amount of wall time = 344.691260 + 0: The maximum resident set size (KB) = 3099192 Test 007 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8.v2.sfc_intel +Checking test 008 cpld_control_p8.v2.sfc_intel results .... + 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 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 sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -530,15 +579,75 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 211.050119 - 0: The maximum resident set size (KB) = 3141828 + 0: The total amount of wall time = 347.397426 + 0: The maximum resident set size (KB) = 3098852 -Test 008 cpld_restart_p8_intel PASS +Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_p8_intel +Checking test 009 cpld_restart_p8_intel results .... + 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 201.369035 + 0: The maximum resident set size (KB) = 3157080 + +Test 009 cpld_restart_p8_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_qr_p8_intel +Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -602,15 +711,15 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.006837 - 0: The maximum resident set size (KB) = 3102608 + 0: The total amount of wall time = 350.074732 + 0: The maximum resident set size (KB) = 3122940 -Test 009 cpld_control_qr_p8_intel PASS +Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_qr_p8_intel +Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -662,15 +771,15 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 215.732089 - 0: The maximum resident set size (KB) = 3160064 + 0: The total amount of wall time = 205.956550 + 0: The maximum resident set size (KB) = 3177660 -Test 010 cpld_restart_qr_p8_intel PASS +Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_2threads_p8_intel +Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -722,15 +831,15 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.106361 - 0: The maximum resident set size (KB) = 3395900 + 0: The total amount of wall time = 313.384977 + 0: The maximum resident set size (KB) = 3410384 -Test 011 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_decomp_p8_intel +Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -782,15 +891,15 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.187815 - 0: The maximum resident set size (KB) = 3077112 + 0: The total amount of wall time = 339.131555 + 0: The maximum resident set size (KB) = 3098536 -Test 012 cpld_decomp_p8_intel PASS +Test 013 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_p8_intel +Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -842,15 +951,15 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 295.877139 - 0: The maximum resident set size (KB) = 3015824 + 0: The total amount of wall time = 290.045166 + 0: The maximum resident set size (KB) = 3021892 -Test 013 cpld_mpi_p8_intel PASS +Test 014 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_ciceC_p8_intel +Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -914,15 +1023,15 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.219175 - 0: The maximum resident set size (KB) = 3083540 + 0: The total amount of wall time = 348.186106 + 0: The maximum resident set size (KB) = 3099424 -Test 014 cpld_control_ciceC_p8_intel PASS +Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c192_p8_intel +Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -974,15 +1083,15 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 634.667006 - 0: The maximum resident set size (KB) = 3255856 + 0: The total amount of wall time = 574.739062 + 0: The maximum resident set size (KB) = 3283436 -Test 015 cpld_control_c192_p8_intel PASS +Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_c192_p8_intel +Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1034,15 +1143,15 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 414.922893 - 0: The maximum resident set size (KB) = 3597560 + 0: The total amount of wall time = 392.269931 + 0: The maximum resident set size (KB) = 3608872 -Test 016 cpld_restart_c192_p8_intel PASS +Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_bmark_p8_intel -Checking test 017 cpld_bmark_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_bmark_p8_intel +Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1089,15 +1198,15 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 778.687893 - 0: The maximum resident set size (KB) = 4024020 + 0: The total amount of wall time = 714.544209 + 0: The maximum resident set size (KB) = 4037728 -Test 017 cpld_bmark_p8_intel PASS +Test 018 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_bmark_p8_intel -Checking test 018 cpld_restart_bmark_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_bmark_p8_intel +Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1144,15 +1253,15 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 580.130304 - 0: The maximum resident set size (KB) = 4332988 + 0: The total amount of wall time = 500.305230 + 0: The maximum resident set size (KB) = 4341392 -Test 018 cpld_restart_bmark_p8_intel PASS +Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_s2sa_p8_intel -Checking test 019 cpld_s2sa_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_s2sa_p8_intel +Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1202,15 +1311,15 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 336.862677 - 0: The maximum resident set size (KB) = 3039880 + 0: The total amount of wall time = 328.882216 + 0: The maximum resident set size (KB) = 3068308 -Test 019 cpld_s2sa_p8_intel PASS +Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_noaero_p8_intel -Checking test 020 cpld_control_noaero_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_intel +Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1273,15 +1382,15 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.519738 - 0: The maximum resident set size (KB) = 1675624 + 0: The total amount of wall time = 252.442767 + 0: The maximum resident set size (KB) = 1688036 -Test 020 cpld_control_noaero_p8_intel PASS +Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_nowave_noaero_p8_intel -Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_nowave_noaero_p8_intel +Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1342,15 +1451,15 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel 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 = 269.574441 - 0: The maximum resident set size (KB) = 1718088 + 0: The total amount of wall time = 262.879555 + 0: The maximum resident set size (KB) = 1731972 -Test 021 cpld_control_nowave_noaero_p8_intel PASS +Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_p8_intel -Checking test 022 cpld_debug_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_p8_intel +Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1402,15 +1511,15 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 482.697999 - 0: The maximum resident set size (KB) = 3095796 + 0: The total amount of wall time = 479.130562 + 0: The maximum resident set size (KB) = 3131512 -Test 022 cpld_debug_p8_intel PASS +Test 023 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_noaero_p8_intel -Checking test 023 cpld_debug_noaero_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_noaero_p8_intel +Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1461,15 +1570,15 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.444437 - 0: The maximum resident set size (KB) = 1661188 + 0: The total amount of wall time = 326.382644 + 0: The maximum resident set size (KB) = 1698208 -Test 023 cpld_debug_noaero_p8_intel PASS +Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_noaero_p8_agrid_intel -Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_agrid_intel +Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1530,15 +1639,15 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel 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 = 272.243156 - 0: The maximum resident set size (KB) = 1706648 + 0: The total amount of wall time = 262.402236 + 0: The maximum resident set size (KB) = 1730948 -Test 024 cpld_control_noaero_p8_agrid_intel PASS +Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_c48_intel -Checking test 025 cpld_control_c48_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c48_intel +Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1587,15 +1696,15 @@ Checking test 025 cpld_control_c48_intel 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 = 417.436822 - 0: The maximum resident set size (KB) = 2635252 + 0: The total amount of wall time = 406.098808 + 0: The maximum resident set size (KB) = 2663032 -Test 025 cpld_control_c48_intel PASS +Test 026 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_p8_faster_intel -Checking test 026 cpld_control_p8_faster_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_faster_intel +Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1659,15 +1768,15 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 373.586327 - 0: The maximum resident set size (KB) = 3081772 + 0: The total amount of wall time = 336.737801 + 0: The maximum resident set size (KB) = 3101712 -Test 026 cpld_control_p8_faster_intel PASS +Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_control_pdlib_p8_intel -Checking test 027 cpld_control_pdlib_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_pdlib_p8_intel +Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1730,15 +1839,15 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 888.987257 - 0: The maximum resident set size (KB) = 1699152 + 0: The total amount of wall time = 846.566459 + 0: The maximum resident set size (KB) = 1702980 -Test 027 cpld_control_pdlib_p8_intel PASS +Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_restart_pdlib_p8_intel -Checking test 028 cpld_restart_pdlib_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_pdlib_p8_intel +Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1789,15 +1898,15 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 433.760089 - 0: The maximum resident set size (KB) = 994264 + 0: The total amount of wall time = 409.132882 + 0: The maximum resident set size (KB) = 1001232 -Test 028 cpld_restart_pdlib_p8_intel PASS +Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_mpi_pdlib_p8_intel -Checking test 029 cpld_mpi_pdlib_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_pdlib_p8_intel +Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1860,15 +1969,15 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 991.583940 - 0: The maximum resident set size (KB) = 1662968 + 0: The total amount of wall time = 1005.789462 + 0: The maximum resident set size (KB) = 1682652 -Test 029 cpld_mpi_pdlib_p8_intel PASS +Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/cpld_debug_pdlib_p8_intel -Checking test 030 cpld_debug_pdlib_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_pdlib_p8_intel +Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1919,15 +2028,15 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1566.307181 - 0: The maximum resident set size (KB) = 1677460 + 0: The total amount of wall time = 1560.548722 + 0: The maximum resident set size (KB) = 1711056 -Test 030 cpld_debug_pdlib_p8_intel PASS +Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_flake_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_flake_intel -Checking test 031 control_flake_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_flake_intel +Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1937,15 +2046,15 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.081926 - 0: The maximum resident set size (KB) = 648620 + 0: The total amount of wall time = 198.028888 + 0: The maximum resident set size (KB) = 672092 -Test 031 control_flake_intel PASS +Test 032 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_CubedSphereGrid_intel -Checking test 032 control_CubedSphereGrid_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_intel +Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1971,20 +2080,20 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.603819 - 0: The maximum resident set size (KB) = 596076 + 0: The total amount of wall time = 122.566159 + 0: The maximum resident set size (KB) = 617136 -Test 032 control_CubedSphereGrid_intel PASS +Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_CubedSphereGrid_parallel_intel -Checking test 033 control_CubedSphereGrid_parallel_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_parallel_intel +Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK + Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK @@ -1993,15 +2102,15 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.329267 - 0: The maximum resident set size (KB) = 610156 + 0: The total amount of wall time = 126.766859 + 0: The maximum resident set size (KB) = 625984 -Test 033 control_CubedSphereGrid_parallel_intel PASS +Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_latlon_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_latlon_intel -Checking test 034 control_latlon_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_latlon_intel +Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2011,15 +2120,15 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.631876 - 0: The maximum resident set size (KB) = 600416 + 0: The total amount of wall time = 123.162572 + 0: The maximum resident set size (KB) = 620548 -Test 034 control_latlon_intel PASS +Test 035 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wrtGauss_netcdf_parallel_intel -Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_intel +Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2029,15 +2138,15 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.971337 - 0: The maximum resident set size (KB) = 597276 + 0: The total amount of wall time = 127.879693 + 0: The maximum resident set size (KB) = 620564 -Test 035 control_wrtGauss_netcdf_parallel_intel PASS +Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c48_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c48_intel -Checking test 036 control_c48_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48_intel +Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2075,15 +2184,61 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 336.104403 -0: The maximum resident set size (KB) = 716424 +0: The total amount of wall time = 330.717033 +0: The maximum resident set size (KB) = 720884 -Test 036 control_c48_intel PASS +Test 037 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c192_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c192_intel -Checking test 037 control_c192_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48.v2.sfc_intel +Checking test 038 control_c48.v2.sfc_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 334.720334 +0: The maximum resident set size (KB) = 727156 + +Test 038 control_c48.v2.sfc_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c192_intel +Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2093,15 +2248,15 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 503.132647 - 0: The maximum resident set size (KB) = 723704 + 0: The total amount of wall time = 501.071043 + 0: The maximum resident set size (KB) = 738020 -Test 037 control_c192_intel PASS +Test 039 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c384_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c384_intel -Checking test 038 control_c384_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384_intel +Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2111,15 +2266,15 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1008.895305 - 0: The maximum resident set size (KB) = 1023096 + 0: The total amount of wall time = 954.853910 + 0: The maximum resident set size (KB) = 1039848 -Test 038 control_c384_intel PASS +Test 040 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_c384gdas_intel -Checking test 039 control_c384gdas_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384gdas_intel +Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -2161,15 +2316,15 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 857.695164 - 0: The maximum resident set size (KB) = 1165944 + 0: The total amount of wall time = 819.668504 + 0: The maximum resident set size (KB) = 1182096 -Test 039 control_c384gdas_intel PASS +Test 041 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_stochy_intel -Checking test 040 control_stochy_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_intel +Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2179,29 +2334,29 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.480149 - 0: The maximum resident set size (KB) = 610708 + 0: The total amount of wall time = 83.154593 + 0: The maximum resident set size (KB) = 624540 -Test 040 control_stochy_intel PASS +Test 042 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_stochy_restart_intel -Checking test 041 control_stochy_restart_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_restart_intel +Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.921563 - 0: The maximum resident set size (KB) = 418004 + 0: The total amount of wall time = 45.030959 + 0: The maximum resident set size (KB) = 428676 -Test 041 control_stochy_restart_intel PASS +Test 043 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_lndp_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_lndp_intel -Checking test 042 control_lndp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_intel +Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2211,15 +2366,37 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.670539 - 0: The maximum resident set size (KB) = 607896 + 0: The total amount of wall time = 79.511936 + 0: The maximum resident set size (KB) = 626012 + +Test 044 control_lndp_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr4_intel +Checking test 045 control_iovr4_intel 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 + + 0: The total amount of wall time = 126.438402 + 0: The maximum resident set size (KB) = 620524 -Test 042 control_lndp_intel PASS +Test 045 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_iovr4_intel -Checking test 043 control_iovr4_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr5_intel +Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2233,15 +2410,15 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 124.553412 - 0: The maximum resident set size (KB) = 601008 + 0: The total amount of wall time = 125.584737 + 0: The maximum resident set size (KB) = 620392 -Test 043 control_iovr4_intel PASS +Test 046 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_iovr5_intel -Checking test 044 control_iovr5_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_intel +Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2254,16 +2431,48 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 124.791637 - 0: The maximum resident set size (KB) = 597620 + 0: The total amount of wall time = 153.223911 + 0: The maximum resident set size (KB) = 1607692 -Test 044 control_iovr5_intel PASS +Test 047 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_intel -Checking test 045 control_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8.v2.sfc_intel +Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2309,15 +2518,15 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.143198 - 0: The maximum resident set size (KB) = 1582188 + 0: The total amount of wall time = 154.482026 + 0: The maximum resident set size (KB) = 1608784 -Test 045 control_p8_intel PASS +Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_ugwpv1_intel -Checking test 046 control_p8_ugwpv1_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_ugwpv1_intel +Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2363,15 +2572,15 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.453185 - 0: The maximum resident set size (KB) = 1589256 + 0: The total amount of wall time = 145.699561 + 0: The maximum resident set size (KB) = 1611024 -Test 046 control_p8_ugwpv1_intel PASS +Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_restart_p8_intel -Checking test 047 control_restart_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_intel +Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2409,15 +2618,15 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.679556 - 0: The maximum resident set size (KB) = 776104 + 0: The total amount of wall time = 81.549425 + 0: The maximum resident set size (KB) = 791664 -Test 047 control_restart_p8_intel PASS +Test 050 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_noqr_p8_intel -Checking test 048 control_noqr_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_noqr_p8_intel +Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2463,15 +2672,15 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 152.419694 - 0: The maximum resident set size (KB) = 1579632 + 0: The total amount of wall time = 147.605183 + 0: The maximum resident set size (KB) = 1596700 -Test 048 control_noqr_p8_intel PASS +Test 051 control_noqr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_restart_noqr_p8_intel -Checking test 049 control_restart_noqr_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_noqr_p8_intel +Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2509,15 +2718,15 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 80.953108 - 0: The maximum resident set size (KB) = 778924 + 0: The total amount of wall time = 79.539949 + 0: The maximum resident set size (KB) = 793888 -Test 049 control_restart_noqr_p8_intel PASS +Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_decomp_p8_intel -Checking test 050 control_decomp_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_decomp_p8_intel +Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2559,15 +2768,15 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.916878 - 0: The maximum resident set size (KB) = 1575900 + 0: The total amount of wall time = 154.443978 + 0: The maximum resident set size (KB) = 1596264 -Test 050 control_decomp_p8_intel PASS +Test 053 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_2threads_p8_intel -Checking test 051 control_2threads_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_2threads_p8_intel +Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2609,15 +2818,15 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.521403 - 0: The maximum resident set size (KB) = 1668016 + 0: The total amount of wall time = 130.109612 + 0: The maximum resident set size (KB) = 1686360 -Test 051 control_2threads_p8_intel PASS +Test 054 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_lndp_intel -Checking test 052 control_p8_lndp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_lndp_intel +Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2635,15 +2844,15 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 273.787145 - 0: The maximum resident set size (KB) = 1574156 + 0: The total amount of wall time = 270.809116 + 0: The maximum resident set size (KB) = 1607180 -Test 052 control_p8_lndp_intel PASS +Test 055 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_rrtmgp_intel -Checking test 053 control_p8_rrtmgp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_rrtmgp_intel +Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2689,15 +2898,15 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.890485 - 0: The maximum resident set size (KB) = 1639780 + 0: The total amount of wall time = 200.278306 + 0: The maximum resident set size (KB) = 1658604 -Test 053 control_p8_rrtmgp_intel PASS +Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_mynn_intel +Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2743,15 +2952,15 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.984850 - 0: The maximum resident set size (KB) = 1590252 + 0: The total amount of wall time = 153.822891 + 0: The maximum resident set size (KB) = 1614636 -Test 054 control_p8_mynn_intel PASS +Test 057 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/merra2_thompson_intel +Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2797,15 +3006,15 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.702357 - 0: The maximum resident set size (KB) = 1590976 + 0: The total amount of wall time = 180.024807 + 0: The maximum resident set size (KB) = 1615548 -Test 055 merra2_thompson_intel PASS +Test 058 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_control_intel -Checking test 056 regional_control_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_intel +Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2815,29 +3024,29 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 286.165776 - 0: The maximum resident set size (KB) = 602288 + 0: The total amount of wall time = 266.776185 + 0: The maximum resident set size (KB) = 616704 -Test 056 regional_control_intel PASS +Test 059 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_restart_intel -Checking test 057 regional_restart_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_restart_intel +Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.954454 - 0: The maximum resident set size (KB) = 775012 + 0: The total amount of wall time = 142.430140 + 0: The maximum resident set size (KB) = 790308 -Test 057 regional_restart_intel PASS +Test 060 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_decomp_intel +Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2847,15 +3056,15 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 290.645549 - 0: The maximum resident set size (KB) = 608428 + 0: The total amount of wall time = 275.985134 + 0: The maximum resident set size (KB) = 615772 -Test 058 regional_decomp_intel PASS +Test 061 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2threads_intel +Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2865,44 +3074,44 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 174.817837 - 0: The maximum resident set size (KB) = 742348 + 0: The total amount of wall time = 156.979689 + 0: The maximum resident set size (KB) = 761560 -Test 059 regional_2threads_intel PASS +Test 062 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_noquilt_intel -Checking test 060 regional_noquilt_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_noquilt_intel +Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 265.077864 - 0: The maximum resident set size (KB) = 1144208 + 0: The total amount of wall time = 264.382413 + 0: The maximum resident set size (KB) = 1154836 -Test 060 regional_noquilt_intel PASS +Test 063 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_netcdf_parallel_intel +Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 285.231612 - 0: The maximum resident set size (KB) = 603528 + 0: The total amount of wall time = 268.557387 + 0: The maximum resident set size (KB) = 616500 -Test 061 regional_netcdf_parallel_intel PASS +Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2dwrtdecomp_intel +Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2912,15 +3121,15 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 286.023296 - 0: The maximum resident set size (KB) = 603252 + 0: The total amount of wall time = 265.501802 + 0: The maximum resident set size (KB) = 617424 -Test 062 regional_2dwrtdecomp_intel PASS +Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_wofs_intel +Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2930,15 +3139,15 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 356.877585 - 0: The maximum resident set size (KB) = 1577304 + 0: The total amount of wall time = 345.536210 + 0: The maximum resident set size (KB) = 1591424 -Test 063 regional_wofs_intel PASS +Test 066 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_intel -Checking test 064 rap_control_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_intel +Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2984,15 +3193,15 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 376.625016 - 0: The maximum resident set size (KB) = 992092 + 0: The total amount of wall time = 372.406298 + 0: The maximum resident set size (KB) = 1010184 -Test 064 rap_control_intel PASS +Test 067 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_spp_sppt_shum_skeb_intel -Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_intel +Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3002,15 +3211,15 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 228.963392 - 0: The maximum resident set size (KB) = 1172044 + 0: The total amount of wall time = 219.383124 + 0: The maximum resident set size (KB) = 1188660 -Test 065 regional_spp_sppt_shum_skeb_intel PASS +Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_decomp_intel -Checking test 066 rap_decomp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_decomp_intel +Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3056,15 +3265,15 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.734844 - 0: The maximum resident set size (KB) = 993720 + 0: The total amount of wall time = 389.463204 + 0: The maximum resident set size (KB) = 1009072 -Test 066 rap_decomp_intel PASS +Test 069 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_intel +Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3110,15 +3319,15 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.396445 - 0: The maximum resident set size (KB) = 1083052 + 0: The total amount of wall time = 339.732048 + 0: The maximum resident set size (KB) = 1096936 -Test 067 rap_2threads_intel PASS +Test 070 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_restart_intel -Checking test 068 rap_restart_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_intel +Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3156,15 +3365,15 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.550425 - 0: The maximum resident set size (KB) = 862812 + 0: The total amount of wall time = 192.513711 + 0: The maximum resident set size (KB) = 879100 -Test 068 rap_restart_intel PASS +Test 071 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_intel +Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3210,15 +3419,15 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.999521 - 0: The maximum resident set size (KB) = 990040 + 0: The total amount of wall time = 375.928959 + 0: The maximum resident set size (KB) = 1007044 -Test 069 rap_sfcdiff_intel PASS +Test 072 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_decomp_intel +Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3264,15 +3473,15 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 403.367645 - 0: The maximum resident set size (KB) = 989256 + 0: The total amount of wall time = 391.662635 + 0: The maximum resident set size (KB) = 1005480 -Test 070 rap_sfcdiff_decomp_intel PASS +Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_restart_intel +Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3310,15 +3519,15 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.662362 - 0: The maximum resident set size (KB) = 863400 + 0: The total amount of wall time = 277.114967 + 0: The maximum resident set size (KB) = 878172 -Test 071 rap_sfcdiff_restart_intel PASS +Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_intel -Checking test 072 hrrr_control_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_intel +Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3364,15 +3573,15 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.730878 - 0: The maximum resident set size (KB) = 979012 + 0: The total amount of wall time = 196.493005 + 0: The maximum resident set size (KB) = 1004980 -Test 072 hrrr_control_intel PASS +Test 075 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_decomp_intel -Checking test 073 hrrr_control_decomp_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_intel +Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3418,15 +3627,15 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.034466 - 0: The maximum resident set size (KB) = 984728 + 0: The total amount of wall time = 196.037519 + 0: The maximum resident set size (KB) = 1006700 -Test 073 hrrr_control_decomp_intel PASS +Test 076 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_intel +Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3472,29 +3681,29 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.498265 - 0: The maximum resident set size (KB) = 1072352 + 0: The total amount of wall time = 172.179545 + 0: The maximum resident set size (KB) = 1087388 -Test 074 hrrr_control_2threads_intel PASS +Test 077 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_restart_intel -Checking test 075 hrrr_control_restart_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_intel +Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.088272 - 0: The maximum resident set size (KB) = 819512 + 0: The total amount of wall time = 101.183578 + 0: The maximum resident set size (KB) = 836076 -Test 075 hrrr_control_restart_intel PASS +Test 078 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1beta_intel -Checking test 076 rrfs_v1beta_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_intel +Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3540,15 +3749,15 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 377.033517 - 0: The maximum resident set size (KB) = 988468 + 0: The total amount of wall time = 367.784492 + 0: The maximum resident set size (KB) = 1001432 -Test 076 rrfs_v1beta_intel PASS +Test 079 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1nssl_intel -Checking test 077 rrfs_v1nssl_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_intel +Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3562,15 +3771,15 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 453.658481 - 0: The maximum resident set size (KB) = 1941460 + 0: The total amount of wall time = 448.168986 + 0: The maximum resident set size (KB) = 1964892 -Test 077 rrfs_v1nssl_intel PASS +Test 080 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1nssl_nohailnoccn_intel -Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_nohailnoccn_intel +Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3584,15 +3793,15 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 447.251510 - 0: The maximum resident set size (KB) = 1939508 + 0: The total amount of wall time = 446.473435 + 0: The maximum resident set size (KB) = 1951820 -Test 078 rrfs_v1nssl_nohailnoccn_intel PASS +Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmg_intel -Checking test 079 control_csawmg_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_intel +Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3602,15 +3811,15 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 315.319376 - 0: The maximum resident set size (KB) = 681292 + 0: The total amount of wall time = 320.662659 + 0: The maximum resident set size (KB) = 696108 -Test 079 control_csawmg_intel PASS +Test 082 control_csawmg_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmgt_intel -Checking test 080 control_csawmgt_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_intel +Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3620,15 +3829,15 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 317.569931 - 0: The maximum resident set size (KB) = 680756 + 0: The total amount of wall time = 315.316370 + 0: The maximum resident set size (KB) = 693920 -Test 080 control_csawmgt_intel PASS +Test 083 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_ras_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_ras_intel -Checking test 081 control_ras_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_intel +Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3638,27 +3847,27 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 175.319921 - 0: The maximum resident set size (KB) = 644664 + 0: The total amount of wall time = 176.143298 + 0: The maximum resident set size (KB) = 656308 -Test 081 control_ras_intel PASS +Test 084 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wam_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wam_intel -Checking test 082 control_wam_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_intel +Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 116.362685 - 0: The maximum resident set size (KB) = 360060 + 0: The total amount of wall time = 113.955734 + 0: The maximum resident set size (KB) = 370060 -Test 082 control_wam_intel PASS +Test 085 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_faster_intel -Checking test 083 control_p8_faster_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_faster_intel +Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3704,15 +3913,15 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.147276 - 0: The maximum resident set size (KB) = 1570880 + 0: The total amount of wall time = 143.548278 + 0: The maximum resident set size (KB) = 1606792 -Test 083 control_p8_faster_intel PASS +Test 086 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_faster_intel +Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3722,15 +3931,15 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 272.298521 - 0: The maximum resident set size (KB) = 596036 + 0: The total amount of wall time = 253.726037 + 0: The maximum resident set size (KB) = 612972 -Test 084 regional_control_faster_intel PASS +Test 087 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_CubedSphereGrid_debug_intel -Checking test 085 control_CubedSphereGrid_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_debug_intel +Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3756,365 +3965,365 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 148.323951 - 0: The maximum resident set size (KB) = 758316 + 0: The total amount of wall time = 150.242981 + 0: The maximum resident set size (KB) = 779028 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 148.851244 - 0: The maximum resident set size (KB) = 757840 + 0: The total amount of wall time = 146.197231 + 0: The maximum resident set size (KB) = 782544 -Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_stochy_debug_intel -Checking test 087 control_stochy_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_debug_intel +Checking test 090 control_stochy_debug_intel 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.901861 - 0: The maximum resident set size (KB) = 764196 + 0: The total amount of wall time = 164.661988 + 0: The maximum resident set size (KB) = 783072 -Test 087 control_stochy_debug_intel PASS +Test 090 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_lndp_debug_intel -Checking test 088 control_lndp_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_debug_intel +Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.055818 - 0: The maximum resident set size (KB) = 765528 + 0: The total amount of wall time = 149.988033 + 0: The maximum resident set size (KB) = 789344 -Test 088 control_lndp_debug_intel PASS +Test 091 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmg_debug_intel -Checking test 089 control_csawmg_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_debug_intel +Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.250633 - 0: The maximum resident set size (KB) = 803924 + 0: The total amount of wall time = 233.814321 + 0: The maximum resident set size (KB) = 825524 -Test 089 control_csawmg_debug_intel PASS +Test 092 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_csawmgt_debug_intel -Checking test 090 control_csawmgt_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_debug_intel +Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.657800 - 0: The maximum resident set size (KB) = 802516 + 0: The total amount of wall time = 229.677652 + 0: The maximum resident set size (KB) = 825732 -Test 090 control_csawmgt_debug_intel PASS +Test 093 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_ras_debug_intel -Checking test 091 control_ras_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_debug_intel +Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.658604 - 0: The maximum resident set size (KB) = 776528 + 0: The total amount of wall time = 153.217828 + 0: The maximum resident set size (KB) = 795992 -Test 091 control_ras_debug_intel PASS +Test 094 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_diag_debug_intel -Checking test 092 control_diag_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_diag_debug_intel +Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.951183 - 0: The maximum resident set size (KB) = 804896 + 0: The total amount of wall time = 150.326038 + 0: The maximum resident set size (KB) = 843788 -Test 092 control_diag_debug_intel PASS +Test 095 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_debug_p8_intel +Checking test 096 control_debug_p8_intel 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.318055 - 0: The maximum resident set size (KB) = 1581212 + 0: The total amount of wall time = 153.807346 + 0: The maximum resident set size (KB) = 1622056 -Test 093 control_debug_p8_intel PASS +Test 096 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_debug_intel -Checking test 094 regional_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_debug_intel +Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 975.624483 - 0: The maximum resident set size (KB) = 615716 + 0: The total amount of wall time = 951.440755 + 0: The maximum resident set size (KB) = 635348 -Test 094 regional_debug_intel PASS +Test 097 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_intel +Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.741940 - 0: The maximum resident set size (KB) = 1140644 + 0: The total amount of wall time = 275.574703 + 0: The maximum resident set size (KB) = 1167644 -Test 095 rap_control_debug_intel PASS +Test 098 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_debug_intel -Checking test 096 hrrr_control_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_intel +Checking test 099 hrrr_control_debug_intel 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.699302 - 0: The maximum resident set size (KB) = 1140584 + 0: The total amount of wall time = 270.563931 + 0: The maximum resident set size (KB) = 1165580 -Test 096 hrrr_control_debug_intel PASS +Test 099 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_gf_debug_intel -Checking test 097 hrrr_gf_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_gf_debug_intel +Checking test 100 hrrr_gf_debug_intel 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.068401 - 0: The maximum resident set size (KB) = 1141952 + 0: The total amount of wall time = 274.622625 + 0: The maximum resident set size (KB) = 1167872 -Test 097 hrrr_gf_debug_intel PASS +Test 100 hrrr_gf_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_c3_debug_intel -Checking test 098 hrrr_c3_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_c3_debug_intel +Checking test 101 hrrr_c3_debug_intel 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.290088 - 0: The maximum resident set size (KB) = 1127960 + 0: The total amount of wall time = 274.497264 + 0: The maximum resident set size (KB) = 1167488 -Test 098 hrrr_c3_debug_intel PASS +Test 101 hrrr_c3_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_unified_drag_suite_debug_intel -Checking test 099 rap_unified_drag_suite_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_drag_suite_debug_intel +Checking test 102 rap_unified_drag_suite_debug_intel 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.108971 - 0: The maximum resident set size (KB) = 1129588 + 0: The total amount of wall time = 279.744497 + 0: The maximum resident set size (KB) = 1167272 -Test 099 rap_unified_drag_suite_debug_intel PASS +Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_diag_debug_intel -Checking test 100 rap_diag_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_diag_debug_intel +Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.170634 - 0: The maximum resident set size (KB) = 1225692 + 0: The total amount of wall time = 284.761696 + 0: The maximum resident set size (KB) = 1251864 -Test 100 rap_diag_debug_intel PASS +Test 103 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_cires_ugwp_debug_intel -Checking test 101 rap_cires_ugwp_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_cires_ugwp_debug_intel +Checking test 104 rap_cires_ugwp_debug_intel 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.810088 - 0: The maximum resident set size (KB) = 1143532 + 0: The total amount of wall time = 282.799806 + 0: The maximum resident set size (KB) = 1167008 -Test 101 rap_cires_ugwp_debug_intel PASS +Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_unified_ugwp_debug_intel -Checking test 102 rap_unified_ugwp_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_ugwp_debug_intel +Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.111548 - 0: The maximum resident set size (KB) = 1143644 + 0: The total amount of wall time = 280.032090 + 0: The maximum resident set size (KB) = 1168560 -Test 102 rap_unified_ugwp_debug_intel PASS +Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_lndp_debug_intel -Checking test 103 rap_lndp_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_lndp_debug_intel +Checking test 106 rap_lndp_debug_intel 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.435499 - 0: The maximum resident set size (KB) = 1143704 + 0: The total amount of wall time = 279.498006 + 0: The maximum resident set size (KB) = 1168716 -Test 103 rap_lndp_debug_intel PASS +Test 106 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_progcld_thompson_debug_intel -Checking test 104 rap_progcld_thompson_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_progcld_thompson_debug_intel +Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.071319 - 0: The maximum resident set size (KB) = 1145480 + 0: The total amount of wall time = 275.161299 + 0: The maximum resident set size (KB) = 1166716 -Test 104 rap_progcld_thompson_debug_intel PASS +Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_noah_debug_intel -Checking test 105 rap_noah_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_debug_intel +Checking test 108 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.470748 - 0: The maximum resident set size (KB) = 1144548 + 0: The total amount of wall time = 275.169096 + 0: The maximum resident set size (KB) = 1167368 -Test 105 rap_noah_debug_intel PASS +Test 108 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_sfcdiff_debug_intel -Checking test 106 rap_sfcdiff_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_debug_intel +Checking test 109 rap_sfcdiff_debug_intel 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.710906 - 0: The maximum resident set size (KB) = 1129072 + 0: The total amount of wall time = 278.852343 + 0: The maximum resident set size (KB) = 1165956 -Test 106 rap_sfcdiff_debug_intel PASS +Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel 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.012989 - 0: The maximum resident set size (KB) = 1141632 + 0: The total amount of wall time = 446.909084 + 0: The maximum resident set size (KB) = 1167168 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rrfs_v1beta_debug_intel -Checking test 108 rrfs_v1beta_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_debug_intel +Checking test 111 rrfs_v1beta_debug_intel 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.678279 - 0: The maximum resident set size (KB) = 1144196 + 0: The total amount of wall time = 273.997854 + 0: The maximum resident set size (KB) = 1163820 -Test 108 rrfs_v1beta_debug_intel PASS +Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_clm_lake_debug_intel -Checking test 109 rap_clm_lake_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_clm_lake_debug_intel +Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 323.722512 - 0: The maximum resident set size (KB) = 1130332 + 0: The total amount of wall time = 342.124919 + 0: The maximum resident set size (KB) = 1168832 -Test 109 rap_clm_lake_debug_intel PASS +Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_flake_debug_intel -Checking test 110 rap_flake_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_flake_debug_intel +Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.767834 - 0: The maximum resident set size (KB) = 1143940 + 0: The total amount of wall time = 280.492839 + 0: The maximum resident set size (KB) = 1167024 -Test 110 rap_flake_debug_intel PASS +Test 113 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/gnv1_c96_no_nest_debug_intel -Checking test 111 gnv1_c96_no_nest_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_c96_no_nest_debug_intel +Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4154,27 +4363,27 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 481.300630 - 0: The maximum resident set size (KB) = 1150040 + 0: The total amount of wall time = 488.367076 + 0: The maximum resident set size (KB) = 1172696 -Test 111 gnv1_c96_no_nest_debug_intel PASS +Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_wam_debug_intel -Checking test 112 control_wam_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_debug_intel +Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 276.633284 - 0: The maximum resident set size (KB) = 375776 + 0: The total amount of wall time = 280.877440 + 0: The maximum resident set size (KB) = 393268 -Test 112 control_wam_debug_intel PASS +Test 115 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4184,15 +4393,15 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 214.039755 - 0: The maximum resident set size (KB) = 1040080 + 0: The total amount of wall time = 209.916176 + 0: The maximum resident set size (KB) = 1053440 -Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn32_phy32_intel +Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4238,15 +4447,15 @@ Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.131229 - 0: The maximum resident set size (KB) = 876216 + 0: The total amount of wall time = 310.580027 + 0: The maximum resident set size (KB) = 889532 -Test 114 rap_control_dyn32_phy32_intel PASS +Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_dyn32_phy32_intel -Checking test 115 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_dyn32_phy32_intel +Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4292,15 +4501,15 @@ Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.999332 - 0: The maximum resident set size (KB) = 872160 + 0: The total amount of wall time = 164.184994 + 0: The maximum resident set size (KB) = 886288 -Test 115 hrrr_control_dyn32_phy32_intel PASS +Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_2threads_dyn32_phy32_intel -Checking test 116 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_dyn32_phy32_intel +Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4346,15 +4555,15 @@ Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.368875 - 0: The maximum resident set size (KB) = 939044 + 0: The total amount of wall time = 287.063893 + 0: The maximum resident set size (KB) = 946400 -Test 116 rap_2threads_dyn32_phy32_intel PASS +Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_2threads_dyn32_phy32_intel -Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_dyn32_phy32_intel +Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4400,15 +4609,15 @@ Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.450706 - 0: The maximum resident set size (KB) = 931488 + 0: The total amount of wall time = 147.654036 + 0: The maximum resident set size (KB) = 937980 -Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_decomp_dyn32_phy32_intel -Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_dyn32_phy32_intel +Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4454,15 +4663,15 @@ Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.402501 - 0: The maximum resident set size (KB) = 872248 + 0: The total amount of wall time = 168.520872 + 0: The maximum resident set size (KB) = 888012 -Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_restart_dyn32_phy32_intel -Checking test 119 rap_restart_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_dyn32_phy32_intel +Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4500,29 +4709,29 @@ Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.146482 - 0: The maximum resident set size (KB) = 775264 + 0: The total amount of wall time = 229.390693 + 0: The maximum resident set size (KB) = 785580 -Test 119 rap_restart_dyn32_phy32_intel PASS +Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_restart_dyn32_phy32_intel -Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_dyn32_phy32_intel +Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.803546 - 0: The maximum resident set size (KB) = 756504 + 0: The total amount of wall time = 85.278739 + 0: The maximum resident set size (KB) = 767948 -Test 120 hrrr_control_restart_dyn32_phy32_intel PASS +Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_control_intel -Checking test 121 conus13km_control_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_control_intel +Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4537,41 +4746,41 @@ Checking test 121 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 105.496149 - 0: The maximum resident set size (KB) = 1136096 + 0: The total amount of wall time = 104.558333 + 0: The maximum resident set size (KB) = 1094604 -Test 121 conus13km_control_intel PASS +Test 124 conus13km_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_2threads_intel -Checking test 122 conus13km_2threads_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_2threads_intel +Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 62.778290 - 0: The maximum resident set size (KB) = 1113892 + 0: The total amount of wall time = 49.790323 + 0: The maximum resident set size (KB) = 1074404 -Test 122 conus13km_2threads_intel PASS +Test 125 conus13km_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_restart_mismatch_intel -Checking test 123 conus13km_restart_mismatch_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_restart_mismatch_intel +Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 71.025432 - 0: The maximum resident set size (KB) = 1039620 + 0: The total amount of wall time = 60.742555 + 0: The maximum resident set size (KB) = 974488 -Test 123 conus13km_restart_mismatch_intel PASS +Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_intel +Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4617,43 +4826,43 @@ Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.778185 - 0: The maximum resident set size (KB) = 897216 + 0: The total amount of wall time = 218.180156 + 0: The maximum resident set size (KB) = 907760 -Test 124 rap_control_dyn64_phy32_intel PASS +Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_dyn32_phy32_intel +Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.944176 - 0: The maximum resident set size (KB) = 1023876 + 0: The total amount of wall time = 268.968198 + 0: The maximum resident set size (KB) = 1048848 -Test 125 rap_control_debug_dyn32_phy32_intel PASS +Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_dyn32_phy32_intel +Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.928533 - 0: The maximum resident set size (KB) = 1003452 + 0: The total amount of wall time = 268.556898 + 0: The maximum resident set size (KB) = 1046904 -Test 126 hrrr_control_debug_dyn32_phy32_intel PASS +Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_debug_intel -Checking test 127 conus13km_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_intel +Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4666,15 +4875,15 @@ Checking test 127 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 811.919684 - 0: The maximum resident set size (KB) = 1118872 + 0: The total amount of wall time = 808.962561 + 0: The maximum resident set size (KB) = 1127572 -Test 127 conus13km_debug_intel PASS +Test 130 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_debug_qr_intel -Checking test 128 conus13km_debug_qr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_qr_intel +Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4687,82 +4896,82 @@ Checking test 128 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 824.509492 - 0: The maximum resident set size (KB) = 785104 + 0: The total amount of wall time = 815.556756 + 0: The maximum resident set size (KB) = 801448 -Test 128 conus13km_debug_qr_intel PASS +Test 131 conus13km_debug_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_debug_2threads_intel -Checking test 129 conus13km_debug_2threads_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_2threads_intel +Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.905682 - 0: The maximum resident set size (KB) = 1136088 + 0: The total amount of wall time = 469.559045 + 0: The maximum resident set size (KB) = 1107132 -Test 129 conus13km_debug_2threads_intel PASS +Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/conus13km_radar_tten_debug_intel -Checking test 130 conus13km_radar_tten_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_radar_tten_debug_intel +Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 803.509507 - 0: The maximum resident set size (KB) = 1224516 + 0: The total amount of wall time = 808.327050 + 0: The maximum resident set size (KB) = 1193728 -Test 130 conus13km_radar_tten_debug_intel PASS +Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/rap_control_dyn64_phy32_debug_intel -Checking test 131 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_debug_intel +Checking test 134 rap_control_dyn64_phy32_debug_intel 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.527941 - 0: The maximum resident set size (KB) = 1035648 + 0: The total amount of wall time = 273.652687 + 0: The maximum resident set size (KB) = 1067304 -Test 131 rap_control_dyn64_phy32_debug_intel PASS +Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_intel -Checking test 132 hafs_regional_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_intel +Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 344.913301 - 0: The maximum resident set size (KB) = 699732 + 0: The total amount of wall time = 299.240879 + 0: The maximum resident set size (KB) = 710420 -Test 132 hafs_regional_atm_intel PASS +Test 135 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 356.951916 - 0: The maximum resident set size (KB) = 1052728 + 0: The total amount of wall time = 251.197498 + 0: The maximum resident set size (KB) = 1059192 -Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_ocn_intel -Checking test 134 hafs_regional_atm_ocn_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_intel +Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4770,15 +4979,15 @@ Checking test 134 hafs_regional_atm_ocn_intel 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 = 450.242276 - 0: The maximum resident set size (KB) = 736552 + 0: The total amount of wall time = 383.144873 + 0: The maximum resident set size (KB) = 754252 -Test 134 hafs_regional_atm_ocn_intel PASS +Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_wav_intel -Checking test 135 hafs_regional_atm_wav_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_wav_intel +Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4786,15 +4995,15 @@ Checking test 135 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 722.218636 - 0: The maximum resident set size (KB) = 768268 + 0: The total amount of wall time = 686.033772 + 0: The maximum resident set size (KB) = 782132 -Test 135 hafs_regional_atm_wav_intel PASS +Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_atm_ocn_wav_intel -Checking test 136 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_wav_intel +Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4804,15 +5013,15 @@ Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 773.544660 - 0: The maximum resident set size (KB) = 783328 + 0: The total amount of wall time = 757.235429 + 0: The maximum resident set size (KB) = 799300 -Test 136 hafs_regional_atm_ocn_wav_intel PASS +Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_1nest_atm_intel -Checking test 137 hafs_regional_1nest_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_1nest_atm_intel +Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4821,7 +5030,7 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK @@ -4833,15 +5042,15 @@ Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 319.122365 - 0: The maximum resident set size (KB) = 469412 + 0: The total amount of wall time = 300.344040 + 0: The maximum resident set size (KB) = 477124 -Test 137 hafs_regional_1nest_atm_intel PASS +Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_telescopic_2nests_atm_intel -Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_telescopic_2nests_atm_intel +Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4849,15 +5058,15 @@ Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 421.586071 - 0: The maximum resident set size (KB) = 490492 + 0: The total amount of wall time = 388.337235 + 0: The maximum resident set size (KB) = 503016 -Test 138 hafs_regional_telescopic_2nests_atm_intel PASS +Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_global_1nest_atm_intel -Checking test 139 hafs_global_1nest_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_1nest_atm_intel +Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4874,9 +5083,9 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK @@ -4885,33 +5094,33 @@ Checking test 139 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 189.640169 - 0: The maximum resident set size (KB) = 362224 + 0: The total amount of wall time = 160.372348 + 0: The maximum resident set size (KB) = 374924 -Test 139 hafs_global_1nest_atm_intel PASS +Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_global_multiple_4nests_atm_intel -Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_multiple_4nests_atm_intel +Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4937,7 +5146,7 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -4992,15 +5201,15 @@ Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 531.283341 - 0: The maximum resident set size (KB) = 425424 + 0: The total amount of wall time = 458.954643 + 0: The maximum resident set size (KB) = 437152 -Test 140 hafs_global_multiple_4nests_atm_intel PASS +Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_specified_moving_1nest_atm_intel -Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_specified_moving_1nest_atm_intel +Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5008,15 +5217,15 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 232.811959 - 0: The maximum resident set size (KB) = 501776 + 0: The total amount of wall time = 207.888221 + 0: The maximum resident set size (KB) = 513216 -Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_intel +Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5025,7 +5234,7 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK @@ -5037,15 +5246,15 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 222.745888 - 0: The maximum resident set size (KB) = 500244 + 0: The total amount of wall time = 194.455733 + 0: The maximum resident set size (KB) = 511860 -Test 142 hafs_regional_storm_following_1nest_atm_intel PASS +Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5053,29 +5262,29 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 297.896001 - 0: The maximum resident set size (KB) = 553196 + 0: The total amount of wall time = 250.292158 + 0: The maximum resident set size (KB) = 577804 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_global_storm_following_1nest_atm_intel -Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_storm_following_1nest_atm_intel +Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 150.417214 - 0: The maximum resident set size (KB) = 394528 + 0: The total amount of wall time = 86.949307 + 0: The maximum resident set size (KB) = 405568 -Test 144 hafs_global_storm_following_1nest_atm_intel PASS +Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/gnv1_nested_intel -Checking test 145 gnv1_nested_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_nested_intel +Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5084,7 +5293,7 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -5092,58 +5301,76 @@ Checking test 145 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 295.874050 - 0: The maximum resident set size (KB) = 759464 + 0: The total amount of wall time = 219.436933 + 0: The maximum resident set size (KB) = 768080 -Test 145 gnv1_nested_intel PASS +Test 148 gnv1_nested_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 791.827544 - 0: The maximum resident set size (KB) = 555648 + 0: The total amount of wall time = 754.148677 + 0: The maximum resident set size (KB) = 581656 + +Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 443.090277 + 0: The maximum resident set size (KB) = 613564 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5153,162 +5380,179 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 474.891476 - 0: The maximum resident set size (KB) = 600268 + 0: The total amount of wall time = 449.097950 + 0: The maximum resident set size (KB) = 785348 + +Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS + -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... + Comparing atmf003.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atm.nest02.f003.nc .........OK + Comparing sfc.nest02.f003.nc .........OK + Comparing ocn_2020_08_25_15.nc .........OK + Comparing 20200825.150000.out_grd.ww3 .........OK + Comparing 20200825.150000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 343.858111 + 0: The maximum resident set size (KB) = 785988 +Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel results .... + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_intel +Checking test 153 hafs_regional_docn_intel 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 = 369.697554 - 0: The maximum resident set size (KB) = 731052 + 0: The total amount of wall time = 347.181244 + 0: The maximum resident set size (KB) = 742232 -Test 148 hafs_regional_docn_intel PASS +Test 153 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_oisst_intel +Checking test 154 hafs_regional_docn_oisst_intel 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 = 363.315561 - 0: The maximum resident set size (KB) = 717780 + 0: The total amount of wall time = 347.690358 + 0: The maximum resident set size (KB) = 726632 -Test 149 hafs_regional_docn_oisst_intel PASS +Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_datm_cdeps_intel +Checking test 155 hafs_regional_datm_cdeps_intel 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 = 1203.876829 - 0: The maximum resident set size (KB) = 881536 + 0: The total amount of wall time = 958.575212 + 0: The maximum resident set size (KB) = 893512 -Test 150 hafs_regional_datm_cdeps_intel PASS +Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_intel +Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.721521 - 0: The maximum resident set size (KB) = 744400 + 0: The total amount of wall time = 143.014780 + 0: The maximum resident set size (KB) = 756412 -Test 151 datm_cdeps_control_cfsr_intel PASS +Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_restart_cfsr_intel +Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.241455 - 0: The maximum resident set size (KB) = 719896 + 0: The total amount of wall time = 84.172594 + 0: The maximum resident set size (KB) = 745116 -Test 152 datm_cdeps_restart_cfsr_intel PASS +Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_gefs_intel +Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.319656 - 0: The maximum resident set size (KB) = 625412 + 0: The total amount of wall time = 133.281913 + 0: The maximum resident set size (KB) = 639272 -Test 153 datm_cdeps_control_gefs_intel PASS +Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_iau_gefs_intel +Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.177665 - 0: The maximum resident set size (KB) = 625636 + 0: The total amount of wall time = 133.351209 + 0: The maximum resident set size (KB) = 637524 -Test 154 datm_cdeps_iau_gefs_intel PASS +Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_stochy_gefs_intel +Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.000397 - 0: The maximum resident set size (KB) = 623368 + 0: The total amount of wall time = 135.043758 + 0: The maximum resident set size (KB) = 639188 -Test 155 datm_cdeps_stochy_gefs_intel PASS +Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_ciceC_cfsr_intel +Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.057042 - 0: The maximum resident set size (KB) = 743860 + 0: The total amount of wall time = 140.864315 + 0: The maximum resident set size (KB) = 756268 -Test 156 datm_cdeps_ciceC_cfsr_intel PASS +Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_cfsr_intel +Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.397309 - 0: The maximum resident set size (KB) = 744084 + 0: The total amount of wall time = 141.235915 + 0: The maximum resident set size (KB) = 744788 -Test 157 datm_cdeps_bulk_cfsr_intel PASS +Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_gefs_intel +Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.429766 - 0: The maximum resident set size (KB) = 623572 + 0: The total amount of wall time = 132.056283 + 0: The maximum resident set size (KB) = 638292 -Test 158 datm_cdeps_bulk_gefs_intel PASS +Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_cfsr_intel +Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5316,15 +5560,15 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel 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 = 349.370421 - 0: The maximum resident set size (KB) = 683572 + 0: The total amount of wall time = 335.666161 + 0: The maximum resident set size (KB) = 693008 -Test 159 datm_cdeps_mx025_cfsr_intel PASS +Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_gefs_intel +Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5332,78 +5576,78 @@ Checking test 160 datm_cdeps_mx025_gefs_intel 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 = 357.632522 - 0: The maximum resident set size (KB) = 665536 + 0: The total amount of wall time = 332.681732 + 0: The maximum resident set size (KB) = 672552 -Test 160 datm_cdeps_mx025_gefs_intel PASS +Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_multiple_files_cfsr_intel +Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.972935 - 0: The maximum resident set size (KB) = 742784 + 0: The total amount of wall time = 141.363037 + 0: The maximum resident set size (KB) = 756144 -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS +Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_3072x1536_cfsr_intel +Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 279.901398 - 0: The maximum resident set size (KB) = 1987212 + 0: The total amount of wall time = 270.238896 + 0: The maximum resident set size (KB) = 2013488 -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS +Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_gfs_intel +Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 282.047210 - 0: The maximum resident set size (KB) = 1982784 + 0: The total amount of wall time = 270.815947 + 0: The maximum resident set size (KB) = 2014160 -Test 163 datm_cdeps_gfs_intel PASS +Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_debug_cfsr_intel -Checking test 164 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_debug_cfsr_intel +Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 310.953500 - 0: The maximum resident set size (KB) = 731504 + 0: The total amount of wall time = 315.896359 + 0: The maximum resident set size (KB) = 730188 -Test 164 datm_cdeps_debug_cfsr_intel PASS +Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_control_cfsr_faster_intel -Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_faster_intel +Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.991257 - 0: The maximum resident set size (KB) = 744444 + 0: The total amount of wall time = 140.958446 + 0: The maximum resident set size (KB) = 756584 -Test 165 datm_cdeps_control_cfsr_faster_intel PASS +Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_lnd_gswp3_intel -Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_gswp3_intel +Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5411,43 +5655,59 @@ Checking test 166 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 24.027295 - 0: The maximum resident set size (KB) = 312892 + 0: The total amount of wall time = 63.252211 + 0: The maximum resident set size (KB) = 318676 -Test 166 datm_cdeps_lnd_gswp3_intel PASS +Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/datm_cdeps_lnd_gswp3_rst_intel -Checking test 167 datm_cdeps_lnd_gswp3_rst_intel 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 +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_intel +Checking test 172 datm_cdeps_lnd_era5_intel results .... + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK + + 0: The total amount of wall time = 53.747354 + 0: The maximum resident set size (KB) = 456596 + +Test 172 datm_cdeps_lnd_era5_intel PASS - 0: The total amount of wall time = 27.789230 - 0: The maximum resident set size (KB) = 313064 -Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_rst_intel +Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK + 0: The total amount of wall time = 38.592699 + 0: The maximum resident set size (KB) = 456492 -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_p8_atmlnd_sbs_intel -Checking test 168 control_p8_atmlnd_sbs_intel results .... +Test 173 datm_cdeps_lnd_era5_rst_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_sbs_intel +Checking test 174 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5460,18 +5720,24 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... 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 atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -5504,14 +5770,12 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.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-22-64800.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 @@ -5519,15 +5783,139 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 205.894228 - 0: The maximum resident set size (KB) = 1634568 + 0: The total amount of wall time = 368.978372 + 0: The maximum resident set size (KB) = 1640348 -Test 168 control_p8_atmlnd_sbs_intel PASS +Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmwav_control_noaero_p8_intel -Checking test 169 atmwav_control_noaero_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_intel +Checking test 175 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK + Comparing sfcf012.tile2.nc .........OK + Comparing sfcf012.tile3.nc .........OK + Comparing sfcf012.tile4.nc .........OK + Comparing sfcf012.tile5.nc .........OK + Comparing sfcf012.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 atmf012.tile1.nc .........OK + Comparing atmf012.tile2.nc .........OK + Comparing atmf012.tile3.nc .........OK + Comparing atmf012.tile4.nc .........OK + Comparing atmf012.tile5.nc .........OK + Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 364.924589 + 0: The maximum resident set size (KB) = 1642732 + +Test 175 control_p8_atmlnd_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_atmlnd_intel +Checking test 176 control_restart_p8_atmlnd_intel results .... + 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 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 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 = 198.400630 + 0: The maximum resident set size (KB) = 837104 + +Test 176 control_restart_p8_atmlnd_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmwav_control_noaero_p8_intel +Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5569,15 +5957,15 @@ Checking test 169 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.430413 - 0: The maximum resident set size (KB) = 1622328 + 0: The total amount of wall time = 89.198779 + 0: The maximum resident set size (KB) = 1651972 -Test 169 atmwav_control_noaero_p8_intel PASS +Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/control_atmwav_intel -Checking test 170 control_atmwav_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_atmwav_intel +Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5620,15 +6008,15 @@ Checking test 170 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 85.160990 - 0: The maximum resident set size (KB) = 621844 + 0: The total amount of wall time = 84.060129 + 0: The maximum resident set size (KB) = 639468 -Test 170 control_atmwav_intel PASS +Test 178 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmaero_control_p8_intel -Checking test 171 atmaero_control_p8_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_intel +Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5671,15 +6059,15 @@ Checking test 171 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.735983 - 0: The maximum resident set size (KB) = 2925972 + 0: The total amount of wall time = 240.935096 + 0: The maximum resident set size (KB) = 2942552 -Test 171 atmaero_control_p8_intel PASS +Test 179 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmaero_control_p8_rad_intel -Checking test 172 atmaero_control_p8_rad_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_intel +Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5722,15 +6110,15 @@ Checking test 172 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 269.179501 - 0: The maximum resident set size (KB) = 2982788 + 0: The total amount of wall time = 277.325749 + 0: The maximum resident set size (KB) = 3011440 -Test 172 atmaero_control_p8_rad_intel PASS +Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/atmaero_control_p8_rad_micro_intel -Checking test 173 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_micro_intel +Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5773,38 +6161,15 @@ Checking test 173 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.055730 - 0: The maximum resident set size (KB) = 2994980 + 0: The total amount of wall time = 288.052789 + 0: The maximum resident set size (KB) = 3017704 -Test 173 atmaero_control_p8_rad_micro_intel PASS +Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_atmaq_intel -Checking test 174 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 637.059641 - 0: The maximum resident set size (KB) = 5016996 - -Test 174 regional_atmaq_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_atmaq_debug_intel -Checking test 175 regional_atmaq_debug_intel results .... +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel +working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_atmaq_debug_intel +Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5812,40 +6177,17 @@ Checking test 175 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1184.007802 - 0: The maximum resident set size (KB) = 4420124 - -Test 175 regional_atmaq_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_106031/regional_atmaq_faster_intel -Checking test 176 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/20190801.180000.coupler.res .........OK - Comparing RESTART/20190801.180000.fv_core.res.nc .........OK - Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1103.694963 - 0: The maximum resident set size (KB) = 5018356 + 0: The total amount of wall time = 1082.597175 + 0: The maximum resident set size (KB) = 4478292 -Test 176 regional_atmaq_faster_intel PASS +Test 182 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue 16 Jan 2024 07:46:56 PM EST -Elapsed time: 02h:03m:19s. Have a nice day! +Thu 08 Feb 2024 10:37:11 PM EST +Elapsed time: 01h:23m:16s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 0e2aae60b1..e7d6b31803 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,76 +1,76 @@ -Thu Feb 8 15:08:27 UTC 2024 +Fri Feb 9 02:42:39 UTC 2024 Start Regression test -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 +Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) + c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 591 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 568 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 255 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 191 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 646 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 197 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 296 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 201 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 651 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 602 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 622 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 379 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 821 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 365 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 620 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 655 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 210 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 656 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 649 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 690 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 552 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 804 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 642 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 718 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 929 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 133 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 251 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 955 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atm_debug_dyn32_intel elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 585 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 661 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 595 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 602 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 368 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 809 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 356 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 623 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 654 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 217 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 659 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 641 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 687 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 635 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 821 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 632 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_debug_intel elapsed time 234 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 670 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 126 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 225 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 832 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 915 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2sw_intel elapsed time 680 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 128 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 821 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 906 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 707 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 928 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 136 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 822 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 725 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.482528 - 0: The maximum resident set size (KB) = 3154924 + 0: The total amount of wall time = 304.512951 + 0: The maximum resident set size (KB) = 3166336 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 953.737109 - 0: The maximum resident set size (KB) = 1732348 + 0: The total amount of wall time = 952.929058 + 0: The maximum resident set size (KB) = 1731100 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 988.246507 - 0: The maximum resident set size (KB) = 2013484 + 0: The total amount of wall time = 998.082067 + 0: The maximum resident set size (KB) = 2016556 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.800160 - 0: The maximum resident set size (KB) = 1105804 + 0: The total amount of wall time = 443.715119 + 0: The maximum resident set size (KB) = 1119636 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1077.520300 - 0: The maximum resident set size (KB) = 1630248 + 0: The total amount of wall time = 1076.863952 + 0: The maximum resident set size (KB) = 1640568 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1329.014829 - 0: The maximum resident set size (KB) = 1674412 + 0: The total amount of wall time = 1334.215786 + 0: The maximum resident set size (KB) = 1669992 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.135533 - 0: The maximum resident set size (KB) = 3143544 + 0: The total amount of wall time = 332.843461 + 0: The maximum resident set size (KB) = 3180748 Test 007 cpld_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.853600 - 0: The maximum resident set size (KB) = 3187320 + 0: The total amount of wall time = 324.862727 + 0: The maximum resident set size (KB) = 3205428 Test 008 cpld_control_p8.v2.sfc_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 186.245053 - 0: The maximum resident set size (KB) = 3240480 + 0: The total amount of wall time = 186.389417 + 0: The maximum resident set size (KB) = 3247468 Test 009 cpld_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 343.227809 - 0: The maximum resident set size (KB) = 3168068 + 0: The total amount of wall time = 329.110115 + 0: The maximum resident set size (KB) = 3208992 Test 010 cpld_control_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_qr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 190.114373 - 0: The maximum resident set size (KB) = 3255520 + 0: The total amount of wall time = 188.799647 + 0: The maximum resident set size (KB) = 3257416 Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.120739 - 0: The maximum resident set size (KB) = 3502932 + 0: The total amount of wall time = 311.066150 + 0: The maximum resident set size (KB) = 3544328 Test 012 cpld_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.183167 - 0: The maximum resident set size (KB) = 3135388 + 0: The total amount of wall time = 328.592107 + 0: The maximum resident set size (KB) = 3156256 Test 013 cpld_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 287.799593 - 0: The maximum resident set size (KB) = 3005896 + 0: The total amount of wall time = 276.062640 + 0: The maximum resident set size (KB) = 3049448 Test 014 cpld_mpi_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.660500 - 0: The maximum resident set size (KB) = 3201048 + 0: The total amount of wall time = 330.358697 + 0: The maximum resident set size (KB) = 3182120 Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 575.633328 - 0: The maximum resident set size (KB) = 3315924 + 0: The total amount of wall time = 567.777130 + 0: The maximum resident set size (KB) = 3321080 Test 016 cpld_control_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 343.493651 - 0: The maximum resident set size (KB) = 3604016 + 0: The total amount of wall time = 347.288904 + 0: The maximum resident set size (KB) = 3602060 Test 017 cpld_restart_c192_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 593.432368 - 0: The maximum resident set size (KB) = 4080820 + 0: The total amount of wall time = 569.134478 + 0: The maximum resident set size (KB) = 4095196 Test 018 cpld_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.890940 - 0: The maximum resident set size (KB) = 4322752 + 0: The total amount of wall time = 361.177648 + 0: The maximum resident set size (KB) = 4339540 Test 019 cpld_restart_bmark_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 308.020513 - 0: The maximum resident set size (KB) = 3159568 + 0: The total amount of wall time = 309.830184 + 0: The maximum resident set size (KB) = 3163856 Test 020 cpld_s2sa_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 256.568370 - 0: The maximum resident set size (KB) = 1731240 + 0: The total amount of wall time = 263.732118 + 0: The maximum resident set size (KB) = 1677228 Test 021 cpld_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_nowave_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.953383 - 0: The maximum resident set size (KB) = 1701164 + 0: The total amount of wall time = 255.238359 + 0: The maximum resident set size (KB) = 1771760 Test 022 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.252789 - 0: The maximum resident set size (KB) = 3218088 + 0: The total amount of wall time = 476.671975 + 0: The maximum resident set size (KB) = 3238616 Test 023 cpld_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.653963 - 0: The maximum resident set size (KB) = 1743916 + 0: The total amount of wall time = 325.497696 + 0: The maximum resident set size (KB) = 1710296 Test 024 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 249.364379 - 0: The maximum resident set size (KB) = 1724644 + 0: The total amount of wall time = 254.393887 + 0: The maximum resident set size (KB) = 1763108 Test 025 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 553.236689 - 0: The maximum resident set size (KB) = 2838252 + 0: The total amount of wall time = 556.160931 + 0: The maximum resident set size (KB) = 2810648 Test 026 cpld_control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.498740 - 0: The maximum resident set size (KB) = 3183960 + 0: The total amount of wall time = 310.820787 + 0: The maximum resident set size (KB) = 3210152 Test 027 cpld_control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 963.213310 - 0: The maximum resident set size (KB) = 1759224 + 0: The total amount of wall time = 963.543557 + 0: The maximum resident set size (KB) = 1758664 Test 028 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_restart_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.997803 - 0: The maximum resident set size (KB) = 1163292 + 0: The total amount of wall time = 445.964303 + 0: The maximum resident set size (KB) = 1167036 Test 029 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_mpi_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1105.923375 - 0: The maximum resident set size (KB) = 1651300 + 0: The total amount of wall time = 1100.982335 + 0: The maximum resident set size (KB) = 1669064 Test 030 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1473.104065 - 0: The maximum resident set size (KB) = 1707776 + 0: The total amount of wall time = 1473.509921 + 0: The maximum resident set size (KB) = 1705596 Test 031 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.709650 - 0: The maximum resident set size (KB) = 664288 + 0: The total amount of wall time = 186.964136 + 0: The maximum resident set size (KB) = 701272 Test 032 control_flake_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,36 +2094,36 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.579148 - 0: The maximum resident set size (KB) = 644976 + 0: The total amount of wall time = 131.087320 + 0: The maximum resident set size (KB) = 652008 Test 033 control_CubedSphereGrid_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.524667 - 0: The maximum resident set size (KB) = 631224 + 0: The total amount of wall time = 138.827757 + 0: The maximum resident set size (KB) = 653988 Test 034 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.712062 - 0: The maximum resident set size (KB) = 620428 + 0: The total amount of wall time = 133.306776 + 0: The maximum resident set size (KB) = 644756 Test 035 control_latlon_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.357162 - 0: The maximum resident set size (KB) = 618168 + 0: The total amount of wall time = 135.065789 + 0: The maximum resident set size (KB) = 645940 Test 036 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.166127 -0: The maximum resident set size (KB) = 865892 +0: The total amount of wall time = 374.087642 +0: The maximum resident set size (KB) = 875684 Test 037 control_c48_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 370.304402 -0: The maximum resident set size (KB) = 859856 +0: The total amount of wall time = 369.784073 +0: The maximum resident set size (KB) = 872564 Test 038 control_c48.v2.sfc_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 529.723595 - 0: The maximum resident set size (KB) = 855268 + 0: The total amount of wall time = 527.996221 + 0: The maximum resident set size (KB) = 848128 Test 039 control_c192_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.615923 - 0: The maximum resident set size (KB) = 1261272 + 0: The total amount of wall time = 522.296572 + 0: The maximum resident set size (KB) = 1283096 Test 040 control_c384_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2300,7 +2300,7 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK @@ -2308,7 +2308,7 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK @@ -2318,7 +2318,7 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK @@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.065616 - 0: The maximum resident set size (KB) = 1393596 + 0: The total amount of wall time = 456.938041 + 0: The maximum resident set size (KB) = 1382916 Test 041 control_c384gdas_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.363915 - 0: The maximum resident set size (KB) = 653604 + 0: The total amount of wall time = 87.325746 + 0: The maximum resident set size (KB) = 621884 Test 042 control_stochy_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.884478 - 0: The maximum resident set size (KB) = 507492 + 0: The total amount of wall time = 47.983257 + 0: The maximum resident set size (KB) = 506516 Test 043 control_stochy_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.152981 - 0: The maximum resident set size (KB) = 653456 + 0: The total amount of wall time = 82.630832 + 0: The maximum resident set size (KB) = 648564 Test 044 control_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.395905 - 0: The maximum resident set size (KB) = 649312 + 0: The total amount of wall time = 133.816801 + 0: The maximum resident set size (KB) = 649496 Test 045 control_iovr4_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.337259 - 0: The maximum resident set size (KB) = 648724 + 0: The total amount of wall time = 134.809589 + 0: The maximum resident set size (KB) = 641736 Test 046 control_iovr5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.784488 - 0: The maximum resident set size (KB) = 1590784 + 0: The total amount of wall time = 166.886411 + 0: The maximum resident set size (KB) = 1585764 Test 047 control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.513816 - 0: The maximum resident set size (KB) = 1621544 + 0: The total amount of wall time = 165.322435 + 0: The maximum resident set size (KB) = 1613244 Test 048 control_p8.v2.sfc_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.142625 - 0: The maximum resident set size (KB) = 1615064 + 0: The total amount of wall time = 158.585781 + 0: The maximum resident set size (KB) = 1619112 Test 049 control_p8_ugwpv1_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.907367 - 0: The maximum resident set size (KB) = 859784 + 0: The total amount of wall time = 86.088350 + 0: The maximum resident set size (KB) = 881124 Test 050 control_restart_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.195148 - 0: The maximum resident set size (KB) = 1559704 + 0: The total amount of wall time = 160.906648 + 0: The maximum resident set size (KB) = 1604684 Test 051 control_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_noqr_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 84.521588 - 0: The maximum resident set size (KB) = 915724 + 0: The total amount of wall time = 84.096340 + 0: The maximum resident set size (KB) = 902336 Test 052 control_restart_noqr_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_decomp_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.286281 - 0: The maximum resident set size (KB) = 1600912 + 0: The total amount of wall time = 167.835644 + 0: The maximum resident set size (KB) = 1603656 Test 053 control_decomp_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_2threads_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 151.290249 - 0: The maximum resident set size (KB) = 1702476 + 0: The total amount of wall time = 154.033605 + 0: The maximum resident set size (KB) = 1706080 Test 054 control_2threads_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 297.579657 - 0: The maximum resident set size (KB) = 1604256 + 0: The total amount of wall time = 296.801899 + 0: The maximum resident set size (KB) = 1609640 Test 055 control_p8_lndp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.021947 - 0: The maximum resident set size (KB) = 1677636 + 0: The total amount of wall time = 217.532517 + 0: The maximum resident set size (KB) = 1674888 Test 056 control_p8_rrtmgp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.503320 - 0: The maximum resident set size (KB) = 1622600 + 0: The total amount of wall time = 165.592187 + 0: The maximum resident set size (KB) = 1607640 Test 057 control_p8_mynn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.791505 - 0: The maximum resident set size (KB) = 1627612 + 0: The total amount of wall time = 195.167623 + 0: The maximum resident set size (KB) = 1610904 Test 058 merra2_thompson_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.314301 - 0: The maximum resident set size (KB) = 850052 + 0: The total amount of wall time = 294.436146 + 0: The maximum resident set size (KB) = 853740 Test 059 regional_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.850471 - 0: The maximum resident set size (KB) = 989684 + 0: The total amount of wall time = 154.069289 + 0: The maximum resident set size (KB) = 1014072 Test 060 regional_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.509804 - 0: The maximum resident set size (KB) = 843328 + 0: The total amount of wall time = 310.864483 + 0: The maximum resident set size (KB) = 849644 Test 061 regional_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 180.266513 - 0: The maximum resident set size (KB) = 845260 + 0: The total amount of wall time = 179.472044 + 0: The maximum resident set size (KB) = 813984 Test 062 regional_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 292.569724 - 0: The maximum resident set size (KB) = 1361036 + 0: The total amount of wall time = 294.253920 + 0: The maximum resident set size (KB) = 1327104 Test 063 regional_noquilt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.349207 - 0: The maximum resident set size (KB) = 845580 + 0: The total amount of wall time = 292.926792 + 0: The maximum resident set size (KB) = 852028 Test 064 regional_netcdf_parallel_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_2dwrtdecomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.482920 - 0: The maximum resident set size (KB) = 850384 + 0: The total amount of wall time = 293.809348 + 0: The maximum resident set size (KB) = 848108 Test 065 regional_2dwrtdecomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 383.607964 - 0: The maximum resident set size (KB) = 1917360 + 0: The total amount of wall time = 380.831097 + 0: The maximum resident set size (KB) = 1909572 Test 066 regional_wofs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.168093 - 0: The maximum resident set size (KB) = 1098992 + 0: The total amount of wall time = 448.093181 + 0: The maximum resident set size (KB) = 1103804 Test 067 rap_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 235.931166 - 0: The maximum resident set size (KB) = 1276012 + 0: The total amount of wall time = 237.982413 + 0: The maximum resident set size (KB) = 1289348 Test 068 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.009899 - 0: The maximum resident set size (KB) = 1007800 + 0: The total amount of wall time = 469.086162 + 0: The maximum resident set size (KB) = 1001332 Test 069 rap_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.434334 - 0: The maximum resident set size (KB) = 1163568 + 0: The total amount of wall time = 420.980809 + 0: The maximum resident set size (KB) = 1182584 Test 070 rap_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.997067 - 0: The maximum resident set size (KB) = 1107008 + 0: The total amount of wall time = 228.656988 + 0: The maximum resident set size (KB) = 1082664 Test 071 rap_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.413781 - 0: The maximum resident set size (KB) = 1102424 + 0: The total amount of wall time = 447.514183 + 0: The maximum resident set size (KB) = 1105416 Test 072 rap_sfcdiff_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.026565 - 0: The maximum resident set size (KB) = 1033808 + 0: The total amount of wall time = 472.544337 + 0: The maximum resident set size (KB) = 1035216 Test 073 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.988955 - 0: The maximum resident set size (KB) = 1129108 + 0: The total amount of wall time = 336.646295 + 0: The maximum resident set size (KB) = 1122916 Test 074 rap_sfcdiff_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.821286 - 0: The maximum resident set size (KB) = 1046068 + 0: The total amount of wall time = 227.019135 + 0: The maximum resident set size (KB) = 1044308 Test 075 hrrr_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.629703 - 0: The maximum resident set size (KB) = 1023112 + 0: The total amount of wall time = 232.384019 + 0: The maximum resident set size (KB) = 1017056 Test 076 hrrr_control_decomp_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.014405 - 0: The maximum resident set size (KB) = 1104824 + 0: The total amount of wall time = 207.734882 + 0: The maximum resident set size (KB) = 1107988 Test 077 hrrr_control_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.119239 - 0: The maximum resident set size (KB) = 993664 + 0: The total amount of wall time = 118.626222 + 0: The maximum resident set size (KB) = 1001748 Test 078 hrrr_control_restart_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.896499 - 0: The maximum resident set size (KB) = 1084516 + 0: The total amount of wall time = 440.962499 + 0: The maximum resident set size (KB) = 1099572 Test 079 rrfs_v1beta_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.362325 - 0: The maximum resident set size (KB) = 1977764 + 0: The total amount of wall time = 532.209018 + 0: The maximum resident set size (KB) = 1980720 Test 080 rrfs_v1nssl_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 526.826438 - 0: The maximum resident set size (KB) = 2035232 + 0: The total amount of wall time = 522.039560 + 0: The maximum resident set size (KB) = 2025540 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.588878 - 0: The maximum resident set size (KB) = 740564 + 0: The total amount of wall time = 339.768205 + 0: The maximum resident set size (KB) = 747648 Test 082 control_csawmg_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 332.372974 - 0: The maximum resident set size (KB) = 742316 + 0: The total amount of wall time = 336.280679 + 0: The maximum resident set size (KB) = 746848 Test 083 control_csawmgt_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.814175 - 0: The maximum resident set size (KB) = 732676 + 0: The total amount of wall time = 184.605268 + 0: The maximum resident set size (KB) = 737416 Test 084 control_ras_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.289121 - 0: The maximum resident set size (KB) = 657500 + 0: The total amount of wall time = 112.532138 + 0: The maximum resident set size (KB) = 653352 Test 085 control_wam_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 144.288004 - 0: The maximum resident set size (KB) = 1620200 + 0: The total amount of wall time = 146.297436 + 0: The maximum resident set size (KB) = 1600432 Test 086 control_p8_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.297014 - 0: The maximum resident set size (KB) = 819524 + 0: The total amount of wall time = 266.690204 + 0: The maximum resident set size (KB) = 853360 Test 087 regional_control_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.121616 - 0: The maximum resident set size (KB) = 808752 + 0: The total amount of wall time = 149.574969 + 0: The maximum resident set size (KB) = 805484 Test 088 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.015880 - 0: The maximum resident set size (KB) = 812864 + 0: The total amount of wall time = 146.885189 + 0: The maximum resident set size (KB) = 810076 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.721805 - 0: The maximum resident set size (KB) = 818436 + 0: The total amount of wall time = 165.728363 + 0: The maximum resident set size (KB) = 789572 Test 090 control_stochy_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.378824 - 0: The maximum resident set size (KB) = 819920 + 0: The total amount of wall time = 148.800299 + 0: The maximum resident set size (KB) = 813456 Test 091 control_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.078308 - 0: The maximum resident set size (KB) = 862512 + 0: The total amount of wall time = 228.186015 + 0: The maximum resident set size (KB) = 863652 Test 092 control_csawmg_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.740961 - 0: The maximum resident set size (KB) = 855692 + 0: The total amount of wall time = 219.018937 + 0: The maximum resident set size (KB) = 862984 Test 093 control_csawmgt_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_intel Checking test 094 control_ras_debug_intel 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.562313 - 0: The maximum resident set size (KB) = 825652 + 0: The total amount of wall time = 148.669722 + 0: The maximum resident set size (KB) = 813432 Test 094 control_ras_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_intel Checking test 095 control_diag_debug_intel 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.848000 - 0: The maximum resident set size (KB) = 867432 + 0: The total amount of wall time = 154.891525 + 0: The maximum resident set size (KB) = 870772 Test 095 control_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_intel Checking test 096 control_debug_p8_intel 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.435773 - 0: The maximum resident set size (KB) = 1632216 + 0: The total amount of wall time = 157.349447 + 0: The maximum resident set size (KB) = 1636064 Test 096 control_debug_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 958.876863 - 0: The maximum resident set size (KB) = 838604 + 0: The total amount of wall time = 993.244043 + 0: The maximum resident set size (KB) = 829480 Test 097 regional_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.880276 - 0: The maximum resident set size (KB) = 1193948 + 0: The total amount of wall time = 272.939965 + 0: The maximum resident set size (KB) = 1196080 Test 098 rap_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.149309 - 0: The maximum resident set size (KB) = 1201176 + 0: The total amount of wall time = 264.184276 + 0: The maximum resident set size (KB) = 1201444 Test 099 hrrr_control_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel 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.689059 - 0: The maximum resident set size (KB) = 1201728 + 0: The total amount of wall time = 274.298302 + 0: The maximum resident set size (KB) = 1192044 Test 100 hrrr_gf_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel 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.013251 - 0: The maximum resident set size (KB) = 1204432 + 0: The total amount of wall time = 271.585663 + 0: The maximum resident set size (KB) = 1170332 Test 101 hrrr_c3_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_unified_drag_suite_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel 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.997141 - 0: The maximum resident set size (KB) = 1207464 + 0: The total amount of wall time = 278.892891 + 0: The maximum resident set size (KB) = 1203184 Test 102 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.283111 - 0: The maximum resident set size (KB) = 1282944 + 0: The total amount of wall time = 276.458237 + 0: The maximum resident set size (KB) = 1285900 Test 103 rap_diag_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel 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.284862 - 0: The maximum resident set size (KB) = 1202040 + 0: The total amount of wall time = 272.382971 + 0: The maximum resident set size (KB) = 1199752 Test 104 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_unified_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.044195 - 0: The maximum resident set size (KB) = 1201648 + 0: The total amount of wall time = 279.569299 + 0: The maximum resident set size (KB) = 1197360 Test 105 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.870984 - 0: The maximum resident set size (KB) = 1193776 + 0: The total amount of wall time = 274.372101 + 0: The maximum resident set size (KB) = 1196256 Test 106 rap_lndp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel 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.906707 - 0: The maximum resident set size (KB) = 1191716 + 0: The total amount of wall time = 271.979548 + 0: The maximum resident set size (KB) = 1206376 Test 107 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.729682 - 0: The maximum resident set size (KB) = 1196132 + 0: The total amount of wall time = 268.013535 + 0: The maximum resident set size (KB) = 1200588 Test 108 rap_noah_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.185789 - 0: The maximum resident set size (KB) = 1164884 + 0: The total amount of wall time = 276.144950 + 0: The maximum resident set size (KB) = 1173876 Test 109 rap_sfcdiff_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 438.612333 - 0: The maximum resident set size (KB) = 1192988 + 0: The total amount of wall time = 444.242462 + 0: The maximum resident set size (KB) = 1192956 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.136387 - 0: The maximum resident set size (KB) = 1196268 + 0: The total amount of wall time = 266.133423 + 0: The maximum resident set size (KB) = 1160672 Test 111 rrfs_v1beta_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 330.736515 - 0: The maximum resident set size (KB) = 1196780 + 0: The total amount of wall time = 329.830037 + 0: The maximum resident set size (KB) = 1195020 Test 112 rap_clm_lake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.544200 - 0: The maximum resident set size (KB) = 1206344 + 0: The total amount of wall time = 275.610092 + 0: The maximum resident set size (KB) = 1203804 Test 113 rap_flake_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,26 +4377,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.857204 - 0: The maximum resident set size (KB) = 1196376 + 0: The total amount of wall time = 474.797353 + 0: The maximum resident set size (KB) = 1207704 Test 114 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.219321 - 0: The maximum resident set size (KB) = 480108 + 0: The total amount of wall time = 277.834959 + 0: The maximum resident set size (KB) = 509588 Test 115 control_wam_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4407,14 +4407,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 222.102732 - 0: The maximum resident set size (KB) = 1121988 + 0: The total amount of wall time = 216.466826 + 0: The maximum resident set size (KB) = 1150164 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.377136 - 0: The maximum resident set size (KB) = 1037496 + 0: The total amount of wall time = 369.029832 + 0: The maximum resident set size (KB) = 1052676 Test 117 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4515,14 +4515,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.103901 - 0: The maximum resident set size (KB) = 978968 + 0: The total amount of wall time = 190.140482 + 0: The maximum resident set size (KB) = 963984 Test 118 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4569,14 +4569,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.367430 - 0: The maximum resident set size (KB) = 1078840 + 0: The total amount of wall time = 348.481483 + 0: The maximum resident set size (KB) = 1092100 Test 119 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.796165 - 0: The maximum resident set size (KB) = 961204 + 0: The total amount of wall time = 177.686687 + 0: The maximum resident set size (KB) = 958268 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4677,14 +4677,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.489600 - 0: The maximum resident set size (KB) = 917744 + 0: The total amount of wall time = 204.075477 + 0: The maximum resident set size (KB) = 903488 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4723,28 +4723,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.735808 - 0: The maximum resident set size (KB) = 1036056 + 0: The total amount of wall time = 276.333974 + 0: The maximum resident set size (KB) = 1035132 Test 122 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.460628 - 0: The maximum resident set size (KB) = 926544 + 0: The total amount of wall time = 99.774300 + 0: The maximum resident set size (KB) = 925324 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4760,40 +4760,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 109.867316 - 0: The maximum resident set size (KB) = 1181532 + 0: The total amount of wall time = 111.576488 + 0: The maximum resident set size (KB) = 1202272 Test 124 conus13km_control_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 43.454959 - 0: The maximum resident set size (KB) = 1114984 + 0: The total amount of wall time = 42.983390 + 0: The maximum resident set size (KB) = 1095808 Test 125 conus13km_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 63.485398 - 0: The maximum resident set size (KB) = 1105080 + 0: The total amount of wall time = 61.778142 + 0: The maximum resident set size (KB) = 1101396 Test 126 conus13km_restart_mismatch_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4840,42 +4840,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.340113 - 0: The maximum resident set size (KB) = 984388 + 0: The total amount of wall time = 243.068761 + 0: The maximum resident set size (KB) = 982284 Test 127 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel 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.622936 - 0: The maximum resident set size (KB) = 1082972 + 0: The total amount of wall time = 273.424007 + 0: The maximum resident set size (KB) = 1080424 Test 128 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.892232 - 0: The maximum resident set size (KB) = 1038680 + 0: The total amount of wall time = 263.006189 + 0: The maximum resident set size (KB) = 1080240 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4889,14 +4889,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 827.271325 - 0: The maximum resident set size (KB) = 1222140 + 0: The total amount of wall time = 811.195371 + 0: The maximum resident set size (KB) = 1216144 Test 130 conus13km_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_qr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4910,81 +4910,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 828.850237 - 0: The maximum resident set size (KB) = 922196 + 0: The total amount of wall time = 820.108485 + 0: The maximum resident set size (KB) = 921656 Test 131 conus13km_debug_qr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_2threads_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 466.672947 - 0: The maximum resident set size (KB) = 1149084 + 0: The total amount of wall time = 463.045155 + 0: The maximum resident set size (KB) = 1150768 Test 132 conus13km_debug_2threads_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 815.780439 - 0: The maximum resident set size (KB) = 1298932 + 0: The total amount of wall time = 835.709060 + 0: The maximum resident set size (KB) = 1271496 Test 133 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel 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.675066 - 0: The maximum resident set size (KB) = 1108464 + 0: The total amount of wall time = 273.238718 + 0: The maximum resident set size (KB) = 1115652 Test 134 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 268.251409 - 0: The maximum resident set size (KB) = 732788 + 0: The total amount of wall time = 269.591331 + 0: The maximum resident set size (KB) = 732584 Test 135 hafs_regional_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 340.348863 - 0: The maximum resident set size (KB) = 1109796 + 0: The total amount of wall time = 329.311193 + 0: The maximum resident set size (KB) = 1115180 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4993,14 +4993,14 @@ Checking test 137 hafs_regional_atm_ocn_intel 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 = 389.934656 - 0: The maximum resident set size (KB) = 825280 + 0: The total amount of wall time = 393.141806 + 0: The maximum resident set size (KB) = 830692 Test 137 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5009,14 +5009,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 762.025316 - 0: The maximum resident set size (KB) = 866276 + 0: The total amount of wall time = 763.367385 + 0: The maximum resident set size (KB) = 855152 Test 138 hafs_regional_atm_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5027,14 +5027,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 873.687802 - 0: The maximum resident set size (KB) = 882912 + 0: The total amount of wall time = 866.318467 + 0: The maximum resident set size (KB) = 877336 Test 139 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5056,14 +5056,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 305.352891 - 0: The maximum resident set size (KB) = 497824 + 0: The total amount of wall time = 302.505423 + 0: The maximum resident set size (KB) = 505936 Test 140 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 369.952929 - 0: The maximum resident set size (KB) = 520876 + 0: The total amount of wall time = 372.281162 + 0: The maximum resident set size (KB) = 514792 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5091,12 +5091,12 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK @@ -5116,7 +5116,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5126,14 +5126,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 146.054216 - 0: The maximum resident set size (KB) = 373172 + 0: The total amount of wall time = 144.728929 + 0: The maximum resident set size (KB) = 376824 Test 142 hafs_global_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5161,8 +5161,8 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK @@ -5172,7 +5172,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK @@ -5198,7 +5198,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5215,14 +5215,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 404.238107 - 0: The maximum resident set size (KB) = 472672 + 0: The total amount of wall time = 397.004363 + 0: The maximum resident set size (KB) = 482756 Test 143 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.265690 - 0: The maximum resident set size (KB) = 533760 + 0: The total amount of wall time = 204.311082 + 0: The maximum resident set size (KB) = 531212 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5260,14 +5260,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 193.102125 - 0: The maximum resident set size (KB) = 531940 + 0: The total amount of wall time = 192.788451 + 0: The maximum resident set size (KB) = 528404 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5276,28 +5276,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 234.048993 - 0: The maximum resident set size (KB) = 582600 + 0: The total amount of wall time = 233.026851 + 0: The maximum resident set size (KB) = 580944 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 60.818529 - 0: The maximum resident set size (KB) = 408652 + 0: The total amount of wall time = 64.936264 + 0: The maximum resident set size (KB) = 399072 Test 147 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5307,19 +5307,19 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5344,28 +5344,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 228.870970 - 0: The maximum resident set size (KB) = 776912 + 0: The total amount of wall time = 226.320282 + 0: The maximum resident set size (KB) = 784844 Test 148 gnv1_nested_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 734.083215 - 0: The maximum resident set size (KB) = 569708 + 0: The total amount of wall time = 712.907872 + 0: The maximum resident set size (KB) = 624452 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5376,14 +5376,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 490.524840 - 0: The maximum resident set size (KB) = 668696 + 0: The total amount of wall time = 492.970928 + 0: The maximum resident set size (KB) = 660640 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5394,14 +5394,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 494.740532 - 0: The maximum resident set size (KB) = 739776 + 0: The total amount of wall time = 508.612300 + 0: The maximum resident set size (KB) = 698852 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5411,14 +5411,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 363.825025 - 0: The maximum resident set size (KB) = 681788 + 0: The total amount of wall time = 363.479913 + 0: The maximum resident set size (KB) = 688796 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 153 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.132313 - 0: The maximum resident set size (KB) = 828404 + 0: The total amount of wall time = 361.856230 + 0: The maximum resident set size (KB) = 823472 Test 153 hafs_regional_docn_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5441,131 +5441,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.396912 - 0: The maximum resident set size (KB) = 804148 + 0: The total amount of wall time = 360.283526 + 0: The maximum resident set size (KB) = 805924 Test 154 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 963.890476 - 0: The maximum resident set size (KB) = 1200992 + 0: The total amount of wall time = 942.521065 + 0: The maximum resident set size (KB) = 1212460 Test 155 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.066139 - 0: The maximum resident set size (KB) = 1117592 + 0: The total amount of wall time = 151.363887 + 0: The maximum resident set size (KB) = 1135228 Test 156 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_restart_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 87.432283 - 0: The maximum resident set size (KB) = 1072412 + 0: The total amount of wall time = 89.959781 + 0: The maximum resident set size (KB) = 1078044 Test 157 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.574955 - 0: The maximum resident set size (KB) = 1016372 + 0: The total amount of wall time = 145.635190 + 0: The maximum resident set size (KB) = 1004284 Test 158 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.490575 - 0: The maximum resident set size (KB) = 1005600 + 0: The total amount of wall time = 144.105170 + 0: The maximum resident set size (KB) = 1005596 Test 159 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.432653 - 0: The maximum resident set size (KB) = 1008000 + 0: The total amount of wall time = 148.721221 + 0: The maximum resident set size (KB) = 1002800 Test 160 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.926239 - 0: The maximum resident set size (KB) = 1120540 + 0: The total amount of wall time = 148.452521 + 0: The maximum resident set size (KB) = 1141212 Test 161 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.534464 - 0: The maximum resident set size (KB) = 1131340 + 0: The total amount of wall time = 150.787859 + 0: The maximum resident set size (KB) = 1118308 Test 162 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.030058 - 0: The maximum resident set size (KB) = 998072 + 0: The total amount of wall time = 144.303852 + 0: The maximum resident set size (KB) = 1005720 Test 163 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5574,14 +5574,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel 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 = 397.722987 - 0: The maximum resident set size (KB) = 1057220 + 0: The total amount of wall time = 377.824234 + 0: The maximum resident set size (KB) = 1050572 Test 164 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5590,77 +5590,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 390.037106 - 0: The maximum resident set size (KB) = 1035968 + 0: The total amount of wall time = 386.459490 + 0: The maximum resident set size (KB) = 1047540 Test 165 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_multiple_files_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.882192 - 0: The maximum resident set size (KB) = 1119668 + 0: The total amount of wall time = 150.441484 + 0: The maximum resident set size (KB) = 1127644 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 241.164374 - 0: The maximum resident set size (KB) = 2434792 + 0: The total amount of wall time = 241.094129 + 0: The maximum resident set size (KB) = 2431952 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 227.810481 - 0: The maximum resident set size (KB) = 2421400 + 0: The total amount of wall time = 226.580313 + 0: The maximum resident set size (KB) = 2476300 Test 168 datm_cdeps_gfs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 353.052557 - 0: The maximum resident set size (KB) = 1051916 + 0: The total amount of wall time = 357.204948 + 0: The maximum resident set size (KB) = 1046324 Test 169 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.774749 - 0: The maximum resident set size (KB) = 1125132 + 0: The total amount of wall time = 148.476488 + 0: The maximum resident set size (KB) = 1127896 Test 170 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5669,14 +5669,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 35.072780 - 0: The maximum resident set size (KB) = 252692 + 0: The total amount of wall time = 36.001820 + 0: The maximum resident set size (KB) = 254432 Test 171 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5685,14 +5685,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 36.877766 - 0: The maximum resident set size (KB) = 318020 + 0: The total amount of wall time = 37.876324 + 0: The maximum resident set size (KB) = 320484 Test 172 datm_cdeps_lnd_era5_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_lnd_era5_rst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5701,14 +5701,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 20.974372 - 0: The maximum resident set size (KB) = 315448 + 0: The total amount of wall time = 21.762636 + 0: The maximum resident set size (KB) = 315984 Test 173 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5797,14 +5797,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 242.007786 - 0: The maximum resident set size (KB) = 1586988 + 0: The total amount of wall time = 266.601415 + 0: The maximum resident set size (KB) = 1583840 Test 174 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5893,14 +5893,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 239.376457 - 0: The maximum resident set size (KB) = 1587492 + 0: The total amount of wall time = 265.692732 + 0: The maximum resident set size (KB) = 1591404 Test 175 control_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_restart_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5921,14 +5921,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 126.241198 - 0: The maximum resident set size (KB) = 890364 + 0: The total amount of wall time = 124.281916 + 0: The maximum resident set size (KB) = 888112 Test 176 control_restart_p8_atmlnd_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5971,14 +5971,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 94.029822 - 0: The maximum resident set size (KB) = 1648372 + 0: The total amount of wall time = 99.894690 + 0: The maximum resident set size (KB) = 1613184 Test 177 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6022,14 +6022,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.313345 - 0: The maximum resident set size (KB) = 668144 + 0: The total amount of wall time = 87.873404 + 0: The maximum resident set size (KB) = 664332 Test 178 control_atmwav_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6073,14 +6073,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.427292 - 0: The maximum resident set size (KB) = 3019252 + 0: The total amount of wall time = 237.354898 + 0: The maximum resident set size (KB) = 3000484 Test 179 atmaero_control_p8_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6124,14 +6124,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 271.239249 - 0: The maximum resident set size (KB) = 3087240 + 0: The total amount of wall time = 289.664148 + 0: The maximum resident set size (KB) = 3067228 Test 180 atmaero_control_p8_rad_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6175,14 +6175,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.311945 - 0: The maximum resident set size (KB) = 3075060 + 0: The total amount of wall time = 301.433619 + 0: The maximum resident set size (KB) = 3078804 Test 181 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6196,14 +6196,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1152.403973 - 0: The maximum resident set size (KB) = 4508272 + 0: The total amount of wall time = 1181.521694 + 0: The maximum resident set size (KB) = 4504128 Test 182 regional_atmaq_debug_intel PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_gnu Checking test 183 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6242,14 +6242,14 @@ Checking test 183 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 691.562076 -0: The maximum resident set size (KB) = 792572 +0: The total amount of wall time = 692.795800 +0: The maximum resident set size (KB) = 794260 Test 183 control_c48_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_gnu Checking test 184 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6260,14 +6260,14 @@ Checking test 184 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 231.638077 - 0: The maximum resident set size (KB) = 554164 + 0: The total amount of wall time = 223.895041 + 0: The maximum resident set size (KB) = 551168 Test 184 control_stochy_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_gnu Checking test 185 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6278,14 +6278,14 @@ Checking test 185 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 276.494916 - 0: The maximum resident set size (KB) = 560776 + 0: The total amount of wall time = 291.940296 + 0: The maximum resident set size (KB) = 559112 Test 185 control_ras_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_gnu Checking test 186 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6332,14 +6332,14 @@ Checking test 186 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.525717 - 0: The maximum resident set size (KB) = 1310400 + 0: The total amount of wall time = 282.015183 + 0: The maximum resident set size (KB) = 1313376 Test 186 control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_gnu Checking test 187 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6386,14 +6386,14 @@ Checking test 187 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.446160 - 0: The maximum resident set size (KB) = 1311328 + 0: The total amount of wall time = 267.617016 + 0: The maximum resident set size (KB) = 1312300 Test 187 control_p8_ugwpv1_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6404,14 +6404,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.142352 - 0: The maximum resident set size (KB) = 596000 + 0: The total amount of wall time = 340.509143 + 0: The maximum resident set size (KB) = 599100 Test 188 control_flake_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6458,14 +6458,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 679.992419 - 0: The maximum resident set size (KB) = 899068 + 0: The total amount of wall time = 679.829016 + 0: The maximum resident set size (KB) = 896284 Test 189 rap_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6512,14 +6512,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 687.074137 - 0: The maximum resident set size (KB) = 897532 + 0: The total amount of wall time = 689.072968 + 0: The maximum resident set size (KB) = 903596 Test 190 rap_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6566,14 +6566,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 615.952800 - 0: The maximum resident set size (KB) = 978108 + 0: The total amount of wall time = 616.918734 + 0: The maximum resident set size (KB) = 977320 Test 191 rap_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6612,14 +6612,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.016069 - 0: The maximum resident set size (KB) = 626008 + 0: The total amount of wall time = 352.112529 + 0: The maximum resident set size (KB) = 629296 Test 192 rap_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6666,14 +6666,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 685.363424 - 0: The maximum resident set size (KB) = 897336 + 0: The total amount of wall time = 683.790792 + 0: The maximum resident set size (KB) = 897200 Test 193 rap_sfcdiff_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6720,14 +6720,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 691.610491 - 0: The maximum resident set size (KB) = 900452 + 0: The total amount of wall time = 697.040564 + 0: The maximum resident set size (KB) = 897280 Test 194 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_sfcdiff_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6766,14 +6766,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 517.319127 - 0: The maximum resident set size (KB) = 629892 + 0: The total amount of wall time = 523.826402 + 0: The maximum resident set size (KB) = 632020 Test 195 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6820,14 +6820,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.301036 - 0: The maximum resident set size (KB) = 891428 + 0: The total amount of wall time = 355.096279 + 0: The maximum resident set size (KB) = 893200 Test 196 hrrr_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_noqr_gnu Checking test 197 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6874,14 +6874,14 @@ Checking test 197 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 346.166806 - 0: The maximum resident set size (KB) = 881900 + 0: The total amount of wall time = 343.772398 + 0: The maximum resident set size (KB) = 879540 Test 197 hrrr_control_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6928,14 +6928,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.411006 - 0: The maximum resident set size (KB) = 972480 + 0: The total amount of wall time = 302.538771 + 0: The maximum resident set size (KB) = 971500 Test 198 hrrr_control_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6982,42 +6982,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.089624 - 0: The maximum resident set size (KB) = 890524 + 0: The total amount of wall time = 348.550028 + 0: The maximum resident set size (KB) = 894580 Test 199 hrrr_control_decomp_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.342102 - 0: The maximum resident set size (KB) = 610328 + 0: The total amount of wall time = 182.498345 + 0: The maximum resident set size (KB) = 612224 Test 200 hrrr_control_restart_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_noqr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_noqr_gnu Checking test 201 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 181.833962 - 0: The maximum resident set size (KB) = 705356 + 0: The total amount of wall time = 179.413236 + 0: The maximum resident set size (KB) = 705664 Test 201 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7064,224 +7064,224 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 662.629191 - 0: The maximum resident set size (KB) = 893508 + 0: The total amount of wall time = 673.387490 + 0: The maximum resident set size (KB) = 897904 Test 202 rrfs_v1beta_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_gnu Checking test 203 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 82.761051 - 0: The maximum resident set size (KB) = 595716 + 0: The total amount of wall time = 84.392899 + 0: The maximum resident set size (KB) = 592080 Test 203 control_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_gnu Checking test 204 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 446.316198 - 0: The maximum resident set size (KB) = 602772 + 0: The total amount of wall time = 434.996273 + 0: The maximum resident set size (KB) = 595888 Test 204 regional_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_gnu Checking test 205 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.585373 - 0: The maximum resident set size (KB) = 911620 + 0: The total amount of wall time = 141.824319 + 0: The maximum resident set size (KB) = 911384 Test 205 rap_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_gnu Checking test 206 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 136.391425 - 0: The maximum resident set size (KB) = 903900 + 0: The total amount of wall time = 134.395503 + 0: The maximum resident set size (KB) = 903880 Test 206 hrrr_control_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_gnu Checking test 207 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.635656 - 0: The maximum resident set size (KB) = 909744 + 0: The total amount of wall time = 138.979459 + 0: The maximum resident set size (KB) = 908716 Test 207 hrrr_gf_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_gnu Checking test 208 hrrr_c3_debug_gnu 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.597582 - 0: The maximum resident set size (KB) = 912580 + 0: The total amount of wall time = 140.555490 + 0: The maximum resident set size (KB) = 914392 Test 208 hrrr_c3_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_gnu Checking test 209 rap_diag_debug_gnu 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.461141 - 0: The maximum resident set size (KB) = 995340 + 0: The total amount of wall time = 151.580921 + 0: The maximum resident set size (KB) = 999028 Test 209 rap_diag_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.888780 - 0: The maximum resident set size (KB) = 916056 + 0: The total amount of wall time = 220.550247 + 0: The maximum resident set size (KB) = 909140 Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_gnu Checking test 211 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.232857 - 0: The maximum resident set size (KB) = 911112 + 0: The total amount of wall time = 140.941752 + 0: The maximum resident set size (KB) = 916300 Test 211 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_gnu Checking test 212 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.914445 - 0: The maximum resident set size (KB) = 908812 + 0: The total amount of wall time = 140.579622 + 0: The maximum resident set size (KB) = 901792 Test 212 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_gnu Checking test 213 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 82.240976 - 0: The maximum resident set size (KB) = 548552 + 0: The total amount of wall time = 80.054783 + 0: The maximum resident set size (KB) = 540512 Test 213 control_ras_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_gnu Checking test 214 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.627962 - 0: The maximum resident set size (KB) = 544488 + 0: The total amount of wall time = 121.470016 + 0: The maximum resident set size (KB) = 538164 Test 214 control_stochy_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_gnu Checking test 215 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 86.569495 - 0: The maximum resident set size (KB) = 1290728 + 0: The total amount of wall time = 88.919673 + 0: The maximum resident set size (KB) = 1292548 Test 215 control_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_gnu Checking test 216 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.710755 - 0: The maximum resident set size (KB) = 910576 + 0: The total amount of wall time = 143.855554 + 0: The maximum resident set size (KB) = 912372 Test 216 rap_flake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_gnu Checking test 217 rap_clm_lake_debug_gnu 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.281996 - 0: The maximum resident set size (KB) = 915948 + 0: The total amount of wall time = 159.835207 + 0: The maximum resident set size (KB) = 913792 Test 217 rap_clm_lake_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_gnu Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7322,26 +7322,26 @@ Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.039888 - 0: The maximum resident set size (KB) = 915012 + 0: The total amount of wall time = 240.077066 + 0: The maximum resident set size (KB) = 910856 Test 218 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_gnu Checking test 219 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 135.846867 - 0: The maximum resident set size (KB) = 241652 + 0: The total amount of wall time = 139.290323 + 0: The maximum resident set size (KB) = 249200 Test 219 control_wam_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_gnu Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7388,14 +7388,14 @@ Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 700.413500 - 0: The maximum resident set size (KB) = 750684 + 0: The total amount of wall time = 697.275705 + 0: The maximum resident set size (KB) = 752000 Test 220 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_gnu Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7442,14 +7442,14 @@ Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.390809 - 0: The maximum resident set size (KB) = 748732 + 0: The total amount of wall time = 353.770014 + 0: The maximum resident set size (KB) = 750444 Test 221 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_gnu Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7496,14 +7496,14 @@ Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 621.932147 - 0: The maximum resident set size (KB) = 808344 + 0: The total amount of wall time = 631.534921 + 0: The maximum resident set size (KB) = 803532 Test 222 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_gnu Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7550,14 +7550,14 @@ Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 309.290036 - 0: The maximum resident set size (KB) = 806824 + 0: The total amount of wall time = 311.792468 + 0: The maximum resident set size (KB) = 814684 Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_gnu Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7604,14 +7604,14 @@ Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.590403 - 0: The maximum resident set size (KB) = 749944 + 0: The total amount of wall time = 351.896889 + 0: The maximum resident set size (KB) = 749348 Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_gnu Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7650,28 +7650,28 @@ Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.943314 - 0: The maximum resident set size (KB) = 596404 + 0: The total amount of wall time = 526.713416 + 0: The maximum resident set size (KB) = 594756 Test 225 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_restart_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_gnu Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 185.822177 - 0: The maximum resident set size (KB) = 586884 + 0: The total amount of wall time = 184.051875 + 0: The maximum resident set size (KB) = 584392 Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_gnu Checking test 227 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7687,40 +7687,40 @@ Checking test 227 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 240.706840 - 0: The maximum resident set size (KB) = 902216 + 0: The total amount of wall time = 237.901392 + 0: The maximum resident set size (KB) = 901060 Test 227 conus13km_control_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_gnu Checking test 228 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.555596 - 0: The maximum resident set size (KB) = 935576 + 0: The total amount of wall time = 100.776535 + 0: The maximum resident set size (KB) = 937072 Test 228 conus13km_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_gnu Checking test 229 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 128.036469 - 0: The maximum resident set size (KB) = 601000 + 0: The total amount of wall time = 126.313436 + 0: The maximum resident set size (KB) = 600832 Test 229 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_gnu Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7767,42 +7767,42 @@ Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 407.333721 - 0: The maximum resident set size (KB) = 784616 + 0: The total amount of wall time = 405.947899 + 0: The maximum resident set size (KB) = 782644 Test 230 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_gnu Checking test 231 rap_control_debug_dyn32_phy32_gnu 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.371318 - 0: The maximum resident set size (KB) = 767284 + 0: The total amount of wall time = 139.632430 + 0: The maximum resident set size (KB) = 762164 Test 231 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_gnu Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.473434 - 0: The maximum resident set size (KB) = 761488 + 0: The total amount of wall time = 135.820539 + 0: The maximum resident set size (KB) = 762324 Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_gnu Checking test 233 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7816,14 +7816,14 @@ Checking test 233 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 413.155023 - 0: The maximum resident set size (KB) = 918220 + 0: The total amount of wall time = 415.827265 + 0: The maximum resident set size (KB) = 920564 Test 233 conus13km_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_qr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_gnu Checking test 234 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7837,56 +7837,56 @@ Checking test 234 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 416.594942 - 0: The maximum resident set size (KB) = 634240 + 0: The total amount of wall time = 426.875680 + 0: The maximum resident set size (KB) = 635624 Test 234 conus13km_debug_qr_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_debug_2threads_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_gnu Checking test 235 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.487438 - 0: The maximum resident set size (KB) = 954404 + 0: The total amount of wall time = 251.480665 + 0: The maximum resident set size (KB) = 956152 Test 235 conus13km_debug_2threads_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_gnu Checking test 236 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 421.009362 - 0: The maximum resident set size (KB) = 985376 + 0: The total amount of wall time = 411.098192 + 0: The maximum resident set size (KB) = 986952 Test 236 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/rap_control_dyn64_phy32_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_gnu Checking test 237 rap_control_dyn64_phy32_debug_gnu 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.924821 - 0: The maximum resident set size (KB) = 789568 + 0: The total amount of wall time = 143.792686 + 0: The maximum resident set size (KB) = 787444 Test 237 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_gnu Checking test 238 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7951,14 +7951,14 @@ Checking test 238 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 660.268049 - 0: The maximum resident set size (KB) = 1512120 + 0: The total amount of wall time = 629.363051 + 0: The maximum resident set size (KB) = 1511956 Test 238 cpld_control_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_nowave_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_gnu Checking test 239 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8020,14 +8020,14 @@ Checking test 239 cpld_control_nowave_noaero_p8_gnu 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 = 393.478932 - 0: The maximum resident set size (KB) = 1399772 + 0: The total amount of wall time = 374.149647 + 0: The maximum resident set size (KB) = 1406204 Test 239 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_gnu Checking test 240 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8080,14 +8080,14 @@ Checking test 240 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.808593 - 0: The maximum resident set size (KB) = 1515152 + 0: The total amount of wall time = 353.473349 + 0: The maximum resident set size (KB) = 1519488 Test 240 cpld_debug_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_gnu Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8151,14 +8151,14 @@ Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1317.468188 - 0: The maximum resident set size (KB) = 1374484 + 0: The total amount of wall time = 1305.915616 + 0: The maximum resident set size (KB) = 1378840 Test 241 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_gnu Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8210,25 +8210,25 @@ Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 752.117199 - 0: The maximum resident set size (KB) = 1384624 + 0: The total amount of wall time = 749.003228 + 0: The maximum resident set size (KB) = 1385740 Test 242 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_31186/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_gnu Checking test 243 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 188.120099 - 0: The maximum resident set size (KB) = 695308 + 0: The total amount of wall time = 170.884111 + 0: The maximum resident set size (KB) = 697716 Test 243 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 8 18:48:07 UTC 2024 -Elapsed time: 03h:39m:40s. Have a nice day! +Fri Feb 9 04:43:44 UTC 2024 +Elapsed time: 02h:01m:05s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 9689358641..f23ba5ab87 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Thu Feb 8 08:54:53 AM CST 2024 +Thu Feb 8 17:53:11 CST 2024 Start Regression test -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 +Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) ++c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 435 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 157 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 415 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 210 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 229 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 446 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 569 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 645 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 559 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 470 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 578 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 554 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 184 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 427 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 965 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 318 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 44 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 564 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 573 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 174 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 648 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 535 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 149 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 554 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 441 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 542 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 997 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 529 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 306 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1205 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 689 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 333 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 930 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 834 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 293 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 650 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 681 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 231 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 1013 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1222 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 220 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 507 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 370 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 249 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 414 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 393 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 383 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 449 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 568 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 221 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 308 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 900 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 43 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 574 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 164 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 639 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 602 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 529 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 883 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 357 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 706 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 337 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 239 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 914 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 889 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 733 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 233 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 851 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 923 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.366248 - 0: The maximum resident set size (KB) = 1901836 + 0: The total amount of wall time = 430.551336 + 0: The maximum resident set size (KB) = 1890576 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 787.938449 - 0: The maximum resident set size (KB) = 1775384 + 0: The total amount of wall time = 783.981906 + 0: The maximum resident set size (KB) = 1785560 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 832.336615 - 0: The maximum resident set size (KB) = 2166292 + 0: The total amount of wall time = 829.172560 + 0: The maximum resident set size (KB) = 2165104 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_gfsv17_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 375.289632 - 0: The maximum resident set size (KB) = 1174688 + 0: The total amount of wall time = 370.372125 + 0: The maximum resident set size (KB) = 1169496 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_gfsv17_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 897.161599 - 0: The maximum resident set size (KB) = 1691196 + 0: The total amount of wall time = 894.098335 + 0: The maximum resident set size (KB) = 1699572 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1210.531621 - 0: The maximum resident set size (KB) = 1722732 + 0: The total amount of wall time = 1205.819574 + 0: The maximum resident set size (KB) = 1731696 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 437.234685 - 0: The maximum resident set size (KB) = 2084012 + 0: The total amount of wall time = 451.274498 + 0: The maximum resident set size (KB) = 2063756 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.592919 - 0: The maximum resident set size (KB) = 2090316 + 0: The total amount of wall time = 443.285201 + 0: The maximum resident set size (KB) = 2092632 Test 008 cpld_control_p8.v2.sfc_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.954794 - 0: The maximum resident set size (KB) = 1960644 + 0: The total amount of wall time = 242.086652 + 0: The maximum resident set size (KB) = 1982236 Test 009 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_qr_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 445.978276 - 0: The maximum resident set size (KB) = 1998264 + 0: The total amount of wall time = 441.286202 + 0: The maximum resident set size (KB) = 1983244 Test 010 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_qr_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 251.910684 - 0: The maximum resident set size (KB) = 1735320 + 0: The total amount of wall time = 241.976440 + 0: The maximum resident set size (KB) = 1741020 Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_2threads_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 524.472029 - 0: The maximum resident set size (KB) = 2488092 + 0: The total amount of wall time = 540.920443 + 0: The maximum resident set size (KB) = 2482208 Test 012 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_decomp_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.193413 - 0: The maximum resident set size (KB) = 2067780 + 0: The total amount of wall time = 440.830683 + 0: The maximum resident set size (KB) = 2062560 Test 013 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 373.842400 - 0: The maximum resident set size (KB) = 1902392 + 0: The total amount of wall time = 370.215536 + 0: The maximum resident set size (KB) = 1900140 Test 014 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.646170 - 0: The maximum resident set size (KB) = 2061136 + 0: The total amount of wall time = 436.533744 + 0: The maximum resident set size (KB) = 2092868 Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 907.558398 - 0: The maximum resident set size (KB) = 2809588 + 0: The total amount of wall time = 941.018889 + 0: The maximum resident set size (KB) = 2805860 Test 016 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_c192_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 335.772025 - 0: The maximum resident set size (KB) = 2911472 + 0: The total amount of wall time = 328.363025 + 0: The maximum resident set size (KB) = 2927324 Test 017 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 486.923021 - 0: The maximum resident set size (KB) = 3621688 + 0: The total amount of wall time = 482.035387 + 0: The maximum resident set size (KB) = 3623532 Test 018 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_bmark_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.300940 - 0: The maximum resident set size (KB) = 3612240 + 0: The total amount of wall time = 283.674077 + 0: The maximum resident set size (KB) = 3622612 Test 019 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_s2sa_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 282.556033 - 0: The maximum resident set size (KB) = 2032316 + 0: The total amount of wall time = 283.122530 + 0: The maximum resident set size (KB) = 2056368 Test 020 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 407.455823 - 0: The maximum resident set size (KB) = 1781028 + 0: The total amount of wall time = 400.368736 + 0: The maximum resident set size (KB) = 1774836 Test 021 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_nowave_noaero_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 223.734946 - 0: The maximum resident set size (KB) = 1821168 + 0: The total amount of wall time = 224.538006 + 0: The maximum resident set size (KB) = 1823780 Test 022 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.955192 - 0: The maximum resident set size (KB) = 2050072 + 0: The total amount of wall time = 396.792409 + 0: The maximum resident set size (KB) = 2059020 Test 023 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.380361 - 0: The maximum resident set size (KB) = 1798552 + 0: The total amount of wall time = 268.191668 + 0: The maximum resident set size (KB) = 1785568 Test 024 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 227.647185 - 0: The maximum resident set size (KB) = 1828948 + 0: The total amount of wall time = 225.810803 + 0: The maximum resident set size (KB) = 1829460 Test 025 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_c48_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 425.976897 - 0: The maximum resident set size (KB) = 2840244 + 0: The total amount of wall time = 425.989730 + 0: The maximum resident set size (KB) = 2836632 Test 026 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 417.714944 - 0: The maximum resident set size (KB) = 2076248 + 0: The total amount of wall time = 420.378922 + 0: The maximum resident set size (KB) = 2072848 Test 027 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 811.144177 - 0: The maximum resident set size (KB) = 1812128 + 0: The total amount of wall time = 814.685799 + 0: The maximum resident set size (KB) = 1810172 Test 028 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_restart_pdlib_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 399.291103 - 0: The maximum resident set size (KB) = 1284096 + 0: The total amount of wall time = 386.496348 + 0: The maximum resident set size (KB) = 1303752 Test 029 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_mpi_pdlib_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 905.018806 - 0: The maximum resident set size (KB) = 1733472 + 0: The total amount of wall time = 903.394383 + 0: The maximum resident set size (KB) = 1741320 Test 030 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1282.544739 - 0: The maximum resident set size (KB) = 1773396 + 0: The total amount of wall time = 1273.059948 + 0: The maximum resident set size (KB) = 1789012 Test 031 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_flake_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 158.740006 - 0: The maximum resident set size (KB) = 714328 + 0: The total amount of wall time = 159.943091 + 0: The maximum resident set size (KB) = 711016 Test 032 control_flake_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,14 +2094,14 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 112.663494 - 0: The maximum resident set size (KB) = 660636 + 0: The total amount of wall time = 114.260992 + 0: The maximum resident set size (KB) = 670176 Test 033 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.253456 - 0: The maximum resident set size (KB) = 666840 + 0: The total amount of wall time = 119.694421 + 0: The maximum resident set size (KB) = 668660 Test 034 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_latlon_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 113.971404 - 0: The maximum resident set size (KB) = 660876 + 0: The total amount of wall time = 116.581534 + 0: The maximum resident set size (KB) = 675996 Test 035 control_latlon_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.128644 - 0: The maximum resident set size (KB) = 661844 + 0: The total amount of wall time = 122.289495 + 0: The maximum resident set size (KB) = 670148 Test 036 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 338.226235 -0: The maximum resident set size (KB) = 865908 +0: The total amount of wall time = 337.978757 +0: The maximum resident set size (KB) = 865740 Test 037 control_c48_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48.v2.sfc_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 338.300398 -0: The maximum resident set size (KB) = 857576 +0: The total amount of wall time = 338.723507 +0: The maximum resident set size (KB) = 861396 Test 038 control_c48.v2.sfc_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c192_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 458.571667 - 0: The maximum resident set size (KB) = 963872 + 0: The total amount of wall time = 449.395290 + 0: The maximum resident set size (KB) = 961848 Test 039 control_c192_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c384_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 468.156698 - 0: The maximum resident set size (KB) = 1448852 + 0: The total amount of wall time = 469.094595 + 0: The maximum resident set size (KB) = 1445964 Test 040 control_c384_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c384gdas_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 411.882142 - 0: The maximum resident set size (KB) = 1513644 + 0: The total amount of wall time = 415.271984 + 0: The maximum resident set size (KB) = 1527500 Test 041 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 74.807848 - 0: The maximum resident set size (KB) = 670720 + 0: The total amount of wall time = 76.271868 + 0: The maximum resident set size (KB) = 675804 Test 042 control_stochy_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_restart_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 42.808856 - 0: The maximum resident set size (KB) = 554276 + 0: The total amount of wall time = 43.037293 + 0: The maximum resident set size (KB) = 538436 Test 043 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_lndp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 71.337975 - 0: The maximum resident set size (KB) = 665436 + 0: The total amount of wall time = 73.369905 + 0: The maximum resident set size (KB) = 672884 Test 044 control_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_iovr4_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 113.841812 - 0: The maximum resident set size (KB) = 677604 + 0: The total amount of wall time = 118.932850 + 0: The maximum resident set size (KB) = 665692 Test 045 control_iovr4_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_iovr5_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 114.861092 - 0: The maximum resident set size (KB) = 664624 + 0: The total amount of wall time = 117.521707 + 0: The maximum resident set size (KB) = 675384 Test 046 control_iovr5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.626335 - 0: The maximum resident set size (KB) = 1635576 + 0: The total amount of wall time = 143.899096 + 0: The maximum resident set size (KB) = 1635572 Test 047 control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 142.016756 - 0: The maximum resident set size (KB) = 1635284 + 0: The total amount of wall time = 141.355960 + 0: The maximum resident set size (KB) = 1637228 Test 048 control_p8.v2.sfc_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 139.009402 - 0: The maximum resident set size (KB) = 1632160 + 0: The total amount of wall time = 135.703376 + 0: The maximum resident set size (KB) = 1641012 Test 049 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 77.982251 - 0: The maximum resident set size (KB) = 911376 + 0: The total amount of wall time = 74.659397 + 0: The maximum resident set size (KB) = 920884 Test 050 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_noqr_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 140.976242 - 0: The maximum resident set size (KB) = 1628088 + 0: The total amount of wall time = 137.530339 + 0: The maximum resident set size (KB) = 1630116 Test 051 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_noqr_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 74.461731 - 0: The maximum resident set size (KB) = 986160 + 0: The total amount of wall time = 72.759465 + 0: The maximum resident set size (KB) = 974524 Test 052 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_decomp_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 147.431966 - 0: The maximum resident set size (KB) = 1632204 + 0: The total amount of wall time = 144.279497 + 0: The maximum resident set size (KB) = 1635532 Test 053 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_2threads_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.752884 - 0: The maximum resident set size (KB) = 1725764 + 0: The total amount of wall time = 129.798695 + 0: The maximum resident set size (KB) = 1727108 Test 054 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_lndp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 251.738828 - 0: The maximum resident set size (KB) = 1638248 + 0: The total amount of wall time = 254.924152 + 0: The maximum resident set size (KB) = 1645332 Test 055 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.126002 - 0: The maximum resident set size (KB) = 1716156 + 0: The total amount of wall time = 198.979787 + 0: The maximum resident set size (KB) = 1729464 Test 056 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_mynn_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 142.269808 - 0: The maximum resident set size (KB) = 1648204 + 0: The total amount of wall time = 141.779806 + 0: The maximum resident set size (KB) = 1650480 Test 057 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/merra2_thompson_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.189147 - 0: The maximum resident set size (KB) = 1661536 + 0: The total amount of wall time = 167.723689 + 0: The maximum resident set size (KB) = 1650188 Test 058 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_control_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 259.617884 - 0: The maximum resident set size (KB) = 960848 + 0: The total amount of wall time = 259.114558 + 0: The maximum resident set size (KB) = 960056 Test 059 regional_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_restart_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 138.262359 - 0: The maximum resident set size (KB) = 1102196 + 0: The total amount of wall time = 137.083464 + 0: The maximum resident set size (KB) = 1104240 Test 060 regional_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_decomp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.621278 - 0: The maximum resident set size (KB) = 948664 + 0: The total amount of wall time = 271.999807 + 0: The maximum resident set size (KB) = 948576 Test 061 regional_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_2threads_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.975186 - 0: The maximum resident set size (KB) = 922144 + 0: The total amount of wall time = 157.324716 + 0: The maximum resident set size (KB) = 917924 Test 062 regional_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_noquilt_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 249.880086 - 0: The maximum resident set size (KB) = 1493404 + 0: The total amount of wall time = 248.820110 + 0: The maximum resident set size (KB) = 1487488 Test 063 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 257.293060 - 0: The maximum resident set size (KB) = 962560 + 0: The total amount of wall time = 254.792054 + 0: The maximum resident set size (KB) = 963704 Test 064 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_2dwrtdecomp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 262.760438 - 0: The maximum resident set size (KB) = 958960 + 0: The total amount of wall time = 260.021290 + 0: The maximum resident set size (KB) = 958696 Test 065 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_wofs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 320.776860 - 0: The maximum resident set size (KB) = 2083864 + 0: The total amount of wall time = 320.187631 + 0: The maximum resident set size (KB) = 2105652 Test 066 regional_wofs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.458360 - 0: The maximum resident set size (KB) = 1211820 + 0: The total amount of wall time = 389.238343 + 0: The maximum resident set size (KB) = 1205512 Test 067 rap_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 197.068588 - 0: The maximum resident set size (KB) = 1455196 + 0: The total amount of wall time = 196.173734 + 0: The maximum resident set size (KB) = 1411816 Test 068 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_decomp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.696320 - 0: The maximum resident set size (KB) = 1139964 + 0: The total amount of wall time = 399.083779 + 0: The maximum resident set size (KB) = 1131372 Test 069 rap_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.231732 - 0: The maximum resident set size (KB) = 1382700 + 0: The total amount of wall time = 356.753366 + 0: The maximum resident set size (KB) = 1356252 Test 070 rap_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.406129 - 0: The maximum resident set size (KB) = 1133396 + 0: The total amount of wall time = 194.483670 + 0: The maximum resident set size (KB) = 1161324 Test 071 rap_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.008082 - 0: The maximum resident set size (KB) = 1203108 + 0: The total amount of wall time = 387.129535 + 0: The maximum resident set size (KB) = 1196708 Test 072 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_decomp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.474771 - 0: The maximum resident set size (KB) = 1151496 + 0: The total amount of wall time = 396.621999 + 0: The maximum resident set size (KB) = 1126548 Test 073 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_restart_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.276229 - 0: The maximum resident set size (KB) = 1189612 + 0: The total amount of wall time = 284.838209 + 0: The maximum resident set size (KB) = 1188400 Test 074 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.573133 - 0: The maximum resident set size (KB) = 1088884 + 0: The total amount of wall time = 191.040405 + 0: The maximum resident set size (KB) = 1075740 Test 075 hrrr_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.630749 - 0: The maximum resident set size (KB) = 1043232 + 0: The total amount of wall time = 195.239536 + 0: The maximum resident set size (KB) = 1049380 Test 076 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.815686 - 0: The maximum resident set size (KB) = 1120352 + 0: The total amount of wall time = 174.371282 + 0: The maximum resident set size (KB) = 1119060 Test 077 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.286500 - 0: The maximum resident set size (KB) = 1023844 + 0: The total amount of wall time = 100.911859 + 0: The maximum resident set size (KB) = 1036780 Test 078 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.812079 - 0: The maximum resident set size (KB) = 1183964 + 0: The total amount of wall time = 365.743285 + 0: The maximum resident set size (KB) = 1197472 Test 079 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 448.827158 - 0: The maximum resident set size (KB) = 2003984 + 0: The total amount of wall time = 445.018269 + 0: The maximum resident set size (KB) = 2006388 Test 080 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 435.136295 - 0: The maximum resident set size (KB) = 2176944 + 0: The total amount of wall time = 434.179462 + 0: The maximum resident set size (KB) = 2176536 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmg_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.198798 - 0: The maximum resident set size (KB) = 826492 + 0: The total amount of wall time = 293.795215 + 0: The maximum resident set size (KB) = 814284 Test 082 control_csawmg_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmgt_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 292.069197 - 0: The maximum resident set size (KB) = 825388 + 0: The total amount of wall time = 291.487385 + 0: The maximum resident set size (KB) = 827296 Test 083 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 158.804701 - 0: The maximum resident set size (KB) = 808336 + 0: The total amount of wall time = 160.406571 + 0: The maximum resident set size (KB) = 813000 Test 084 control_ras_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wam_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 99.734054 - 0: The maximum resident set size (KB) = 783524 + 0: The total amount of wall time = 104.047968 + 0: The maximum resident set size (KB) = 779400 Test 085 control_wam_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_faster_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.368677 - 0: The maximum resident set size (KB) = 1643036 + 0: The total amount of wall time = 124.388469 + 0: The maximum resident set size (KB) = 1635612 Test 086 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_control_faster_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 233.059931 - 0: The maximum resident set size (KB) = 955896 + 0: The total amount of wall time = 230.542141 + 0: The maximum resident set size (KB) = 959392 Test 087 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 122.974509 - 0: The maximum resident set size (KB) = 826360 + 0: The total amount of wall time = 126.577079 + 0: The maximum resident set size (KB) = 824628 Test 088 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.227349 - 0: The maximum resident set size (KB) = 825152 + 0: The total amount of wall time = 122.709979 + 0: The maximum resident set size (KB) = 832824 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.494289 - 0: The maximum resident set size (KB) = 832672 + 0: The total amount of wall time = 139.036237 + 0: The maximum resident set size (KB) = 826416 Test 090 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_lndp_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.904222 - 0: The maximum resident set size (KB) = 826896 + 0: The total amount of wall time = 124.397013 + 0: The maximum resident set size (KB) = 824372 Test 091 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.372957 - 0: The maximum resident set size (KB) = 885660 + 0: The total amount of wall time = 193.215812 + 0: The maximum resident set size (KB) = 885464 Test 092 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.703729 - 0: The maximum resident set size (KB) = 882988 + 0: The total amount of wall time = 187.642472 + 0: The maximum resident set size (KB) = 878036 Test 093 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.645223 - 0: The maximum resident set size (KB) = 838264 + 0: The total amount of wall time = 126.617555 + 0: The maximum resident set size (KB) = 837184 Test 094 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_diag_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.389523 - 0: The maximum resident set size (KB) = 878748 + 0: The total amount of wall time = 127.152381 + 0: The maximum resident set size (KB) = 886324 Test 095 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_debug_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.934503 - 0: The maximum resident set size (KB) = 1664372 + 0: The total amount of wall time = 132.830157 + 0: The maximum resident set size (KB) = 1665044 Test 096 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 835.216303 - 0: The maximum resident set size (KB) = 897244 + 0: The total amount of wall time = 831.502402 + 0: The maximum resident set size (KB) = 893832 Test 097 regional_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.649865 - 0: The maximum resident set size (KB) = 1224212 + 0: The total amount of wall time = 232.610455 + 0: The maximum resident set size (KB) = 1225900 Test 098 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.990785 - 0: The maximum resident set size (KB) = 1223328 + 0: The total amount of wall time = 223.198852 + 0: The maximum resident set size (KB) = 1210908 Test 099 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.918677 - 0: The maximum resident set size (KB) = 1217928 + 0: The total amount of wall time = 227.146257 + 0: The maximum resident set size (KB) = 1229700 Test 100 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.408920 - 0: The maximum resident set size (KB) = 1215212 + 0: The total amount of wall time = 229.230965 + 0: The maximum resident set size (KB) = 1224180 Test 101 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_unified_drag_suite_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.516705 - 0: The maximum resident set size (KB) = 1227900 + 0: The total amount of wall time = 230.715269 + 0: The maximum resident set size (KB) = 1221896 Test 102 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_diag_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.661738 - 0: The maximum resident set size (KB) = 1297872 + 0: The total amount of wall time = 239.354062 + 0: The maximum resident set size (KB) = 1311048 Test 103 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.396613 - 0: The maximum resident set size (KB) = 1213032 + 0: The total amount of wall time = 233.381935 + 0: The maximum resident set size (KB) = 1223132 Test 104 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_unified_ugwp_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.306475 - 0: The maximum resident set size (KB) = 1221512 + 0: The total amount of wall time = 232.262413 + 0: The maximum resident set size (KB) = 1230052 Test 105 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel 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.975775 - 0: The maximum resident set size (KB) = 1220888 + 0: The total amount of wall time = 230.296686 + 0: The maximum resident set size (KB) = 1221732 Test 106 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel 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.272994 - 0: The maximum resident set size (KB) = 1212348 + 0: The total amount of wall time = 230.670011 + 0: The maximum resident set size (KB) = 1221088 Test 107 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.143189 - 0: The maximum resident set size (KB) = 1223736 + 0: The total amount of wall time = 222.694099 + 0: The maximum resident set size (KB) = 1218216 Test 108 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.930416 - 0: The maximum resident set size (KB) = 1218484 + 0: The total amount of wall time = 228.642036 + 0: The maximum resident set size (KB) = 1219408 Test 109 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.987128 - 0: The maximum resident set size (KB) = 1223688 + 0: The total amount of wall time = 373.997451 + 0: The maximum resident set size (KB) = 1222624 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel 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.286377 - 0: The maximum resident set size (KB) = 1216848 + 0: The total amount of wall time = 225.915838 + 0: The maximum resident set size (KB) = 1217512 Test 111 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel 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.092482 - 0: The maximum resident set size (KB) = 1218444 + 0: The total amount of wall time = 281.114888 + 0: The maximum resident set size (KB) = 1223320 Test 112 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_flake_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.996325 - 0: The maximum resident set size (KB) = 1223256 + 0: The total amount of wall time = 229.954161 + 0: The maximum resident set size (KB) = 1216368 Test 113 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,14 +4377,14 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.257121 - 0: The maximum resident set size (KB) = 1221240 + 0: The total amount of wall time = 398.184483 + 0: The maximum resident set size (KB) = 1227312 Test 114 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4395,14 +4395,14 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 185.481359 - 0: The maximum resident set size (KB) = 1317044 + 0: The total amount of wall time = 183.619126 + 0: The maximum resident set size (KB) = 1328728 Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_intel Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4449,14 +4449,14 @@ Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.819038 - 0: The maximum resident set size (KB) = 1140000 + 0: The total amount of wall time = 311.550287 + 0: The maximum resident set size (KB) = 1149312 Test 116 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_intel Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4503,14 +4503,14 @@ Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.097371 - 0: The maximum resident set size (KB) = 1031388 + 0: The total amount of wall time = 162.100803 + 0: The maximum resident set size (KB) = 1037152 Test 117 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_intel Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4557,14 +4557,14 @@ Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.302765 - 0: The maximum resident set size (KB) = 1278988 + 0: The total amount of wall time = 293.638169 + 0: The maximum resident set size (KB) = 1291208 Test 118 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_intel Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4611,14 +4611,14 @@ Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.898641 - 0: The maximum resident set size (KB) = 1039424 + 0: The total amount of wall time = 149.291909 + 0: The maximum resident set size (KB) = 1050528 Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_intel Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4665,14 +4665,14 @@ Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.855473 - 0: The maximum resident set size (KB) = 980400 + 0: The total amount of wall time = 174.297567 + 0: The maximum resident set size (KB) = 982244 Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_intel Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4711,28 +4711,28 @@ Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.498563 - 0: The maximum resident set size (KB) = 1110704 + 0: The total amount of wall time = 240.462005 + 0: The maximum resident set size (KB) = 1102020 Test 121 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_intel Checking test 122 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.072226 - 0: The maximum resident set size (KB) = 969836 + 0: The total amount of wall time = 84.772033 + 0: The maximum resident set size (KB) = 953852 Test 122 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_control_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_intel Checking test 123 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4748,40 +4748,40 @@ Checking test 123 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 93.580959 - 0: The maximum resident set size (KB) = 1292348 + 0: The total amount of wall time = 93.302324 + 0: The maximum resident set size (KB) = 1307100 Test 123 conus13km_control_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_2threads_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_intel Checking test 124 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 36.775532 - 0: The maximum resident set size (KB) = 1203980 + 0: The total amount of wall time = 36.696331 + 0: The maximum resident set size (KB) = 1205612 Test 124 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_intel Checking test 125 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 53.846253 - 0: The maximum resident set size (KB) = 1163568 + 0: The total amount of wall time = 53.510029 + 0: The maximum resident set size (KB) = 1153620 Test 125 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_intel Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4828,42 +4828,42 @@ Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.253160 - 0: The maximum resident set size (KB) = 1094228 + 0: The total amount of wall time = 208.281048 + 0: The maximum resident set size (KB) = 1095292 Test 126 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_intel Checking test 127 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.235801 - 0: The maximum resident set size (KB) = 1091304 + 0: The total amount of wall time = 226.905917 + 0: The maximum resident set size (KB) = 1095928 Test 127 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_intel Checking test 128 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.720509 - 0: The maximum resident set size (KB) = 1095532 + 0: The total amount of wall time = 219.551667 + 0: The maximum resident set size (KB) = 1097796 Test 128 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_intel Checking test 129 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 129 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 693.215633 - 0: The maximum resident set size (KB) = 1327236 + 0: The total amount of wall time = 695.001955 + 0: The maximum resident set size (KB) = 1342144 Test 129 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_qr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_intel Checking test 130 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4898,81 +4898,81 @@ Checking test 130 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 705.235205 - 0: The maximum resident set size (KB) = 980808 + 0: The total amount of wall time = 699.562751 + 0: The maximum resident set size (KB) = 989116 Test 130 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_2threads_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_intel Checking test 131 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 394.387278 - 0: The maximum resident set size (KB) = 1245656 + 0: The total amount of wall time = 390.803202 + 0: The maximum resident set size (KB) = 1238820 Test 131 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_intel Checking test 132 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 694.468476 - 0: The maximum resident set size (KB) = 1402700 + 0: The total amount of wall time = 689.266474 + 0: The maximum resident set size (KB) = 1400400 Test 132 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_intel Checking test 133 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.896310 - 0: The maximum resident set size (KB) = 1147828 + 0: The total amount of wall time = 232.235417 + 0: The maximum resident set size (KB) = 1147672 Test 133 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_intel Checking test 134 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 309.441222 - 0: The maximum resident set size (KB) = 873744 + 0: The total amount of wall time = 305.359074 + 0: The maximum resident set size (KB) = 872868 Test 134 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_thompson_gfdlsf_intel Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 281.109796 - 0: The maximum resident set size (KB) = 1268792 + 0: The total amount of wall time = 281.945532 + 0: The maximum resident set size (KB) = 1278760 Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_intel Checking test 136 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4981,14 +4981,14 @@ Checking test 136 hafs_regional_atm_ocn_intel 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 = 367.738793 - 0: The maximum resident set size (KB) = 950108 + 0: The total amount of wall time = 367.761185 + 0: The maximum resident set size (KB) = 952228 Test 136 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_wav_intel Checking test 137 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4997,14 +4997,14 @@ Checking test 137 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 809.843023 - 0: The maximum resident set size (KB) = 992116 + 0: The total amount of wall time = 811.240530 + 0: The maximum resident set size (KB) = 986732 Test 137 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_wav_intel Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,14 +5015,14 @@ Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 900.907650 - 0: The maximum resident set size (KB) = 988800 + 0: The total amount of wall time = 890.138569 + 0: The maximum resident set size (KB) = 1005336 Test 138 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_1nest_atm_intel Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5035,23 +5035,23 @@ Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 307.866771 - 0: The maximum resident set size (KB) = 608284 + 0: The total amount of wall time = 311.983926 + 0: The maximum resident set size (KB) = 606452 Test 139 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_telescopic_2nests_atm_intel Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5060,14 +5060,14 @@ Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 394.714449 - 0: The maximum resident set size (KB) = 614280 + 0: The total amount of wall time = 396.035240 + 0: The maximum resident set size (KB) = 619516 Test 140 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_1nest_atm_intel Checking test 141 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5114,14 +5114,14 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 153.145842 - 0: The maximum resident set size (KB) = 433352 + 0: The total amount of wall time = 153.453691 + 0: The maximum resident set size (KB) = 436604 Test 141 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_multiple_4nests_atm_intel Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5167,7 +5167,7 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK @@ -5177,19 +5177,19 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK @@ -5203,14 +5203,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 438.036509 - 0: The maximum resident set size (KB) = 579408 + 0: The total amount of wall time = 441.514735 + 0: The maximum resident set size (KB) = 541824 Test 142 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_specified_moving_1nest_atm_intel Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 219.583928 - 0: The maximum resident set size (KB) = 620348 + 0: The total amount of wall time = 213.903087 + 0: The maximum resident set size (KB) = 618724 Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_intel Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5239,7 +5239,7 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK @@ -5248,14 +5248,14 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 207.701328 - 0: The maximum resident set size (KB) = 621436 + 0: The total amount of wall time = 204.562187 + 0: The maximum resident set size (KB) = 622252 Test 144 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5264,28 +5264,28 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 277.851381 - 0: The maximum resident set size (KB) = 683284 + 0: The total amount of wall time = 275.803428 + 0: The maximum resident set size (KB) = 671616 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel 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 = 70.281756 - 0: The maximum resident set size (KB) = 446072 + 0: The total amount of wall time = 71.418089 + 0: The maximum resident set size (KB) = 445600 Test 146 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_nested_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_nested_intel Checking test 147 gnv1_nested_intel results .... Comparing atmf006.nc ............ALT CHECK......NOT OK Comparing sfcf006.nc ............ALT CHECK......NOT OK @@ -5332,28 +5332,28 @@ Checking test 147 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - 0: The total amount of wall time = 235.900667 - 0: The maximum resident set size (KB) = 903724 + 0: The total amount of wall time = 243.796081 + 0: The maximum resident set size (KB) = 901624 Test 147 gnv1_nested_intel FAIL Tries: 2 baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 657.246141 - 0: The maximum resident set size (KB) = 629784 + 0: The total amount of wall time = 654.771092 + 0: The maximum resident set size (KB) = 633120 Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5364,14 +5364,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 978.630017 - 0: The maximum resident set size (KB) = 746756 + 0: The total amount of wall time = 986.917162 + 0: The maximum resident set size (KB) = 747040 Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5382,14 +5382,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 933.120418 - 0: The maximum resident set size (KB) = 861412 + 0: The total amount of wall time = 988.690132 + 0: The maximum resident set size (KB) = 811176 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5399,14 +5399,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 625.417033 - 0: The maximum resident set size (KB) = 831136 + 0: The total amount of wall time = 608.465934 + 0: The maximum resident set size (KB) = 832012 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_intel Checking test 152 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5414,14 +5414,14 @@ Checking test 152 hafs_regional_docn_intel 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 = 310.548147 - 0: The maximum resident set size (KB) = 961196 + 0: The total amount of wall time = 308.682139 + 0: The maximum resident set size (KB) = 962392 Test 152 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_oisst_intel Checking test 153 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5429,131 +5429,131 @@ Checking test 153 hafs_regional_docn_oisst_intel 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 = 318.413827 - 0: The maximum resident set size (KB) = 913476 + 0: The total amount of wall time = 309.584798 + 0: The maximum resident set size (KB) = 931412 Test 153 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_datm_cdeps_intel Checking test 154 hafs_regional_datm_cdeps_intel 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 = 974.211426 - 0: The maximum resident set size (KB) = 1341756 + 0: The total amount of wall time = 970.774864 + 0: The maximum resident set size (KB) = 1339792 Test 154 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_intel Checking test 155 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.645409 - 0: The maximum resident set size (KB) = 1129924 + 0: The total amount of wall time = 121.385172 + 0: The maximum resident set size (KB) = 1127364 Test 155 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_restart_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_restart_cfsr_intel Checking test 156 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 72.928629 - 0: The maximum resident set size (KB) = 1107928 + 0: The total amount of wall time = 72.371422 + 0: The maximum resident set size (KB) = 1106520 Test 156 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_gefs_intel Checking test 157 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.111161 - 0: The maximum resident set size (KB) = 1006048 + 0: The total amount of wall time = 116.316837 + 0: The maximum resident set size (KB) = 1007612 Test 157 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_iau_gefs_intel Checking test 158 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.528837 - 0: The maximum resident set size (KB) = 1010776 + 0: The total amount of wall time = 117.410368 + 0: The maximum resident set size (KB) = 1012700 Test 158 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_stochy_gefs_intel Checking test 159 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.851743 - 0: The maximum resident set size (KB) = 1002364 + 0: The total amount of wall time = 119.136809 + 0: The maximum resident set size (KB) = 1013252 Test 159 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_ciceC_cfsr_intel Checking test 160 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.479421 - 0: The maximum resident set size (KB) = 1155304 + 0: The total amount of wall time = 121.433967 + 0: The maximum resident set size (KB) = 1150568 Test 160 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_cfsr_intel Checking test 161 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.906181 - 0: The maximum resident set size (KB) = 1127584 + 0: The total amount of wall time = 122.201909 + 0: The maximum resident set size (KB) = 1142140 Test 161 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_gefs_intel Checking test 162 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.270880 - 0: The maximum resident set size (KB) = 1007748 + 0: The total amount of wall time = 116.895143 + 0: The maximum resident set size (KB) = 1012868 Test 162 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_cfsr_intel Checking test 163 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5562,14 +5562,14 @@ Checking test 163 datm_cdeps_mx025_cfsr_intel 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 = 281.366470 - 0: The maximum resident set size (KB) = 1150460 + 0: The total amount of wall time = 281.031125 + 0: The maximum resident set size (KB) = 1169008 Test 163 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_gefs_intel Checking test 164 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5578,77 +5578,77 @@ Checking test 164 datm_cdeps_mx025_gefs_intel 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 = 277.845044 - 0: The maximum resident set size (KB) = 1153004 + 0: The total amount of wall time = 276.809644 + 0: The maximum resident set size (KB) = 1151748 Test 164 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_multiple_files_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_multiple_files_cfsr_intel Checking test 165 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.036429 - 0: The maximum resident set size (KB) = 1126076 + 0: The total amount of wall time = 121.189175 + 0: The maximum resident set size (KB) = 1147892 Test 165 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_3072x1536_cfsr_intel Checking test 166 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 174.113271 - 0: The maximum resident set size (KB) = 2439256 + 0: The total amount of wall time = 173.860347 + 0: The maximum resident set size (KB) = 2386708 Test 166 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_gfs_intel Checking test 167 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 180.610353 - 0: The maximum resident set size (KB) = 2435908 + 0: The total amount of wall time = 173.775039 + 0: The maximum resident set size (KB) = 2441660 Test 167 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_debug_cfsr_intel Checking test 168 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 302.213548 - 0: The maximum resident set size (KB) = 1063692 + 0: The total amount of wall time = 298.432820 + 0: The maximum resident set size (KB) = 1077744 Test 168 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_faster_intel Checking test 169 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.546041 - 0: The maximum resident set size (KB) = 1142964 + 0: The total amount of wall time = 121.920799 + 0: The maximum resident set size (KB) = 1145184 Test 169 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_gswp3_intel Checking test 170 datm_cdeps_lnd_gswp3_intel 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 @@ -5657,14 +5657,14 @@ Checking test 170 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 43.916551 - 0: The maximum resident set size (KB) = 340636 + 0: The total amount of wall time = 43.721790 + 0: The maximum resident set size (KB) = 328884 Test 170 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_era5_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_intel Checking test 171 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5673,14 +5673,14 @@ Checking test 171 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 40.266470 - 0: The maximum resident set size (KB) = 558872 + 0: The total amount of wall time = 39.572909 + 0: The maximum resident set size (KB) = 557740 Test 171 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/datm_cdeps_lnd_era5_rst_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_rst_intel Checking test 172 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5689,14 +5689,14 @@ Checking test 172 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 24.844785 - 0: The maximum resident set size (KB) = 556428 + 0: The total amount of wall time = 23.499585 + 0: The maximum resident set size (KB) = 557872 Test 172 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_sbs_intel Checking test 173 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5785,14 +5785,14 @@ Checking test 173 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 327.955030 - 0: The maximum resident set size (KB) = 1637420 + 0: The total amount of wall time = 338.795293 + 0: The maximum resident set size (KB) = 1649392 Test 173 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_atmlnd_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_intel Checking test 174 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5881,14 +5881,14 @@ Checking test 174 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 327.361237 - 0: The maximum resident set size (KB) = 1639172 + 0: The total amount of wall time = 326.915840 + 0: The maximum resident set size (KB) = 1642416 Test 174 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_restart_p8_atmlnd_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_atmlnd_intel Checking test 175 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5909,14 +5909,14 @@ Checking test 175 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 170.542369 - 0: The maximum resident set size (KB) = 942284 + 0: The total amount of wall time = 173.458248 + 0: The maximum resident set size (KB) = 945696 Test 175 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmwav_control_noaero_p8_intel Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5959,14 +5959,14 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 79.992699 - 0: The maximum resident set size (KB) = 1707356 + 0: The total amount of wall time = 80.157693 + 0: The maximum resident set size (KB) = 1699552 Test 176 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_atmwav_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_atmwav_intel Checking test 177 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6010,14 +6010,14 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 76.189888 - 0: The maximum resident set size (KB) = 696156 + 0: The total amount of wall time = 76.513338 + 0: The maximum resident set size (KB) = 696804 Test 177 control_atmwav_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_intel Checking test 178 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6061,14 +6061,14 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.564861 - 0: The maximum resident set size (KB) = 1797340 + 0: The total amount of wall time = 198.068527 + 0: The maximum resident set size (KB) = 1790736 Test 178 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_intel Checking test 179 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6112,14 +6112,14 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.134373 - 0: The maximum resident set size (KB) = 1815144 + 0: The total amount of wall time = 244.939072 + 0: The maximum resident set size (KB) = 1802620 Test 179 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_micro_intel Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6163,14 +6163,14 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.570882 - 0: The maximum resident set size (KB) = 1831132 + 0: The total amount of wall time = 259.830563 + 0: The maximum resident set size (KB) = 1828312 Test 180 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_atmaq_debug_intel Checking test 181 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6184,14 +6184,14 @@ Checking test 181 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 971.352709 - 0: The maximum resident set size (KB) = 4566624 + 0: The total amount of wall time = 953.457712 + 0: The maximum resident set size (KB) = 4597748 Test 181 regional_atmaq_debug_intel PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_c48_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_gnu Checking test 182 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6230,14 +6230,14 @@ Checking test 182 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 561.801781 -0: The maximum resident set size (KB) = 860308 +0: The total amount of wall time = 561.978146 +0: The maximum resident set size (KB) = 860524 Test 182 control_c48_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_gnu Checking test 183 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6248,14 +6248,14 @@ Checking test 183 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.888527 - 0: The maximum resident set size (KB) = 728132 + 0: The total amount of wall time = 123.123349 + 0: The maximum resident set size (KB) = 726696 Test 183 control_stochy_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_gnu Checking test 184 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6266,14 +6266,14 @@ Checking test 184 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.158787 - 0: The maximum resident set size (KB) = 730800 + 0: The total amount of wall time = 212.569943 + 0: The maximum resident set size (KB) = 729044 Test 184 control_ras_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_gnu Checking test 185 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6320,14 +6320,14 @@ Checking test 185 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.447966 - 0: The maximum resident set size (KB) = 1508876 + 0: The total amount of wall time = 205.442414 + 0: The maximum resident set size (KB) = 1507488 Test 185 control_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_p8_ugwpv1_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_gnu Checking test 186 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6374,14 +6374,14 @@ Checking test 186 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.997164 - 0: The maximum resident set size (KB) = 1511924 + 0: The total amount of wall time = 200.813328 + 0: The maximum resident set size (KB) = 1512828 Test 186 control_p8_ugwpv1_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_flake_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_gnu Checking test 187 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6392,14 +6392,14 @@ Checking test 187 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 252.499609 - 0: The maximum resident set size (KB) = 808196 + 0: The total amount of wall time = 251.028430 + 0: The maximum resident set size (KB) = 809992 Test 187 control_flake_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_gnu Checking test 188 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6446,14 +6446,14 @@ Checking test 188 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.564193 - 0: The maximum resident set size (KB) = 1086128 + 0: The total amount of wall time = 450.609031 + 0: The maximum resident set size (KB) = 1086096 Test 188 rap_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_decomp_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_gnu Checking test 189 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6500,14 +6500,14 @@ Checking test 189 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.081210 - 0: The maximum resident set size (KB) = 1084532 + 0: The total amount of wall time = 458.488267 + 0: The maximum resident set size (KB) = 1086220 Test 189 rap_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_gnu Checking test 190 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6554,14 +6554,14 @@ Checking test 190 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 417.730501 - 0: The maximum resident set size (KB) = 1148104 + 0: The total amount of wall time = 421.283563 + 0: The maximum resident set size (KB) = 1129256 Test 190 rap_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_gnu Checking test 191 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6600,14 +6600,14 @@ Checking test 191 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.112825 - 0: The maximum resident set size (KB) = 884008 + 0: The total amount of wall time = 227.808061 + 0: The maximum resident set size (KB) = 884168 Test 191 rap_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_gnu Checking test 192 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6654,14 +6654,14 @@ Checking test 192 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.021282 - 0: The maximum resident set size (KB) = 1084124 + 0: The total amount of wall time = 446.905865 + 0: The maximum resident set size (KB) = 1087004 Test 192 rap_sfcdiff_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_decomp_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_gnu Checking test 193 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6708,14 +6708,14 @@ Checking test 193 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.568989 - 0: The maximum resident set size (KB) = 1083960 + 0: The total amount of wall time = 458.020921 + 0: The maximum resident set size (KB) = 1086416 Test 193 rap_sfcdiff_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_sfcdiff_restart_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_gnu Checking test 194 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6754,14 +6754,14 @@ Checking test 194 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.922244 - 0: The maximum resident set size (KB) = 883532 + 0: The total amount of wall time = 333.250180 + 0: The maximum resident set size (KB) = 883156 Test 194 rap_sfcdiff_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_gnu Checking test 195 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6808,14 +6808,14 @@ Checking test 195 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.219739 - 0: The maximum resident set size (KB) = 1072036 + 0: The total amount of wall time = 229.697489 + 0: The maximum resident set size (KB) = 1074528 Test 195 hrrr_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_noqr_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_noqr_gnu Checking test 196 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6862,14 +6862,14 @@ Checking test 196 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.316069 - 0: The maximum resident set size (KB) = 1135288 + 0: The total amount of wall time = 230.255953 + 0: The maximum resident set size (KB) = 1139336 Test 196 hrrr_control_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_gnu Checking test 197 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6916,14 +6916,14 @@ Checking test 197 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.651400 - 0: The maximum resident set size (KB) = 1025636 + 0: The total amount of wall time = 207.651039 + 0: The maximum resident set size (KB) = 1043716 Test 197 hrrr_control_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_gnu Checking test 198 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6970,42 +6970,42 @@ Checking test 198 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.261012 - 0: The maximum resident set size (KB) = 1071120 + 0: The total amount of wall time = 227.287590 + 0: The maximum resident set size (KB) = 1081896 Test 198 hrrr_control_decomp_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_gnu Checking test 199 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.472680 - 0: The maximum resident set size (KB) = 881908 + 0: The total amount of wall time = 115.516912 + 0: The maximum resident set size (KB) = 882512 Test 199 hrrr_control_restart_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_noqr_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_noqr_gnu Checking test 200 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.710069 - 0: The maximum resident set size (KB) = 931908 + 0: The total amount of wall time = 113.521939 + 0: The maximum resident set size (KB) = 934456 Test 200 hrrr_control_restart_noqr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_gnu Checking test 201 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7052,224 +7052,224 @@ Checking test 201 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 437.525741 - 0: The maximum resident set size (KB) = 1081304 + 0: The total amount of wall time = 438.346028 + 0: The maximum resident set size (KB) = 1085940 Test 201 rrfs_v1beta_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_diag_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_gnu Checking test 202 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 65.754808 - 0: The maximum resident set size (KB) = 771752 + 0: The total amount of wall time = 64.560259 + 0: The maximum resident set size (KB) = 774620 Test 202 control_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/regional_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_gnu Checking test 203 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 368.099541 - 0: The maximum resident set size (KB) = 921468 + 0: The total amount of wall time = 367.432213 + 0: The maximum resident set size (KB) = 926380 Test 203 regional_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_gnu Checking test 204 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.197920 - 0: The maximum resident set size (KB) = 1096476 + 0: The total amount of wall time = 111.760079 + 0: The maximum resident set size (KB) = 1098156 Test 204 rap_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_gnu Checking test 205 hrrr_control_debug_gnu 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.118091 - 0: The maximum resident set size (KB) = 1089344 + 0: The total amount of wall time = 108.101135 + 0: The maximum resident set size (KB) = 1088160 Test 205 hrrr_control_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_gf_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_gnu Checking test 206 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.382121 - 0: The maximum resident set size (KB) = 1094152 + 0: The total amount of wall time = 109.228348 + 0: The maximum resident set size (KB) = 1095944 Test 206 hrrr_gf_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_c3_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_gnu Checking test 207 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.047710 - 0: The maximum resident set size (KB) = 1093744 + 0: The total amount of wall time = 108.986261 + 0: The maximum resident set size (KB) = 1092828 Test 207 hrrr_c3_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_gnu Checking test 208 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.968799 - 0: The maximum resident set size (KB) = 1269748 + 0: The total amount of wall time = 116.353311 + 0: The maximum resident set size (KB) = 1269224 Test 208 rap_diag_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.016118 - 0: The maximum resident set size (KB) = 1097820 + 0: The total amount of wall time = 175.568800 + 0: The maximum resident set size (KB) = 1094040 Test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_gnu Checking test 210 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.333784 - 0: The maximum resident set size (KB) = 1098696 + 0: The total amount of wall time = 110.519735 + 0: The maximum resident set size (KB) = 1096472 Test 210 rap_progcld_thompson_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_gnu Checking test 211 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.219334 - 0: The maximum resident set size (KB) = 1094716 + 0: The total amount of wall time = 109.664822 + 0: The maximum resident set size (KB) = 1093560 Test 211 rrfs_v1beta_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_ras_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_gnu Checking test 212 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 63.126530 - 0: The maximum resident set size (KB) = 728648 + 0: The total amount of wall time = 62.881807 + 0: The maximum resident set size (KB) = 727592 Test 212 control_ras_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_gnu Checking test 213 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.329098 - 0: The maximum resident set size (KB) = 719036 + 0: The total amount of wall time = 69.700142 + 0: The maximum resident set size (KB) = 719244 Test 213 control_stochy_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/control_debug_p8_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_gnu Checking test 214 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.649005 - 0: The maximum resident set size (KB) = 1505620 + 0: The total amount of wall time = 67.356416 + 0: The maximum resident set size (KB) = 1504580 Test 214 control_debug_p8_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_gnu Checking test 215 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.703333 - 0: The maximum resident set size (KB) = 1101072 + 0: The total amount of wall time = 109.236425 + 0: The maximum resident set size (KB) = 1096424 Test 215 rap_flake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_gnu Checking test 216 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.842551 - 0: The maximum resident set size (KB) = 1100304 + 0: The total amount of wall time = 122.126095 + 0: The maximum resident set size (KB) = 1098848 Test 216 rap_clm_lake_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/gnv1_c96_no_nest_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_gnu Checking test 217 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7310,14 +7310,14 @@ Checking test 217 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.259952 - 0: The maximum resident set size (KB) = 1102064 + 0: The total amount of wall time = 189.964902 + 0: The maximum resident set size (KB) = 1098112 Test 217 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_gnu Checking test 218 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7364,14 +7364,14 @@ Checking test 218 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 424.563139 - 0: The maximum resident set size (KB) = 963456 + 0: The total amount of wall time = 424.026492 + 0: The maximum resident set size (KB) = 964848 Test 218 rap_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_gnu Checking test 219 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7418,14 +7418,14 @@ Checking test 219 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.844494 - 0: The maximum resident set size (KB) = 953124 + 0: The total amount of wall time = 217.832194 + 0: The maximum resident set size (KB) = 953684 Test 219 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_2threads_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_gnu Checking test 220 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7472,14 +7472,14 @@ Checking test 220 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 392.056259 - 0: The maximum resident set size (KB) = 968936 + 0: The total amount of wall time = 391.667958 + 0: The maximum resident set size (KB) = 997812 Test 220 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_2threads_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_gnu Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7526,14 +7526,14 @@ Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.976765 - 0: The maximum resident set size (KB) = 876092 + 0: The total amount of wall time = 199.050604 + 0: The maximum resident set size (KB) = 878708 Test 221 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_decomp_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_gnu Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7580,14 +7580,14 @@ Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.161498 - 0: The maximum resident set size (KB) = 953140 + 0: The total amount of wall time = 222.044644 + 0: The maximum resident set size (KB) = 952888 Test 222 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_restart_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_gnu Checking test 223 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7626,28 +7626,28 @@ Checking test 223 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.206471 - 0: The maximum resident set size (KB) = 858236 + 0: The total amount of wall time = 317.090656 + 0: The maximum resident set size (KB) = 858080 Test 223 rap_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_restart_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_gnu Checking test 224 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.690552 - 0: The maximum resident set size (KB) = 862644 + 0: The total amount of wall time = 110.685069 + 0: The maximum resident set size (KB) = 856152 Test 224 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_control_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_gnu Checking test 225 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7663,40 +7663,40 @@ Checking test 225 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 142.009333 - 0: The maximum resident set size (KB) = 1267916 + 0: The total amount of wall time = 140.749904 + 0: The maximum resident set size (KB) = 1267240 Test 225 conus13km_control_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_2threads_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_gnu Checking test 226 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 56.926568 - 0: The maximum resident set size (KB) = 1172676 + 0: The total amount of wall time = 55.463281 + 0: The maximum resident set size (KB) = 1174488 Test 226 conus13km_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_gnu Checking test 227 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 79.546495 - 0: The maximum resident set size (KB) = 943172 + 0: The total amount of wall time = 78.317376 + 0: The maximum resident set size (KB) = 929236 Test 227 conus13km_restart_mismatch_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_gnu Checking test 228 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7743,42 +7743,42 @@ Checking test 228 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.156347 - 0: The maximum resident set size (KB) = 988684 + 0: The total amount of wall time = 253.040512 + 0: The maximum resident set size (KB) = 994068 Test 228 rap_control_dyn64_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_gnu Checking test 229 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.230408 - 0: The maximum resident set size (KB) = 973256 + 0: The total amount of wall time = 107.025441 + 0: The maximum resident set size (KB) = 974008 Test 229 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_gnu Checking test 230 hrrr_control_debug_dyn32_phy32_gnu 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.034854 - 0: The maximum resident set size (KB) = 965252 + 0: The total amount of wall time = 105.161131 + 0: The maximum resident set size (KB) = 966456 Test 230 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_gnu Checking test 231 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7792,14 +7792,14 @@ Checking test 231 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 312.554810 - 0: The maximum resident set size (KB) = 1280524 + 0: The total amount of wall time = 315.742595 + 0: The maximum resident set size (KB) = 1279968 Test 231 conus13km_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_qr_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_gnu Checking test 232 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7813,50 +7813,50 @@ Checking test 232 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 326.493219 - 0: The maximum resident set size (KB) = 954536 + 0: The total amount of wall time = 326.074337 + 0: The maximum resident set size (KB) = 966772 Test 232 conus13km_debug_qr_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_debug_2threads_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_gnu Checking test 233 conus13km_debug_2threads_gnu 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.583794 - 0: The maximum resident set size (KB) = 1188608 + 0: The total amount of wall time = 184.887508 + 0: The maximum resident set size (KB) = 1189540 Test 233 conus13km_debug_2threads_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_gnu Checking test 234 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 320.089852 - 0: The maximum resident set size (KB) = 1349640 + 0: The total amount of wall time = 316.370118 + 0: The maximum resident set size (KB) = 1349260 Test 234 conus13km_radar_tten_debug_gnu PASS baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_282633/rap_control_dyn64_phy32_debug_gnu +working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_gnu Checking test 235 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.143505 - 0: The maximum resident set size (KB) = 1001260 + 0: The total amount of wall time = 108.466745 + 0: The maximum resident set size (KB) = 1000468 Test 235 rap_control_dyn64_phy32_debug_gnu PASS @@ -7865,81 +7865,5 @@ FAILED TESTS: gnv1_nested_intel 147 failed in run_test REGRESSION TEST FAILED -Thu Feb 8 10:14:43 AM CST 2024 -Elapsed time: 01h:19m:51s. Have a nice day! -Thu Feb 8 10:52:05 AM CST 2024 -Start Regression test - -Testing UFSWM Hash: aff1f15a908e7012f85a13fc101150df644731a6 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 610 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_493623/gnv1_nested_intel -Checking test 001 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 236.187626 - 0: The maximum resident set size (KB) = 904672 - -Test 001 gnv1_nested_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Thu Feb 8 11:10:55 AM CST 2024 -Elapsed time: 00h:18m:51s. Have a nice day! +Thu Feb 8 19:13:28 CST 2024 +Elapsed time: 01h:20m:18s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index a676f307e6..d104ba27da 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,40 @@ -Thu Feb 8 15:46:23 UTC 2024 -Start Regression test - -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 377 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 2007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1868 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1813 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1963 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1824 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1829 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1861 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 497 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 492 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1872 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1967 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 290 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2568 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1842 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1916 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1912 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 s2s_intel elapsed time 1918 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 347 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2084 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2741 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2142 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 342 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 3026 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 368 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2186 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 311 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1817 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_debug_dyn32_intel elapsed time 367 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 2021 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1786 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1966 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1872 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1822 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1840 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 215 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 485 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1845 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1964 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2534 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1882 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 s2s_intel elapsed time 1870 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 2027 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 295 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 2723 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2279 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 2919 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5475 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2277 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel 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 wam_intel elapsed time 1741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_mixedmode_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +99,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 419.466187 - 0: The maximum resident set size (KB) = 1745660 + 0: The total amount of wall time = 417.598625 + 0: The maximum resident set size (KB) = 1746664 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +170,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1272.387013 - 0: The maximum resident set size (KB) = 1634244 + 0: The total amount of wall time = 1238.097157 + 0: The maximum resident set size (KB) = 1644756 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_gfsv17_iau_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -240,14 +223,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1307.730015 - 0: The maximum resident set size (KB) = 1852588 + 0: The total amount of wall time = 1330.746161 + 0: The maximum resident set size (KB) = 1851840 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -300,14 +283,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 604.970267 - 0: The maximum resident set size (KB) = 974904 + 0: The total amount of wall time = 590.575476 + 0: The maximum resident set size (KB) = 967860 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_gfsv17_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -371,18 +354,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1408.458188 - 0: The maximum resident set size (KB) = 1604616 + 0: The total amount of wall time = 1445.554274 + 0: The maximum resident set size (KB) = 1607720 Test 005 cpld_mpi_gfsv17_intel PASS -Test 006 cpld_debug_gfsv17_intel FAIL - -Test 006 cpld_debug_gfsv17_intel FAIL - baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -447,14 +426,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 459.700155 - 0: The maximum resident set size (KB) = 1793904 + 0: The total amount of wall time = 443.099353 + 0: The maximum resident set size (KB) = 1800900 Test 007 cpld_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8.v2.sfc_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -519,14 +498,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 459.718647 - 0: The maximum resident set size (KB) = 1792104 + 0: The total amount of wall time = 457.857445 + 0: The maximum resident set size (KB) = 1810948 Test 008 cpld_control_p8.v2.sfc_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -579,14 +558,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.361721 - 0: The maximum resident set size (KB) = 1711004 + 0: The total amount of wall time = 330.397053 + 0: The maximum resident set size (KB) = 1688380 Test 009 cpld_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_qr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -651,14 +630,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.136308 - 0: The maximum resident set size (KB) = 1823900 + 0: The total amount of wall time = 466.190185 + 0: The maximum resident set size (KB) = 1843488 Test 010 cpld_control_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_qr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -711,14 +690,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 275.405884 - 0: The maximum resident set size (KB) = 1716196 + 0: The total amount of wall time = 277.020730 + 0: The maximum resident set size (KB) = 1707008 Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_2threads_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +750,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.189824 - 0: The maximum resident set size (KB) = 2204316 + 0: The total amount of wall time = 449.399304 + 0: The maximum resident set size (KB) = 2188248 Test 012 cpld_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_decomp_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +810,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 475.023163 - 0: The maximum resident set size (KB) = 1772152 + 0: The total amount of wall time = 462.329677 + 0: The maximum resident set size (KB) = 1792224 Test 013 cpld_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +870,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.042637 - 0: The maximum resident set size (KB) = 1752848 + 0: The total amount of wall time = 382.894695 + 0: The maximum resident set size (KB) = 1755624 Test 014 cpld_mpi_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_ciceC_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -963,14 +942,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.503949 - 0: The maximum resident set size (KB) = 1815852 + 0: The total amount of wall time = 475.656668 + 0: The maximum resident set size (KB) = 1782680 -Test 015 cpld_control_ciceC_p8_intel PASS Tries: 2 +Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_s2sa_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1021,14 +1000,14 @@ Checking test 016 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 431.025455 - 0: The maximum resident set size (KB) = 1770700 + 0: The total amount of wall time = 435.462329 + 0: The maximum resident set size (KB) = 1774616 Test 016 cpld_s2sa_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1092,14 +1071,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.031740 - 0: The maximum resident set size (KB) = 1631016 + 0: The total amount of wall time = 397.346400 + 0: The maximum resident set size (KB) = 1637616 Test 017 cpld_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_nowave_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1161,14 +1140,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 331.624914 - 0: The maximum resident set size (KB) = 1690588 + 0: The total amount of wall time = 371.761917 + 0: The maximum resident set size (KB) = 1700940 Test 018 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_p8_intel Checking test 019 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1221,14 +1200,14 @@ Checking test 019 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 651.460873 - 0: The maximum resident set size (KB) = 1812068 + 0: The total amount of wall time = 642.641170 + 0: The maximum resident set size (KB) = 1812596 Test 019 cpld_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_noaero_p8_intel Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1280,14 +1259,14 @@ Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 420.133657 - 0: The maximum resident set size (KB) = 1657500 + 0: The total amount of wall time = 440.187541 + 0: The maximum resident set size (KB) = 1651300 Test 020 cpld_debug_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_noaero_p8_agrid_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1349,14 +1328,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 342.802816 - 0: The maximum resident set size (KB) = 1698216 + 0: The total amount of wall time = 371.197133 + 0: The maximum resident set size (KB) = 1694912 Test 021 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_c48_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1406,14 +1385,14 @@ Checking test 022 cpld_control_c48_intel 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 = 756.859279 - 0: The maximum resident set size (KB) = 2785576 + 0: The total amount of wall time = 766.704053 + 0: The maximum resident set size (KB) = 2783000 Test 022 cpld_control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_p8_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_faster_intel Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1478,14 +1457,14 @@ Checking test 023 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 432.502441 - 0: The maximum resident set size (KB) = 1801392 + 0: The total amount of wall time = 441.675255 + 0: The maximum resident set size (KB) = 1810020 Test 023 cpld_control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_control_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1549,14 +1528,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1265.871220 - 0: The maximum resident set size (KB) = 1665544 + 0: The total amount of wall time = 1240.111555 + 0: The maximum resident set size (KB) = 1677944 Test 024 cpld_control_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_restart_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1608,14 +1587,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 691.087439 - 0: The maximum resident set size (KB) = 1028600 + 0: The total amount of wall time = 596.241255 + 0: The maximum resident set size (KB) = 1020012 Test 025 cpld_restart_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_mpi_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1679,14 +1658,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1506.906020 - 0: The maximum resident set size (KB) = 1645664 + 0: The total amount of wall time = 1442.768959 + 0: The maximum resident set size (KB) = 1634632 Test 026 cpld_mpi_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/cpld_debug_pdlib_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1738,14 +1717,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1918.104167 - 0: The maximum resident set size (KB) = 1669624 + 0: The total amount of wall time = 1913.180413 + 0: The maximum resident set size (KB) = 1679084 Test 027 cpld_debug_pdlib_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_flake_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1756,14 +1735,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 265.778131 - 0: The maximum resident set size (KB) = 642580 + 0: The total amount of wall time = 285.289548 + 0: The maximum resident set size (KB) = 642168 Test 028 control_flake_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1790,36 +1769,36 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 184.503756 - 0: The maximum resident set size (KB) = 598624 + 0: The total amount of wall time = 201.700142 + 0: The maximum resident set size (KB) = 598164 Test 029 control_CubedSphereGrid_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc .........OK Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.345540 - 0: The maximum resident set size (KB) = 597556 + 0: The total amount of wall time = 206.658632 + 0: The maximum resident set size (KB) = 598076 Test 030 control_CubedSphereGrid_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_latlon_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1830,14 +1809,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.033016 - 0: The maximum resident set size (KB) = 592924 + 0: The total amount of wall time = 192.203586 + 0: The maximum resident set size (KB) = 588164 Test 031 control_latlon_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wrtGauss_netcdf_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1848,14 +1827,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.154400 - 0: The maximum resident set size (KB) = 595692 + 0: The total amount of wall time = 202.682711 + 0: The maximum resident set size (KB) = 592908 Test 032 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c48_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1894,14 +1873,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 610.278536 -0: The maximum resident set size (KB) = 849920 +0: The total amount of wall time = 605.899308 +0: The maximum resident set size (KB) = 839620 Test 033 control_c48_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c48.v2.sfc_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1940,14 +1919,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 612.944942 -0: The maximum resident set size (KB) = 848816 +0: The total amount of wall time = 604.762516 +0: The maximum resident set size (KB) = 845876 Test 034 control_c48.v2.sfc_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c192_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1958,14 +1937,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 739.191245 - 0: The maximum resident set size (KB) = 723972 + 0: The total amount of wall time = 747.144683 + 0: The maximum resident set size (KB) = 724176 Test 035 control_c192_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c384_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1976,14 +1955,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1124.458725 - 0: The maximum resident set size (KB) = 897212 + 0: The total amount of wall time = 1036.489847 + 0: The maximum resident set size (KB) = 898244 Test 036 control_c384_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_c384gdas_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2006,34 +1985,34 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 974.317072 - 0: The maximum resident set size (KB) = 1019400 + 0: The total amount of wall time = 863.081916 + 0: The maximum resident set size (KB) = 1013596 Test 037 control_c384gdas_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2044,28 +2023,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 122.234726 - 0: The maximum resident set size (KB) = 596060 + 0: The total amount of wall time = 126.430949 + 0: The maximum resident set size (KB) = 596656 Test 038 control_stochy_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 71.592905 - 0: The maximum resident set size (KB) = 438180 + 0: The total amount of wall time = 70.047857 + 0: The maximum resident set size (KB) = 432020 Test 039 control_stochy_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_lndp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2076,14 +2055,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.394264 - 0: The maximum resident set size (KB) = 598440 + 0: The total amount of wall time = 121.136305 + 0: The maximum resident set size (KB) = 602596 Test 040 control_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_iovr4_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2098,14 +2077,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.011441 - 0: The maximum resident set size (KB) = 595968 + 0: The total amount of wall time = 1393.365752 + 0: The maximum resident set size (KB) = 591436 Test 041 control_iovr4_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_iovr5_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2120,14 +2099,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.872429 - 0: The maximum resident set size (KB) = 594136 + 0: The total amount of wall time = 196.163161 + 0: The maximum resident set size (KB) = 591840 Test 042 control_iovr5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2174,14 +2153,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.327556 - 0: The maximum resident set size (KB) = 1574568 + 0: The total amount of wall time = 228.613032 + 0: The maximum resident set size (KB) = 1573544 Test 043 control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8.v2.sfc_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2228,14 +2207,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.714326 - 0: The maximum resident set size (KB) = 1557132 + 0: The total amount of wall time = 225.941040 + 0: The maximum resident set size (KB) = 1574172 Test 044 control_p8.v2.sfc_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_ugwpv1_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2282,14 +2261,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.776778 - 0: The maximum resident set size (KB) = 1561856 + 0: The total amount of wall time = 222.835795 + 0: The maximum resident set size (KB) = 1569424 Test 045 control_p8_ugwpv1_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2328,14 +2307,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 136.613574 - 0: The maximum resident set size (KB) = 808164 + 0: The total amount of wall time = 119.504831 + 0: The maximum resident set size (KB) = 808512 Test 046 control_restart_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_noqr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2382,14 +2361,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 229.711728 - 0: The maximum resident set size (KB) = 1557720 + 0: The total amount of wall time = 221.939531 + 0: The maximum resident set size (KB) = 1555528 Test 047 control_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_noqr_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2428,14 +2407,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.350110 - 0: The maximum resident set size (KB) = 834028 + 0: The total amount of wall time = 118.207898 + 0: The maximum resident set size (KB) = 833268 Test 048 control_restart_noqr_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_decomp_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2478,14 +2457,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 243.420009 - 0: The maximum resident set size (KB) = 1564152 + 0: The total amount of wall time = 237.613789 + 0: The maximum resident set size (KB) = 1564292 Test 049 control_decomp_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_2threads_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2528,14 +2507,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 221.138597 - 0: The maximum resident set size (KB) = 1663480 + 0: The total amount of wall time = 219.680945 + 0: The maximum resident set size (KB) = 1658808 Test 050 control_2threads_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_lndp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2554,14 +2533,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 415.047075 - 0: The maximum resident set size (KB) = 1574788 + 0: The total amount of wall time = 410.990355 + 0: The maximum resident set size (KB) = 1568508 Test 051 control_p8_lndp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_rrtmgp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2608,14 +2587,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 314.549451 - 0: The maximum resident set size (KB) = 1632420 + 0: The total amount of wall time = 324.274315 + 0: The maximum resident set size (KB) = 1618368 Test 052 control_p8_rrtmgp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_mynn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2662,14 +2641,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.063943 - 0: The maximum resident set size (KB) = 1569704 + 0: The total amount of wall time = 229.131373 + 0: The maximum resident set size (KB) = 1561660 Test 053 control_p8_mynn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/merra2_thompson_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2716,14 +2695,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.214696 - 0: The maximum resident set size (KB) = 1576940 + 0: The total amount of wall time = 264.924860 + 0: The maximum resident set size (KB) = 1564736 Test 054 merra2_thompson_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2734,28 +2713,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 457.406418 - 0: The maximum resident set size (KB) = 762032 + 0: The total amount of wall time = 429.991218 + 0: The maximum resident set size (KB) = 753972 Test 055 regional_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 257.595240 - 0: The maximum resident set size (KB) = 925836 + 0: The total amount of wall time = 219.814728 + 0: The maximum resident set size (KB) = 927712 Test 056 regional_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2766,14 +2745,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 467.123126 - 0: The maximum resident set size (KB) = 759500 + 0: The total amount of wall time = 451.522213 + 0: The maximum resident set size (KB) = 749776 Test 057 regional_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2784,28 +2763,28 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 281.361968 - 0: The maximum resident set size (KB) = 746764 + 0: The total amount of wall time = 266.918671 + 0: The maximum resident set size (KB) = 747508 Test 058 regional_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_netcdf_parallel_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_netcdf_parallel_intel Checking test 059 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 637.923117 - 0: The maximum resident set size (KB) = 751628 + 0: The total amount of wall time = 419.753136 + 0: The maximum resident set size (KB) = 757676 Test 059 regional_netcdf_parallel_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_2dwrtdecomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2dwrtdecomp_intel Checking test 060 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2816,14 +2795,14 @@ Checking test 060 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 438.509411 - 0: The maximum resident set size (KB) = 758164 + 0: The total amount of wall time = 423.971494 + 0: The maximum resident set size (KB) = 755008 Test 060 regional_2dwrtdecomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_intel Checking test 061 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2870,14 +2849,14 @@ Checking test 061 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 610.097536 - 0: The maximum resident set size (KB) = 967444 + 0: The total amount of wall time = 641.015804 + 0: The maximum resident set size (KB) = 968076 Test 061 rap_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_spp_sppt_shum_skeb_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_intel Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2888,14 +2867,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 359.540314 - 0: The maximum resident set size (KB) = 1214124 + 0: The total amount of wall time = 334.033315 + 0: The maximum resident set size (KB) = 1206652 Test 062 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_decomp_intel Checking test 063 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2942,14 +2921,14 @@ Checking test 063 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 647.847729 - 0: The maximum resident set size (KB) = 969040 + 0: The total amount of wall time = 630.055127 + 0: The maximum resident set size (KB) = 958116 Test 063 rap_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_intel Checking test 064 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2975,14 @@ Checking test 064 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 588.484777 - 0: The maximum resident set size (KB) = 1065544 + 0: The total amount of wall time = 571.681731 + 0: The maximum resident set size (KB) = 1064824 Test 064 rap_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_intel Checking test 065 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3042,14 +3021,14 @@ Checking test 065 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.485505 - 0: The maximum resident set size (KB) = 986500 + 0: The total amount of wall time = 308.813615 + 0: The maximum resident set size (KB) = 984572 Test 065 rap_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_intel Checking test 066 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3096,14 +3075,14 @@ Checking test 066 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 612.818264 - 0: The maximum resident set size (KB) = 990296 + 0: The total amount of wall time = 603.504721 + 0: The maximum resident set size (KB) = 969532 Test 066 rap_sfcdiff_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_decomp_intel Checking test 067 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3150,14 +3129,14 @@ Checking test 067 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 647.905688 - 0: The maximum resident set size (KB) = 977920 + 0: The total amount of wall time = 639.061808 + 0: The maximum resident set size (KB) = 979304 Test 067 rap_sfcdiff_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_restart_intel Checking test 068 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3196,14 +3175,14 @@ Checking test 068 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 564.712480 - 0: The maximum resident set size (KB) = 988620 + 0: The total amount of wall time = 443.003018 + 0: The maximum resident set size (KB) = 986380 Test 068 rap_sfcdiff_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_intel Checking test 069 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3250,14 +3229,14 @@ Checking test 069 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.412768 - 0: The maximum resident set size (KB) = 973680 + 0: The total amount of wall time = 306.543021 + 0: The maximum resident set size (KB) = 978476 Test 069 hrrr_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_decomp_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_intel Checking test 070 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3304,14 +3283,14 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 325.610991 - 0: The maximum resident set size (KB) = 970508 + 0: The total amount of wall time = 321.295290 + 0: The maximum resident set size (KB) = 966180 Test 070 hrrr_control_decomp_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_intel Checking test 071 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3358,28 +3337,28 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 291.740433 - 0: The maximum resident set size (KB) = 1050408 + 0: The total amount of wall time = 284.108260 + 0: The maximum resident set size (KB) = 1051444 Test 071 hrrr_control_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_restart_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_intel Checking test 072 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 187.194022 - 0: The maximum resident set size (KB) = 901532 + 0: The total amount of wall time = 167.645004 + 0: The maximum resident set size (KB) = 903024 Test 072 hrrr_control_restart_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1beta_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_intel Checking test 073 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3426,14 +3405,14 @@ Checking test 073 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 601.297435 - 0: The maximum resident set size (KB) = 979744 + 0: The total amount of wall time = 587.432205 + 0: The maximum resident set size (KB) = 979612 Test 073 rrfs_v1beta_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1nssl_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_intel Checking test 074 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3448,14 +3427,14 @@ Checking test 074 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 760.745462 - 0: The maximum resident set size (KB) = 1929836 + 0: The total amount of wall time = 718.128208 + 0: The maximum resident set size (KB) = 1926676 Test 074 rrfs_v1nssl_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1nssl_nohailnoccn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_nohailnoccn_intel Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3470,14 +3449,14 @@ Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 716.876976 - 0: The maximum resident set size (KB) = 1921780 + 0: The total amount of wall time = 723.775643 + 0: The maximum resident set size (KB) = 1921892 Test 075 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmg_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_intel Checking test 076 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3488,14 +3467,14 @@ Checking test 076 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 490.824048 - 0: The maximum resident set size (KB) = 686152 + 0: The total amount of wall time = 499.872926 + 0: The maximum resident set size (KB) = 682884 Test 076 control_csawmg_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmgt_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_intel Checking test 077 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3506,14 +3485,14 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 488.600418 - 0: The maximum resident set size (KB) = 685428 + 0: The total amount of wall time = 492.512279 + 0: The maximum resident set size (KB) = 685628 Test 077 control_csawmgt_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_ras_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_intel Checking test 078 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3524,26 +3503,26 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 266.781207 - 0: The maximum resident set size (KB) = 657044 + 0: The total amount of wall time = 259.949395 + 0: The maximum resident set size (KB) = 650968 Test 078 control_ras_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wam_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_intel Checking test 079 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 241.981180 - 0: The maximum resident set size (KB) = 494292 + 0: The total amount of wall time = 193.060547 + 0: The maximum resident set size (KB) = 497092 Test 079 control_wam_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_faster_intel Checking test 080 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3590,14 +3569,14 @@ Checking test 080 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.248048 - 0: The maximum resident set size (KB) = 1562972 + 0: The total amount of wall time = 207.283087 + 0: The maximum resident set size (KB) = 1566732 Test 080 control_p8_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_control_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_faster_intel Checking test 081 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3608,14 +3587,14 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 440.217469 - 0: The maximum resident set size (KB) = 752468 + 0: The total amount of wall time = 391.178962 + 0: The maximum resident set size (KB) = 756524 Test 081 regional_control_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_CubedSphereGrid_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_debug_intel Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3642,364 +3621,364 @@ Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 211.362755 - 0: The maximum resident set size (KB) = 751528 + 0: The total amount of wall time = 197.758614 + 0: The maximum resident set size (KB) = 750332 Test 082 control_CubedSphereGrid_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_debug_intel Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.313747 - 0: The maximum resident set size (KB) = 749740 + 0: The total amount of wall time = 201.756653 + 0: The maximum resident set size (KB) = 749352 Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_stochy_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_debug_intel Checking test 084 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.711630 - 0: The maximum resident set size (KB) = 755748 + 0: The total amount of wall time = 221.936950 + 0: The maximum resident set size (KB) = 757704 Test 084 control_stochy_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_lndp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_debug_intel Checking test 085 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.485050 - 0: The maximum resident set size (KB) = 755428 + 0: The total amount of wall time = 197.491477 + 0: The maximum resident set size (KB) = 751528 Test 085 control_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmg_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_debug_intel Checking test 086 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 338.432189 - 0: The maximum resident set size (KB) = 797380 + 0: The total amount of wall time = 376.610104 + 0: The maximum resident set size (KB) = 799636 Test 086 control_csawmg_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_csawmgt_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_debug_intel Checking test 087 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 336.750128 - 0: The maximum resident set size (KB) = 797028 + 0: The total amount of wall time = 307.314693 + 0: The maximum resident set size (KB) = 800548 Test 087 control_csawmgt_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_ras_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_debug_intel Checking test 088 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 208.231344 - 0: The maximum resident set size (KB) = 762160 + 0: The total amount of wall time = 280.164043 + 0: The maximum resident set size (KB) = 759824 Test 088 control_ras_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_diag_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_diag_debug_intel Checking test 089 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.950116 - 0: The maximum resident set size (KB) = 808072 + 0: The total amount of wall time = 264.738466 + 0: The maximum resident set size (KB) = 808968 Test 089 control_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_debug_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_debug_p8_intel Checking test 090 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.820649 - 0: The maximum resident set size (KB) = 1573912 + 0: The total amount of wall time = 213.269743 + 0: The maximum resident set size (KB) = 1574496 Test 090 control_debug_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_debug_intel Checking test 091 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1320.204556 - 0: The maximum resident set size (KB) = 771704 + 0: The total amount of wall time = 1293.778089 + 0: The maximum resident set size (KB) = 776296 Test 091 regional_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_intel Checking test 092 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 412.394126 - 0: The maximum resident set size (KB) = 1139088 + 0: The total amount of wall time = 361.838602 + 0: The maximum resident set size (KB) = 1147756 Test 092 rap_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_intel Checking test 093 hrrr_control_debug_intel 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.971701 - 0: The maximum resident set size (KB) = 1141676 + 0: The total amount of wall time = 352.105955 + 0: The maximum resident set size (KB) = 1146008 Test 093 hrrr_control_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_gf_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_gf_debug_intel Checking test 094 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 384.144308 - 0: The maximum resident set size (KB) = 1134896 + 0: The total amount of wall time = 357.784158 + 0: The maximum resident set size (KB) = 1131788 Test 094 hrrr_gf_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_c3_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_c3_debug_intel Checking test 095 hrrr_c3_debug_intel 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.292742 - 0: The maximum resident set size (KB) = 1141004 + 0: The total amount of wall time = 354.417002 + 0: The maximum resident set size (KB) = 1152760 Test 095 hrrr_c3_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_unified_drag_suite_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_drag_suite_debug_intel Checking test 096 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.345896 - 0: The maximum resident set size (KB) = 1127784 + 0: The total amount of wall time = 358.600282 + 0: The maximum resident set size (KB) = 1141192 Test 096 rap_unified_drag_suite_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_diag_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_diag_debug_intel Checking test 097 rap_diag_debug_intel 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.839704 - 0: The maximum resident set size (KB) = 1233016 + 0: The total amount of wall time = 379.489750 + 0: The maximum resident set size (KB) = 1226544 Test 097 rap_diag_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_cires_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_cires_ugwp_debug_intel Checking test 098 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.737180 - 0: The maximum resident set size (KB) = 1132164 + 0: The total amount of wall time = 366.378069 + 0: The maximum resident set size (KB) = 1148512 Test 098 rap_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_unified_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_ugwp_debug_intel Checking test 099 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.158771 - 0: The maximum resident set size (KB) = 1148900 + 0: The total amount of wall time = 364.869012 + 0: The maximum resident set size (KB) = 1138680 Test 099 rap_unified_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_lndp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_lndp_debug_intel Checking test 100 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 414.412666 - 0: The maximum resident set size (KB) = 1134836 + 0: The total amount of wall time = 362.196931 + 0: The maximum resident set size (KB) = 1146640 Test 100 rap_lndp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_progcld_thompson_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_progcld_thompson_debug_intel Checking test 101 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 402.580284 - 0: The maximum resident set size (KB) = 1140684 + 0: The total amount of wall time = 362.841576 + 0: The maximum resident set size (KB) = 1149568 Test 101 rap_progcld_thompson_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_noah_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_debug_intel Checking test 102 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 397.754075 - 0: The maximum resident set size (KB) = 1138404 + 0: The total amount of wall time = 356.251145 + 0: The maximum resident set size (KB) = 1148052 Test 102 rap_noah_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_sfcdiff_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_debug_intel Checking test 103 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 420.985075 - 0: The maximum resident set size (KB) = 1127668 + 0: The total amount of wall time = 370.731212 + 0: The maximum resident set size (KB) = 1137804 Test 103 rap_sfcdiff_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 622.675988 - 0: The maximum resident set size (KB) = 1135428 + 0: The total amount of wall time = 595.297882 + 0: The maximum resident set size (KB) = 1128252 Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rrfs_v1beta_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_debug_intel Checking test 105 rrfs_v1beta_debug_intel 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.983416 - 0: The maximum resident set size (KB) = 1132500 + 0: The total amount of wall time = 355.407557 + 0: The maximum resident set size (KB) = 1122084 Test 105 rrfs_v1beta_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_clm_lake_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_clm_lake_debug_intel Checking test 106 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 500.533720 - 0: The maximum resident set size (KB) = 1147348 + 0: The total amount of wall time = 433.994598 + 0: The maximum resident set size (KB) = 1145636 Test 106 rap_clm_lake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_flake_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_flake_debug_intel Checking test 107 rap_flake_debug_intel 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.260984 - 0: The maximum resident set size (KB) = 1134312 + 0: The total amount of wall time = 355.874789 + 0: The maximum resident set size (KB) = 1142260 Test 107 rap_flake_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/gnv1_c96_no_nest_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_c96_no_nest_debug_intel Checking test 108 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4040,26 +4019,26 @@ Checking test 108 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 636.570167 - 0: The maximum resident set size (KB) = 1147328 + 0: The total amount of wall time = 618.361430 + 0: The maximum resident set size (KB) = 1147508 Test 108 gnv1_c96_no_nest_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_wam_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_debug_intel Checking test 109 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 359.733480 - 0: The maximum resident set size (KB) = 431712 + 0: The total amount of wall time = 362.721922 + 0: The maximum resident set size (KB) = 431872 Test 109 control_wam_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4070,14 +4049,14 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 315.699958 - 0: The maximum resident set size (KB) = 1069572 + 0: The total amount of wall time = 307.133271 + 0: The maximum resident set size (KB) = 1080296 Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn32_phy32_intel Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4124,14 +4103,14 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 492.326583 - 0: The maximum resident set size (KB) = 888276 + 0: The total amount of wall time = 500.959708 + 0: The maximum resident set size (KB) = 902444 Test 111 rap_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_dyn32_phy32_intel Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4178,14 +4157,14 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 258.400150 - 0: The maximum resident set size (KB) = 860660 + 0: The total amount of wall time = 265.466812 + 0: The maximum resident set size (KB) = 868560 Test 112 hrrr_control_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_2threads_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_dyn32_phy32_intel Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4232,14 +4211,14 @@ Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.018652 - 0: The maximum resident set size (KB) = 946184 + 0: The total amount of wall time = 484.145173 + 0: The maximum resident set size (KB) = 935308 Test 113 rap_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_2threads_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_dyn32_phy32_intel Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4286,14 +4265,14 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.068344 - 0: The maximum resident set size (KB) = 908712 + 0: The total amount of wall time = 235.668838 + 0: The maximum resident set size (KB) = 903052 Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_decomp_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_dyn32_phy32_intel Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4340,14 +4319,14 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.227455 - 0: The maximum resident set size (KB) = 841436 + 0: The total amount of wall time = 274.473166 + 0: The maximum resident set size (KB) = 851364 Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_restart_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_dyn32_phy32_intel Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4386,28 +4365,28 @@ Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.989915 - 0: The maximum resident set size (KB) = 895280 + 0: The total amount of wall time = 382.073550 + 0: The maximum resident set size (KB) = 898488 Test 116 rap_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_restart_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_dyn32_phy32_intel Checking test 117 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 133.425572 - 0: The maximum resident set size (KB) = 839884 + 0: The total amount of wall time = 142.832455 + 0: The maximum resident set size (KB) = 844956 Test 117 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_control_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_control_intel Checking test 118 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4423,40 +4402,40 @@ Checking test 118 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 157.001414 - 0: The maximum resident set size (KB) = 1091696 + 0: The total amount of wall time = 165.856415 + 0: The maximum resident set size (KB) = 1095036 Test 118 conus13km_control_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_2threads_intel Checking test 119 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.047240 - 0: The maximum resident set size (KB) = 1041272 + 0: The total amount of wall time = 75.806853 + 0: The maximum resident set size (KB) = 1045708 Test 119 conus13km_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_restart_mismatch_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_restart_mismatch_intel Checking test 120 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 84.616591 - 0: The maximum resident set size (KB) = 1011036 + 0: The total amount of wall time = 92.105403 + 0: The maximum resident set size (KB) = 1013256 Test 120 conus13km_restart_mismatch_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn64_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_intel Checking test 121 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4503,42 +4482,42 @@ Checking test 121 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 323.723216 - 0: The maximum resident set size (KB) = 895060 + 0: The total amount of wall time = 321.830459 + 0: The maximum resident set size (KB) = 890804 Test 121 rap_control_dyn64_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_debug_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_dyn32_phy32_intel Checking test 122 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.162945 - 0: The maximum resident set size (KB) = 1017040 + 0: The total amount of wall time = 355.354090 + 0: The maximum resident set size (KB) = 1009812 Test 122 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hrrr_control_debug_dyn32_phy32_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_dyn32_phy32_intel Checking test 123 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.442231 - 0: The maximum resident set size (KB) = 1006316 + 0: The total amount of wall time = 350.902322 + 0: The maximum resident set size (KB) = 1006496 Test 123 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_intel Checking test 124 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4552,14 +4531,14 @@ Checking test 124 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1092.506712 - 0: The maximum resident set size (KB) = 1128048 + 0: The total amount of wall time = 1107.364253 + 0: The maximum resident set size (KB) = 1129452 Test 124 conus13km_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_qr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_qr_intel Checking test 125 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4573,81 +4552,81 @@ Checking test 125 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1094.715932 - 0: The maximum resident set size (KB) = 844840 + 0: The total amount of wall time = 1110.480045 + 0: The maximum resident set size (KB) = 866948 Test 125 conus13km_debug_qr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_debug_2threads_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_2threads_intel Checking test 126 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 632.574106 - 0: The maximum resident set size (KB) = 1076568 + 0: The total amount of wall time = 637.560550 + 0: The maximum resident set size (KB) = 1078496 Test 126 conus13km_debug_2threads_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/conus13km_radar_tten_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_radar_tten_debug_intel Checking test 127 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1092.346453 - 0: The maximum resident set size (KB) = 1188812 + 0: The total amount of wall time = 1099.356619 + 0: The maximum resident set size (KB) = 1188200 Test 127 conus13km_radar_tten_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/rap_control_dyn64_phy32_debug_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_debug_intel Checking test 128 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.299285 - 0: The maximum resident set size (KB) = 1063104 + 0: The total amount of wall time = 360.325797 + 0: The maximum resident set size (KB) = 1057176 Test 128 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_intel Checking test 129 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 415.161700 - 0: The maximum resident set size (KB) = 710044 + 0: The total amount of wall time = 448.402913 + 0: The maximum resident set size (KB) = 713116 Test 129 hafs_regional_atm_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_thompson_gfdlsf_intel Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 396.476427 - 0: The maximum resident set size (KB) = 1082184 + 0: The total amount of wall time = 419.088800 + 0: The maximum resident set size (KB) = 1075140 Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_ocn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_intel Checking test 131 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4656,14 +4635,14 @@ Checking test 131 hafs_regional_atm_ocn_intel 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 = 543.913780 - 0: The maximum resident set size (KB) = 760212 + 0: The total amount of wall time = 575.033300 + 0: The maximum resident set size (KB) = 770572 Test 131 hafs_regional_atm_ocn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_wav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_wav_intel Checking test 132 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4672,14 +4651,14 @@ Checking test 132 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 948.970014 - 0: The maximum resident set size (KB) = 800416 + 0: The total amount of wall time = 976.562276 + 0: The maximum resident set size (KB) = 792536 Test 132 hafs_regional_atm_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_atm_ocn_wav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_wav_intel Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4690,14 +4669,14 @@ Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1068.321048 - 0: The maximum resident set size (KB) = 815872 + 0: The total amount of wall time = 1078.231692 + 0: The maximum resident set size (KB) = 811952 Test 133 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/gnv1_nested_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_nested_intel Checking test 134 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4707,28 +4686,28 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK @@ -4744,14 +4723,14 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 365.957252 - 0: The maximum resident set size (KB) = 772940 + 0: The total amount of wall time = 358.577272 + 0: The maximum resident set size (KB) = 767144 Test 134 gnv1_nested_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_docn_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_intel Checking test 135 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4759,14 +4738,14 @@ Checking test 135 hafs_regional_docn_intel 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 = 486.948595 - 0: The maximum resident set size (KB) = 762132 + 0: The total amount of wall time = 517.975084 + 0: The maximum resident set size (KB) = 764020 Test 135 hafs_regional_docn_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/hafs_regional_docn_oisst_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_oisst_intel Checking test 136 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4774,118 +4753,118 @@ Checking test 136 hafs_regional_docn_oisst_intel 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 = 519.498295 - 0: The maximum resident set size (KB) = 749208 + 0: The total amount of wall time = 510.845201 + 0: The maximum resident set size (KB) = 752572 Test 136 hafs_regional_docn_oisst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_intel Checking test 137 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 202.854371 - 0: The maximum resident set size (KB) = 1036812 + 0: The total amount of wall time = 205.084611 + 0: The maximum resident set size (KB) = 1038208 Test 137 datm_cdeps_control_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_restart_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_restart_cfsr_intel Checking test 138 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 123.553902 - 0: The maximum resident set size (KB) = 1010096 + 0: The total amount of wall time = 122.927646 + 0: The maximum resident set size (KB) = 1008848 Test 138 datm_cdeps_restart_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_gefs_intel Checking test 139 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 196.552702 - 0: The maximum resident set size (KB) = 911324 + 0: The total amount of wall time = 204.348850 + 0: The maximum resident set size (KB) = 907984 Test 139 datm_cdeps_control_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_iau_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_iau_gefs_intel Checking test 140 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.814502 - 0: The maximum resident set size (KB) = 912628 + 0: The total amount of wall time = 206.087845 + 0: The maximum resident set size (KB) = 912576 Test 140 datm_cdeps_iau_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_stochy_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_stochy_gefs_intel Checking test 141 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.959901 - 0: The maximum resident set size (KB) = 912120 + 0: The total amount of wall time = 204.808442 + 0: The maximum resident set size (KB) = 911044 Test 141 datm_cdeps_stochy_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_ciceC_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_ciceC_cfsr_intel Checking test 142 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.511636 - 0: The maximum resident set size (KB) = 1040232 + 0: The total amount of wall time = 206.940846 + 0: The maximum resident set size (KB) = 1042756 Test 142 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_bulk_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_cfsr_intel Checking test 143 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.511114 - 0: The maximum resident set size (KB) = 1042048 + 0: The total amount of wall time = 208.690824 + 0: The maximum resident set size (KB) = 1033488 Test 143 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_bulk_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_gefs_intel Checking test 144 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 186.200450 - 0: The maximum resident set size (KB) = 915604 + 0: The total amount of wall time = 201.587131 + 0: The maximum resident set size (KB) = 911468 Test 144 datm_cdeps_bulk_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_mx025_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_cfsr_intel Checking test 145 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4894,14 +4873,14 @@ Checking test 145 datm_cdeps_mx025_cfsr_intel 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 = 529.774122 - 0: The maximum resident set size (KB) = 880788 + 0: The total amount of wall time = 474.570408 + 0: The maximum resident set size (KB) = 877516 Test 145 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_mx025_gefs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_gefs_intel Checking test 146 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4910,77 +4889,77 @@ Checking test 146 datm_cdeps_mx025_gefs_intel 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 = 469.175957 - 0: The maximum resident set size (KB) = 838632 + 0: The total amount of wall time = 472.764301 + 0: The maximum resident set size (KB) = 829076 Test 146 datm_cdeps_mx025_gefs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_multiple_files_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_multiple_files_cfsr_intel Checking test 147 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.911044 - 0: The maximum resident set size (KB) = 1039072 + 0: The total amount of wall time = 204.967265 + 0: The maximum resident set size (KB) = 1044896 Test 147 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_3072x1536_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_3072x1536_cfsr_intel Checking test 148 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 286.455759 - 0: The maximum resident set size (KB) = 2390100 + 0: The total amount of wall time = 325.277481 + 0: The maximum resident set size (KB) = 2387176 Test 148 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_gfs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_gfs_intel Checking test 149 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 290.255899 - 0: The maximum resident set size (KB) = 2348952 + 0: The total amount of wall time = 295.452555 + 0: The maximum resident set size (KB) = 2385104 Test 149 datm_cdeps_gfs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_debug_cfsr_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_debug_cfsr_intel Checking test 150 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 464.668999 - 0: The maximum resident set size (KB) = 980696 + 0: The total amount of wall time = 473.479611 + 0: The maximum resident set size (KB) = 989492 Test 150 datm_cdeps_debug_cfsr_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_control_cfsr_faster_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_faster_intel Checking test 151 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.159634 - 0: The maximum resident set size (KB) = 1041940 + 0: The total amount of wall time = 203.070149 + 0: The maximum resident set size (KB) = 1040356 Test 151 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_gswp3_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_gswp3_intel Checking test 152 datm_cdeps_lnd_gswp3_intel 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 @@ -4989,14 +4968,14 @@ Checking test 152 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 79.209631 - 0: The maximum resident set size (KB) = 224600 + 0: The total amount of wall time = 83.206067 + 0: The maximum resident set size (KB) = 227632 Test 152 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_era5_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_intel Checking test 153 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5005,14 +4984,14 @@ Checking test 153 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 68.544359 - 0: The maximum resident set size (KB) = 248888 + 0: The total amount of wall time = 67.461536 + 0: The maximum resident set size (KB) = 249512 Test 153 datm_cdeps_lnd_era5_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/datm_cdeps_lnd_era5_rst_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_rst_intel Checking test 154 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5021,14 +5000,14 @@ Checking test 154 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 43.573184 - 0: The maximum resident set size (KB) = 246788 + 0: The total amount of wall time = 35.689501 + 0: The maximum resident set size (KB) = 246412 Test 154 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_atmlnd_sbs_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_sbs_intel Checking test 155 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5117,14 +5096,14 @@ Checking test 155 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 614.389627 - 0: The maximum resident set size (KB) = 1575892 + 0: The total amount of wall time = 673.173633 + 0: The maximum resident set size (KB) = 1575508 Test 155 control_p8_atmlnd_sbs_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_p8_atmlnd_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_intel Checking test 156 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5213,14 +5192,14 @@ Checking test 156 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 621.053022 - 0: The maximum resident set size (KB) = 1576120 + 0: The total amount of wall time = 678.583389 + 0: The maximum resident set size (KB) = 1593852 Test 156 control_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_restart_p8_atmlnd_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_atmlnd_intel Checking test 157 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5241,14 +5220,14 @@ Checking test 157 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 306.682487 - 0: The maximum resident set size (KB) = 852240 + 0: The total amount of wall time = 311.978616 + 0: The maximum resident set size (KB) = 860248 Test 157 control_restart_p8_atmlnd_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmwav_control_noaero_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmwav_control_noaero_p8_intel Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5291,14 +5270,14 @@ Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 130.054074 - 0: The maximum resident set size (KB) = 1589052 + 0: The total amount of wall time = 132.181556 + 0: The maximum resident set size (KB) = 1577344 Test 158 atmwav_control_noaero_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/control_atmwav_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_atmwav_intel Checking test 159 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5342,18 +5321,65 @@ Checking test 159 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 124.585846 - 0: The maximum resident set size (KB) = 597616 + 0: The total amount of wall time = 121.718619 + 0: The maximum resident set size (KB) = 602416 Test 159 control_atmwav_intel PASS -Test 160 atmaero_control_p8_intel FAIL -Test 160 atmaero_control_p8_intel FAIL +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_intel +Checking test 160 atmaero_control_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 312.460434 + 0: The maximum resident set size (KB) = 1657076 + +Test 160 atmaero_control_p8_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmaero_control_p8_rad_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_intel Checking test 161 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5397,14 +5423,14 @@ Checking test 161 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 376.854059 - 0: The maximum resident set size (KB) = 1689624 + 0: The total amount of wall time = 374.691250 + 0: The maximum resident set size (KB) = 1702356 Test 161 atmaero_control_p8_rad_intel PASS baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_306721/atmaero_control_p8_rad_micro_intel +working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_micro_intel Checking test 162 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5448,40 +5474,32 @@ Checking test 162 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.723526 - 0: The maximum resident set size (KB) = 1714264 + 0: The total amount of wall time = 400.031312 + 0: The maximum resident set size (KB) = 1711716 Test 162 atmaero_control_p8_rad_micro_intel PASS -FAILED TESTS: -cpld_debug_gfsv17_intel 006 failed in run_test -atmaero_control_p8_intel 160 failed in run_test - -REGRESSION TEST FAILED -Thu Feb 8 20:24:43 UTC 2024 -Elapsed time: 04h:38m:21s. Have a nice day! -Thu Feb 8 20:28:27 UTC 2024 +Fri Feb 9 16:26:20 UTC 2024 Start Regression test -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 +Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) + c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 1783 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 326 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 362 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_254345/cpld_debug_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_73249/cpld_debug_gfsv17_intel Checking test 001 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -5533,63 +5551,12 @@ Checking test 001 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1795.087507 - 0: The maximum resident set size (KB) = 1648396 + 0: The total amount of wall time = 1809.368354 + 0: The maximum resident set size (KB) = 1649888 Test 001 cpld_debug_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_254345/atmaero_control_p8_intel -Checking test 002 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 304.244533 - 0: The maximum resident set size (KB) = 1670716 - -Test 002 atmaero_control_p8_intel PASS - - REGRESSION TEST WAS SUCCESSFUL -Thu Feb 8 21:09:48 UTC 2024 -Elapsed time: 00h:41m:22s. Have a nice day! +Fri Feb 9 17:38:33 UTC 2024 +Elapsed time: 01h:12m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 783f3a344d..97d126f2f7 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,62 +1,62 @@ -Thu Feb 8 08:58:12 CST 2024 +Thu Feb 8 20:42:14 CST 2024 Start Regression test -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 +Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) + c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 199 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 750 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 705 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 687 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 662 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 213 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 492 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 396 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 77 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 681 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 759 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 221 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 757 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 771 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 850 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 732 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 772 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 878 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 316 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1090 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 321 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1060 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 855 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 305 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 881 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 288 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1004 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 631 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 642 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 642 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 277 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 837 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 699 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 469 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 374 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 71 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 717 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 829 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 253 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 793 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 748 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 795 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 770 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 818 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 883 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1112 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 929 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 271 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 854 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1036 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 295.531409 - 0: The maximum resident set size (KB) = 3181680 + 0: The total amount of wall time = 298.039066 + 0: The maximum resident set size (KB) = 3180508 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 972.717260 - 0: The maximum resident set size (KB) = 1737832 + 0: The total amount of wall time = 974.208501 + 0: The maximum resident set size (KB) = 1707908 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1036.889930 - 0: The maximum resident set size (KB) = 2029272 + 0: The total amount of wall time = 1033.016947 + 0: The maximum resident set size (KB) = 2025296 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_gfsv17_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.266575 - 0: The maximum resident set size (KB) = 1105484 + 0: The total amount of wall time = 472.712040 + 0: The maximum resident set size (KB) = 1111192 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_gfsv17_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1095.342974 - 0: The maximum resident set size (KB) = 1654824 + 0: The total amount of wall time = 1198.694967 + 0: The maximum resident set size (KB) = 1646924 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1372.125849 - 0: The maximum resident set size (KB) = 1688488 + 0: The total amount of wall time = 1361.811780 + 0: The maximum resident set size (KB) = 1685880 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.095707 - 0: The maximum resident set size (KB) = 3215592 + 0: The total amount of wall time = 331.470748 + 0: The maximum resident set size (KB) = 3216240 Test 007 cpld_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.383970 - 0: The maximum resident set size (KB) = 3209964 + 0: The total amount of wall time = 329.518986 + 0: The maximum resident set size (KB) = 3207432 Test 008 cpld_control_p8.v2.sfc_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 187.362371 - 0: The maximum resident set size (KB) = 3250844 + 0: The total amount of wall time = 189.689573 + 0: The maximum resident set size (KB) = 3256608 Test 009 cpld_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_qr_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 323.703547 - 0: The maximum resident set size (KB) = 3237888 + 0: The total amount of wall time = 333.245525 + 0: The maximum resident set size (KB) = 3236120 Test 010 cpld_control_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_qr_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.101518 - 0: The maximum resident set size (KB) = 3261784 + 0: The total amount of wall time = 189.662642 + 0: The maximum resident set size (KB) = 3270020 Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_2threads_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.190437 - 0: The maximum resident set size (KB) = 3554292 + 0: The total amount of wall time = 351.962267 + 0: The maximum resident set size (KB) = 3553924 Test 012 cpld_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_decomp_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.639443 - 0: The maximum resident set size (KB) = 3208708 + 0: The total amount of wall time = 331.356860 + 0: The maximum resident set size (KB) = 3200692 Test 013 cpld_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 266.925501 - 0: The maximum resident set size (KB) = 3062824 + 0: The total amount of wall time = 271.209812 + 0: The maximum resident set size (KB) = 3065708 Test 014 cpld_mpi_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.345357 - 0: The maximum resident set size (KB) = 3212136 + 0: The total amount of wall time = 327.777753 + 0: The maximum resident set size (KB) = 3212436 Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 576.825323 - 0: The maximum resident set size (KB) = 3335944 + 0: The total amount of wall time = 588.636094 + 0: The maximum resident set size (KB) = 3339972 Test 016 cpld_control_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_c192_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 355.755081 - 0: The maximum resident set size (KB) = 3620040 + 0: The total amount of wall time = 362.148764 + 0: The maximum resident set size (KB) = 3625788 Test 017 cpld_restart_c192_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 636.044712 - 0: The maximum resident set size (KB) = 4122260 + 0: The total amount of wall time = 633.746221 + 0: The maximum resident set size (KB) = 4129220 Test 018 cpld_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_bmark_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 382.879580 - 0: The maximum resident set size (KB) = 4370596 + 0: The total amount of wall time = 379.662269 + 0: The maximum resident set size (KB) = 4373184 Test 019 cpld_restart_bmark_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_s2sa_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 308.473946 - 0: The maximum resident set size (KB) = 3173064 + 0: The total amount of wall time = 313.134752 + 0: The maximum resident set size (KB) = 3178564 Test 020 cpld_s2sa_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.157650 - 0: The maximum resident set size (KB) = 1740300 + 0: The total amount of wall time = 253.613545 + 0: The maximum resident set size (KB) = 1737436 Test 021 cpld_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_nowave_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 249.449168 - 0: The maximum resident set size (KB) = 1785088 + 0: The total amount of wall time = 251.065952 + 0: The maximum resident set size (KB) = 1780032 Test 022 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 496.179319 - 0: The maximum resident set size (KB) = 3249868 + 0: The total amount of wall time = 506.121689 + 0: The maximum resident set size (KB) = 3244880 Test 023 cpld_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.738981 - 0: The maximum resident set size (KB) = 1748116 + 0: The total amount of wall time = 337.774736 + 0: The maximum resident set size (KB) = 1752380 Test 024 cpld_debug_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 249.529783 - 0: The maximum resident set size (KB) = 1772184 + 0: The total amount of wall time = 248.786187 + 0: The maximum resident set size (KB) = 1782164 Test 025 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_c48_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel 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 = 471.642374 - 0: The maximum resident set size (KB) = 2828716 + 0: The total amount of wall time = 473.644494 + 0: The maximum resident set size (KB) = 2830328 Test 026 cpld_control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.704800 - 0: The maximum resident set size (KB) = 3204164 + 0: The total amount of wall time = 306.542927 + 0: The maximum resident set size (KB) = 3149508 Test 027 cpld_control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1066.581337 - 0: The maximum resident set size (KB) = 1774328 + 0: The total amount of wall time = 968.732853 + 0: The maximum resident set size (KB) = 1779372 Test 028 cpld_control_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_restart_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 473.941834 - 0: The maximum resident set size (KB) = 1178848 + 0: The total amount of wall time = 470.943603 + 0: The maximum resident set size (KB) = 1175700 Test 029 cpld_restart_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_mpi_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1093.224118 - 0: The maximum resident set size (KB) = 1677952 + 0: The total amount of wall time = 1093.114881 + 0: The maximum resident set size (KB) = 1683132 Test 030 cpld_mpi_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1501.564132 - 0: The maximum resident set size (KB) = 1728284 + 0: The total amount of wall time = 1481.760940 + 0: The maximum resident set size (KB) = 1719788 Test 031 cpld_debug_pdlib_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_flake_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.007873 - 0: The maximum resident set size (KB) = 700664 + 0: The total amount of wall time = 197.951444 + 0: The maximum resident set size (KB) = 702668 Test 032 control_flake_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2080,16 +2080,16 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.782472 - 0: The maximum resident set size (KB) = 646916 + 0: The total amount of wall time = 137.507904 + 0: The maximum resident set size (KB) = 648040 Test 033 control_CubedSphereGrid_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.936098 - 0: The maximum resident set size (KB) = 654516 + 0: The total amount of wall time = 142.481581 + 0: The maximum resident set size (KB) = 659324 Test 034 control_CubedSphereGrid_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_latlon_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.465317 - 0: The maximum resident set size (KB) = 649980 + 0: The total amount of wall time = 140.508980 + 0: The maximum resident set size (KB) = 653252 Test 035 control_latlon_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.252370 - 0: The maximum resident set size (KB) = 648024 + 0: The total amount of wall time = 141.276714 + 0: The maximum resident set size (KB) = 651556 Test 036 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c48_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 348.276384 -0: The maximum resident set size (KB) = 874608 +0: The total amount of wall time = 349.676307 +0: The maximum resident set size (KB) = 872904 Test 037 control_c48_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c48.v2.sfc_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 346.796887 -0: The maximum resident set size (KB) = 871508 +0: The total amount of wall time = 351.353319 +0: The maximum resident set size (KB) = 871584 Test 038 control_c48.v2.sfc_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c192_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 531.187913 - 0: The maximum resident set size (KB) = 857336 + 0: The total amount of wall time = 532.084365 + 0: The maximum resident set size (KB) = 859228 Test 039 control_c192_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c384_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 655.699185 - 0: The maximum resident set size (KB) = 1250816 + 0: The total amount of wall time = 588.229208 + 0: The maximum resident set size (KB) = 1248720 Test 040 control_c384_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_c384gdas_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2287,16 +2287,16 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK @@ -2304,7 +2304,7 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 522.155681 - 0: The maximum resident set size (KB) = 1356696 + 0: The total amount of wall time = 520.652450 + 0: The maximum resident set size (KB) = 1351476 Test 041 control_c384gdas_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.710628 - 0: The maximum resident set size (KB) = 650120 + 0: The total amount of wall time = 92.381567 + 0: The maximum resident set size (KB) = 611964 Test 042 control_stochy_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_restart_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel 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.185074 - 0: The maximum resident set size (KB) = 499248 + 0: The total amount of wall time = 49.715170 + 0: The maximum resident set size (KB) = 498604 Test 043 control_stochy_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_lndp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.764689 - 0: The maximum resident set size (KB) = 652640 + 0: The total amount of wall time = 84.076985 + 0: The maximum resident set size (KB) = 653536 Test 044 control_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_iovr4_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.817936 - 0: The maximum resident set size (KB) = 651820 + 0: The total amount of wall time = 137.463585 + 0: The maximum resident set size (KB) = 649000 Test 045 control_iovr4_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_iovr5_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.876252 - 0: The maximum resident set size (KB) = 651904 + 0: The total amount of wall time = 136.284260 + 0: The maximum resident set size (KB) = 607556 Test 046 control_iovr5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.081399 - 0: The maximum resident set size (KB) = 1627696 + 0: The total amount of wall time = 169.341566 + 0: The maximum resident set size (KB) = 1628468 Test 047 control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.653006 - 0: The maximum resident set size (KB) = 1636356 + 0: The total amount of wall time = 166.321609 + 0: The maximum resident set size (KB) = 1622200 Test 048 control_p8.v2.sfc_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.822106 - 0: The maximum resident set size (KB) = 1625316 + 0: The total amount of wall time = 159.965089 + 0: The maximum resident set size (KB) = 1629200 Test 049 control_p8_ugwpv1_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.421193 - 0: The maximum resident set size (KB) = 884856 + 0: The total amount of wall time = 89.950962 + 0: The maximum resident set size (KB) = 883044 Test 050 control_restart_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_noqr_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.588427 - 0: The maximum resident set size (KB) = 1614208 + 0: The total amount of wall time = 161.231247 + 0: The maximum resident set size (KB) = 1619460 Test 051 control_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_noqr_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.687575 - 0: The maximum resident set size (KB) = 928800 + 0: The total amount of wall time = 87.343937 + 0: The maximum resident set size (KB) = 927724 Test 052 control_restart_noqr_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_decomp_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.069100 - 0: The maximum resident set size (KB) = 1609088 + 0: The total amount of wall time = 169.811067 + 0: The maximum resident set size (KB) = 1613156 Test 053 control_decomp_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_2threads_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.286482 - 0: The maximum resident set size (KB) = 1717068 + 0: The total amount of wall time = 172.276249 + 0: The maximum resident set size (KB) = 1718744 Test 054 control_2threads_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_lndp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 301.982160 - 0: The maximum resident set size (KB) = 1628952 + 0: The total amount of wall time = 301.114908 + 0: The maximum resident set size (KB) = 1632856 Test 055 control_p8_lndp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.219477 - 0: The maximum resident set size (KB) = 1697144 + 0: The total amount of wall time = 221.499107 + 0: The maximum resident set size (KB) = 1695336 Test 056 control_p8_rrtmgp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_mynn_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.998252 - 0: The maximum resident set size (KB) = 1638332 + 0: The total amount of wall time = 168.365276 + 0: The maximum resident set size (KB) = 1640496 Test 057 control_p8_mynn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/merra2_thompson_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.781493 - 0: The maximum resident set size (KB) = 1639152 + 0: The total amount of wall time = 197.201113 + 0: The maximum resident set size (KB) = 1587404 Test 058 merra2_thompson_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_control_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.605196 - 0: The maximum resident set size (KB) = 858860 + 0: The total amount of wall time = 299.753692 + 0: The maximum resident set size (KB) = 858388 Test 059 regional_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_restart_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 153.699340 - 0: The maximum resident set size (KB) = 1022024 + 0: The total amount of wall time = 155.165825 + 0: The maximum resident set size (KB) = 1019736 Test 060 regional_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_decomp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 322.722236 - 0: The maximum resident set size (KB) = 798760 + 0: The total amount of wall time = 320.184600 + 0: The maximum resident set size (KB) = 850756 Test 061 regional_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_2threads_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 207.882523 - 0: The maximum resident set size (KB) = 848340 + 0: The total amount of wall time = 210.835261 + 0: The maximum resident set size (KB) = 842908 Test 062 regional_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_noquilt_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel 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 = 293.642892 - 0: The maximum resident set size (KB) = 1363152 + 0: The total amount of wall time = 296.817520 + 0: The maximum resident set size (KB) = 1363148 Test 063 regional_noquilt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.897949 - 0: The maximum resident set size (KB) = 851496 + 0: The total amount of wall time = 297.601989 + 0: The maximum resident set size (KB) = 856792 Test 064 regional_netcdf_parallel_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_2dwrtdecomp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.655531 - 0: The maximum resident set size (KB) = 856984 + 0: The total amount of wall time = 300.924365 + 0: The maximum resident set size (KB) = 855880 Test 065 regional_2dwrtdecomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_wofs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 381.836940 - 0: The maximum resident set size (KB) = 1914396 + 0: The total amount of wall time = 389.207388 + 0: The maximum resident set size (KB) = 1918760 Test 066 regional_wofs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.534861 - 0: The maximum resident set size (KB) = 1109352 + 0: The total amount of wall time = 453.938262 + 0: The maximum resident set size (KB) = 1111596 Test 067 rap_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 267.970465 - 0: The maximum resident set size (KB) = 1299520 + 0: The total amount of wall time = 268.822382 + 0: The maximum resident set size (KB) = 1297596 Test 068 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_decomp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.356981 - 0: The maximum resident set size (KB) = 1028172 + 0: The total amount of wall time = 472.155583 + 0: The maximum resident set size (KB) = 1030756 Test 069 rap_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_2threads_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 462.530912 - 0: The maximum resident set size (KB) = 1177664 + 0: The total amount of wall time = 459.476521 + 0: The maximum resident set size (KB) = 1126444 Test 070 rap_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_restart_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.611852 - 0: The maximum resident set size (KB) = 1098176 + 0: The total amount of wall time = 233.910373 + 0: The maximum resident set size (KB) = 1100572 Test 071 rap_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.336408 - 0: The maximum resident set size (KB) = 1105148 + 0: The total amount of wall time = 454.695009 + 0: The maximum resident set size (KB) = 1097788 Test 072 rap_sfcdiff_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_decomp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.248602 - 0: The maximum resident set size (KB) = 1032528 + 0: The total amount of wall time = 472.455282 + 0: The maximum resident set size (KB) = 1032772 Test 073 rap_sfcdiff_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_restart_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.270427 - 0: The maximum resident set size (KB) = 1124096 + 0: The total amount of wall time = 337.819157 + 0: The maximum resident set size (KB) = 1131732 Test 074 rap_sfcdiff_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.723452 - 0: The maximum resident set size (KB) = 1033936 + 0: The total amount of wall time = 228.512688 + 0: The maximum resident set size (KB) = 1042128 Test 075 hrrr_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_decomp_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.045399 - 0: The maximum resident set size (KB) = 1017764 + 0: The total amount of wall time = 236.069047 + 0: The maximum resident set size (KB) = 1029972 Test 076 hrrr_control_decomp_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_2threads_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.711364 - 0: The maximum resident set size (KB) = 1113024 + 0: The total amount of wall time = 195.390324 + 0: The maximum resident set size (KB) = 1111352 Test 077 hrrr_control_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_restart_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.524523 - 0: The maximum resident set size (KB) = 1002508 + 0: The total amount of wall time = 120.323650 + 0: The maximum resident set size (KB) = 994316 Test 078 hrrr_control_restart_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1beta_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.992770 - 0: The maximum resident set size (KB) = 1094428 + 0: The total amount of wall time = 441.055273 + 0: The maximum resident set size (KB) = 1099736 Test 079 rrfs_v1beta_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 544.420440 - 0: The maximum resident set size (KB) = 1991540 + 0: The total amount of wall time = 537.188206 + 0: The maximum resident set size (KB) = 1998200 Test 080 rrfs_v1nssl_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.941028 - 0: The maximum resident set size (KB) = 2068592 + 0: The total amount of wall time = 523.547397 + 0: The maximum resident set size (KB) = 2076828 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmg_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 338.495057 - 0: The maximum resident set size (KB) = 745636 + 0: The total amount of wall time = 340.210791 + 0: The maximum resident set size (KB) = 748176 Test 082 control_csawmg_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmgt_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.017842 - 0: The maximum resident set size (KB) = 751852 + 0: The total amount of wall time = 337.619819 + 0: The maximum resident set size (KB) = 752644 Test 083 control_csawmgt_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_ras_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.385374 - 0: The maximum resident set size (KB) = 739420 + 0: The total amount of wall time = 186.382452 + 0: The maximum resident set size (KB) = 745756 Test 084 control_ras_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wam_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.874490 - 0: The maximum resident set size (KB) = 657604 + 0: The total amount of wall time = 113.957087 + 0: The maximum resident set size (KB) = 658120 Test 085 control_wam_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_faster_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.650303 - 0: The maximum resident set size (KB) = 1624672 + 0: The total amount of wall time = 147.301351 + 0: The maximum resident set size (KB) = 1627188 Test 086 control_p8_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_control_faster_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.656966 - 0: The maximum resident set size (KB) = 856064 + 0: The total amount of wall time = 264.713383 + 0: The maximum resident set size (KB) = 852856 Test 087 regional_control_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 154.508677 - 0: The maximum resident set size (KB) = 819144 + 0: The total amount of wall time = 150.846461 + 0: The maximum resident set size (KB) = 811668 Test 088 control_CubedSphereGrid_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.615534 - 0: The maximum resident set size (KB) = 810940 + 0: The total amount of wall time = 152.169795 + 0: The maximum resident set size (KB) = 808568 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_stochy_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.386628 - 0: The maximum resident set size (KB) = 816720 + 0: The total amount of wall time = 173.626201 + 0: The maximum resident set size (KB) = 819012 Test 090 control_stochy_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_lndp_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.938039 - 0: The maximum resident set size (KB) = 814112 + 0: The total amount of wall time = 157.965746 + 0: The maximum resident set size (KB) = 814880 Test 091 control_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmg_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.760893 - 0: The maximum resident set size (KB) = 863120 + 0: The total amount of wall time = 239.999053 + 0: The maximum resident set size (KB) = 861204 Test 092 control_csawmg_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.518689 - 0: The maximum resident set size (KB) = 868340 + 0: The total amount of wall time = 235.143428 + 0: The maximum resident set size (KB) = 860500 Test 093 control_csawmgt_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_ras_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.633282 - 0: The maximum resident set size (KB) = 827540 + 0: The total amount of wall time = 157.371620 + 0: The maximum resident set size (KB) = 828748 Test 094 control_ras_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_diag_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.403334 - 0: The maximum resident set size (KB) = 874732 + 0: The total amount of wall time = 155.278820 + 0: The maximum resident set size (KB) = 872912 Test 095 control_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_debug_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_debug_p8_intel Checking test 096 control_debug_p8_intel 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.578778 - 0: The maximum resident set size (KB) = 1641032 + 0: The total amount of wall time = 167.552670 + 0: The maximum resident set size (KB) = 1640284 Test 096 control_debug_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1026.384500 - 0: The maximum resident set size (KB) = 847044 + 0: The total amount of wall time = 1036.579759 + 0: The maximum resident set size (KB) = 841848 Test 097 regional_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_intel Checking test 098 rap_control_debug_intel 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.006884 - 0: The maximum resident set size (KB) = 1197732 + 0: The total amount of wall time = 289.558769 + 0: The maximum resident set size (KB) = 1153520 Test 098 rap_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.176667 - 0: The maximum resident set size (KB) = 1193536 + 0: The total amount of wall time = 278.604177 + 0: The maximum resident set size (KB) = 1199992 Test 099 hrrr_control_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.641493 - 0: The maximum resident set size (KB) = 1198772 + 0: The total amount of wall time = 278.610181 + 0: The maximum resident set size (KB) = 1199800 Test 100 hrrr_gf_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.407553 - 0: The maximum resident set size (KB) = 1196412 + 0: The total amount of wall time = 295.630034 + 0: The maximum resident set size (KB) = 1198752 Test 101 hrrr_c3_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_unified_drag_suite_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.961436 - 0: The maximum resident set size (KB) = 1203160 + 0: The total amount of wall time = 292.199762 + 0: The maximum resident set size (KB) = 1201536 Test 102 rap_unified_drag_suite_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_diag_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel 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.696419 - 0: The maximum resident set size (KB) = 1292580 + 0: The total amount of wall time = 305.768250 + 0: The maximum resident set size (KB) = 1289956 Test 103 rap_diag_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.910984 - 0: The maximum resident set size (KB) = 1194892 + 0: The total amount of wall time = 288.747602 + 0: The maximum resident set size (KB) = 1201172 Test 104 rap_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_unified_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel 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.791870 - 0: The maximum resident set size (KB) = 1204176 + 0: The total amount of wall time = 286.835579 + 0: The maximum resident set size (KB) = 1208392 Test 105 rap_unified_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_lndp_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.041402 - 0: The maximum resident set size (KB) = 1200500 + 0: The total amount of wall time = 283.920296 + 0: The maximum resident set size (KB) = 1203996 Test 106 rap_lndp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel 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.759903 - 0: The maximum resident set size (KB) = 1201144 + 0: The total amount of wall time = 284.579174 + 0: The maximum resident set size (KB) = 1201056 Test 107 rap_progcld_thompson_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_noah_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.171801 - 0: The maximum resident set size (KB) = 1201832 + 0: The total amount of wall time = 280.949188 + 0: The maximum resident set size (KB) = 1200044 Test 108 rap_noah_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.712951 - 0: The maximum resident set size (KB) = 1206212 + 0: The total amount of wall time = 286.488081 + 0: The maximum resident set size (KB) = 1201356 Test 109 rap_sfcdiff_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 467.521313 - 0: The maximum resident set size (KB) = 1201768 + 0: The total amount of wall time = 466.038447 + 0: The maximum resident set size (KB) = 1196428 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.860984 - 0: The maximum resident set size (KB) = 1197996 + 0: The total amount of wall time = 292.294814 + 0: The maximum resident set size (KB) = 1206368 Test 111 rrfs_v1beta_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel 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.356539 - 0: The maximum resident set size (KB) = 1206200 + 0: The total amount of wall time = 346.228323 + 0: The maximum resident set size (KB) = 1196484 Test 112 rap_clm_lake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_flake_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.637059 - 0: The maximum resident set size (KB) = 1209716 + 0: The total amount of wall time = 283.990390 + 0: The maximum resident set size (KB) = 1202476 Test 113 rap_flake_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 507.435300 - 0: The maximum resident set size (KB) = 1209368 + 0: The total amount of wall time = 489.100602 + 0: The maximum resident set size (KB) = 1202292 Test 114 gnv1_c96_no_nest_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_wam_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 286.998778 - 0: The maximum resident set size (KB) = 508124 + 0: The total amount of wall time = 284.310012 + 0: The maximum resident set size (KB) = 507392 Test 115 control_wam_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 249.786685 - 0: The maximum resident set size (KB) = 1160748 + 0: The total amount of wall time = 255.848043 + 0: The maximum resident set size (KB) = 1161604 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 370.396123 - 0: The maximum resident set size (KB) = 1047460 + 0: The total amount of wall time = 374.940363 + 0: The maximum resident set size (KB) = 1047788 Test 117 rap_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.177814 - 0: The maximum resident set size (KB) = 980132 + 0: The total amount of wall time = 192.975014 + 0: The maximum resident set size (KB) = 981060 Test 118 hrrr_control_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 388.721559 - 0: The maximum resident set size (KB) = 1088908 + 0: The total amount of wall time = 393.181370 + 0: The maximum resident set size (KB) = 1094564 Test 119 rap_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_2threads_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.346744 - 0: The maximum resident set size (KB) = 965168 + 0: The total amount of wall time = 168.479975 + 0: The maximum resident set size (KB) = 973336 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_decomp_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.976446 - 0: The maximum resident set size (KB) = 922000 + 0: The total amount of wall time = 203.518108 + 0: The maximum resident set size (KB) = 865300 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.441741 - 0: The maximum resident set size (KB) = 1033780 + 0: The total amount of wall time = 278.216252 + 0: The maximum resident set size (KB) = 1033560 Test 122 rap_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_restart_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.694901 - 0: The maximum resident set size (KB) = 926132 + 0: The total amount of wall time = 100.979892 + 0: The maximum resident set size (KB) = 926932 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_control_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 111.669185 - 0: The maximum resident set size (KB) = 1206672 + 0: The total amount of wall time = 114.700529 + 0: The maximum resident set size (KB) = 1201792 Test 124 conus13km_control_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_2threads_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 49.794920 - 0: The maximum resident set size (KB) = 1123420 + 0: The total amount of wall time = 51.162391 + 0: The maximum resident set size (KB) = 1121880 Test 125 conus13km_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.835969 - 0: The maximum resident set size (KB) = 1111040 + 0: The total amount of wall time = 66.102676 + 0: The maximum resident set size (KB) = 1111472 Test 126 conus13km_restart_mismatch_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.892242 - 0: The maximum resident set size (KB) = 995236 + 0: The total amount of wall time = 241.297127 + 0: The maximum resident set size (KB) = 989120 Test 127 rap_control_dyn64_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.362087 - 0: The maximum resident set size (KB) = 1084220 + 0: The total amount of wall time = 284.346323 + 0: The maximum resident set size (KB) = 1082752 Test 128 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.582939 - 0: The maximum resident set size (KB) = 1078580 + 0: The total amount of wall time = 276.529476 + 0: The maximum resident set size (KB) = 1079384 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 851.922184 - 0: The maximum resident set size (KB) = 1232524 + 0: The total amount of wall time = 875.303385 + 0: The maximum resident set size (KB) = 1234548 Test 130 conus13km_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_qr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 860.171664 - 0: The maximum resident set size (KB) = 931792 + 0: The total amount of wall time = 868.324797 + 0: The maximum resident set size (KB) = 926388 Test 131 conus13km_debug_qr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_debug_2threads_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel 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.298743 - 0: The maximum resident set size (KB) = 1156532 + 0: The total amount of wall time = 492.495900 + 0: The maximum resident set size (KB) = 1148948 Test 132 conus13km_debug_2threads_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 858.291234 - 0: The maximum resident set size (KB) = 1296916 + 0: The total amount of wall time = 832.899060 + 0: The maximum resident set size (KB) = 1296112 Test 133 conus13km_radar_tten_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/rap_control_dyn64_phy32_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel 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.930398 - 0: The maximum resident set size (KB) = 1118848 + 0: The total amount of wall time = 289.662530 + 0: The maximum resident set size (KB) = 1121028 Test 134 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 315.061596 - 0: The maximum resident set size (KB) = 743576 + 0: The total amount of wall time = 314.283442 + 0: The maximum resident set size (KB) = 742852 Test 135 hafs_regional_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 339.937228 - 0: The maximum resident set size (KB) = 1118696 + 0: The total amount of wall time = 339.148588 + 0: The maximum resident set size (KB) = 1113460 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel 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 = 402.512774 - 0: The maximum resident set size (KB) = 831084 + 0: The total amount of wall time = 401.732275 + 0: The maximum resident set size (KB) = 835864 Test 137 hafs_regional_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 750.312664 - 0: The maximum resident set size (KB) = 867120 + 0: The total amount of wall time = 754.920080 + 0: The maximum resident set size (KB) = 866088 Test 138 hafs_regional_atm_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 864.678190 - 0: The maximum resident set size (KB) = 880400 + 0: The total amount of wall time = 853.792262 + 0: The maximum resident set size (KB) = 880624 Test 139 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 364.555775 - 0: The maximum resident set size (KB) = 501144 + 0: The total amount of wall time = 354.089585 + 0: The maximum resident set size (KB) = 499096 Test 140 hafs_regional_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 433.599265 - 0: The maximum resident set size (KB) = 522460 + 0: The total amount of wall time = 431.798671 + 0: The maximum resident set size (KB) = 469484 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5082,12 +5082,12 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5096,30 +5096,30 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 176.940254 - 0: The maximum resident set size (KB) = 375628 + 0: The total amount of wall time = 177.637872 + 0: The maximum resident set size (KB) = 376032 Test 142 hafs_global_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5156,18 +5156,18 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK @@ -5177,8 +5177,8 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK @@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 455.372886 - 0: The maximum resident set size (KB) = 481676 + 0: The total amount of wall time = 460.683556 + 0: The maximum resident set size (KB) = 473856 Test 143 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 232.449456 - 0: The maximum resident set size (KB) = 526520 + 0: The total amount of wall time = 235.175327 + 0: The maximum resident set size (KB) = 532640 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 224.349682 - 0: The maximum resident set size (KB) = 530400 + 0: The total amount of wall time = 223.996179 + 0: The maximum resident set size (KB) = 532276 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5262,96 +5262,96 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 302.352931 - 0: The maximum resident set size (KB) = 592444 + 0: The total amount of wall time = 304.287952 + 0: The maximum resident set size (KB) = 589116 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 72.272371 - 0: The maximum resident set size (KB) = 405728 + 0: The total amount of wall time = 76.659948 + 0: The maximum resident set size (KB) = 405384 Test 147 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/gnv1_nested_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 261.145551 - 0: The maximum resident set size (KB) = 804960 - -Test 148 gnv1_nested_intel FAIL Tries: 2 + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 256.205309 + 0: The maximum resident set size (KB) = 805832 + +Test 148 gnv1_nested_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 770.779140 - 0: The maximum resident set size (KB) = 569712 + 0: The total amount of wall time = 771.111837 + 0: The maximum resident set size (KB) = 572380 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 561.011573 - 0: The maximum resident set size (KB) = 676156 + 0: The total amount of wall time = 554.352393 + 0: The maximum resident set size (KB) = 673184 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 562.600796 - 0: The maximum resident set size (KB) = 693160 + 0: The total amount of wall time = 567.324064 + 0: The maximum resident set size (KB) = 747672 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 397.005775 - 0: The maximum resident set size (KB) = 735004 + 0: The total amount of wall time = 399.997019 + 0: The maximum resident set size (KB) = 728868 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_docn_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel 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 = 359.592440 - 0: The maximum resident set size (KB) = 829700 + 0: The total amount of wall time = 365.553306 + 0: The maximum resident set size (KB) = 826820 Test 153 hafs_regional_docn_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.605045 - 0: The maximum resident set size (KB) = 816460 + 0: The total amount of wall time = 367.249025 + 0: The maximum resident set size (KB) = 816728 Test 154 hafs_regional_docn_oisst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 949.407623 - 0: The maximum resident set size (KB) = 1174192 + 0: The total amount of wall time = 943.886495 + 0: The maximum resident set size (KB) = 1208780 Test 155 hafs_regional_datm_cdeps_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.937060 - 0: The maximum resident set size (KB) = 1143984 + 0: The total amount of wall time = 153.008567 + 0: The maximum resident set size (KB) = 1109144 Test 156 datm_cdeps_control_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_restart_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 87.960218 - 0: The maximum resident set size (KB) = 1084064 + 0: The total amount of wall time = 88.554449 + 0: The maximum resident set size (KB) = 1082632 Test 157 datm_cdeps_restart_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.410578 - 0: The maximum resident set size (KB) = 1017344 + 0: The total amount of wall time = 141.543241 + 0: The maximum resident set size (KB) = 1016124 Test 158 datm_cdeps_control_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.367995 - 0: The maximum resident set size (KB) = 1015404 + 0: The total amount of wall time = 147.871812 + 0: The maximum resident set size (KB) = 1011232 Test 159 datm_cdeps_iau_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.413319 - 0: The maximum resident set size (KB) = 1017156 + 0: The total amount of wall time = 145.578206 + 0: The maximum resident set size (KB) = 1016564 Test 160 datm_cdeps_stochy_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.465229 - 0: The maximum resident set size (KB) = 1133672 + 0: The total amount of wall time = 148.171922 + 0: The maximum resident set size (KB) = 1127752 Test 161 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.324559 - 0: The maximum resident set size (KB) = 1139856 + 0: The total amount of wall time = 148.382170 + 0: The maximum resident set size (KB) = 1133640 Test 162 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.527166 - 0: The maximum resident set size (KB) = 1014508 + 0: The total amount of wall time = 142.306499 + 0: The maximum resident set size (KB) = 1010588 Test 163 datm_cdeps_bulk_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel 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 = 336.875988 - 0: The maximum resident set size (KB) = 1055732 + 0: The total amount of wall time = 340.697052 + 0: The maximum resident set size (KB) = 1055112 Test 164 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 336.898028 - 0: The maximum resident set size (KB) = 1032636 + 0: The total amount of wall time = 339.187984 + 0: The maximum resident set size (KB) = 1036108 Test 165 datm_cdeps_mx025_gefs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_multiple_files_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.663450 - 0: The maximum resident set size (KB) = 1136220 + 0: The total amount of wall time = 151.430726 + 0: The maximum resident set size (KB) = 1117572 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.998586 - 0: The maximum resident set size (KB) = 2449396 + 0: The total amount of wall time = 201.192992 + 0: The maximum resident set size (KB) = 2447380 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 206.926367 - 0: The maximum resident set size (KB) = 2438476 + 0: The total amount of wall time = 206.172268 + 0: The maximum resident set size (KB) = 2485264 Test 168 datm_cdeps_gfs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 353.393557 - 0: The maximum resident set size (KB) = 1060016 + 0: The total amount of wall time = 366.503827 + 0: The maximum resident set size (KB) = 1060856 Test 169 datm_cdeps_debug_cfsr_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.362175 - 0: The maximum resident set size (KB) = 1139996 + 0: The total amount of wall time = 146.160580 + 0: The maximum resident set size (KB) = 1136836 Test 170 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 37.706783 - 0: The maximum resident set size (KB) = 257584 + 0: The total amount of wall time = 37.960240 + 0: The maximum resident set size (KB) = 231004 Test 171 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_era5_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 37.621511 - 0: The maximum resident set size (KB) = 322924 + 0: The total amount of wall time = 39.319878 + 0: The maximum resident set size (KB) = 325604 Test 172 datm_cdeps_lnd_era5_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/datm_cdeps_lnd_era5_rst_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 21.266173 - 0: The maximum resident set size (KB) = 323604 + 0: The total amount of wall time = 22.124823 + 0: The maximum resident set size (KB) = 319916 Test 173 datm_cdeps_lnd_era5_rst_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 242.592537 - 0: The maximum resident set size (KB) = 1601000 + 0: The total amount of wall time = 242.730129 + 0: The maximum resident set size (KB) = 1610668 Test 174 control_p8_atmlnd_sbs_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_p8_atmlnd_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 243.732255 - 0: The maximum resident set size (KB) = 1609892 + 0: The total amount of wall time = 241.495057 + 0: The maximum resident set size (KB) = 1611060 Test 175 control_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_restart_p8_atmlnd_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 124.208687 - 0: The maximum resident set size (KB) = 899620 + 0: The total amount of wall time = 125.538764 + 0: The maximum resident set size (KB) = 900192 Test 176 control_restart_p8_atmlnd_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.985240 - 0: The maximum resident set size (KB) = 1662804 + 0: The total amount of wall time = 93.465656 + 0: The maximum resident set size (KB) = 1665080 Test 177 atmwav_control_noaero_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/control_atmwav_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.326766 - 0: The maximum resident set size (KB) = 676552 + 0: The total amount of wall time = 88.695176 + 0: The maximum resident set size (KB) = 671484 Test 178 control_atmwav_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.970479 - 0: The maximum resident set size (KB) = 3022192 + 0: The total amount of wall time = 224.067385 + 0: The maximum resident set size (KB) = 3023484 Test 179 atmaero_control_p8_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.737253 - 0: The maximum resident set size (KB) = 3093372 + 0: The total amount of wall time = 274.634783 + 0: The maximum resident set size (KB) = 3086836 Test 180 atmaero_control_p8_rad_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.098306 - 0: The maximum resident set size (KB) = 3110924 + 0: The total amount of wall time = 293.587906 + 0: The maximum resident set size (KB) = 3105680 Test 181 atmaero_control_p8_rad_micro_intel PASS baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_221021/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6182,91 +6182,12 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1231.536326 - 0: The maximum resident set size (KB) = 4573004 + 0: The total amount of wall time = 1234.349031 + 0: The maximum resident set size (KB) = 4578348 Test 182 regional_atmaq_debug_intel PASS -FAILED TESTS: -148 gnv1_nested_intel failed in check_result -gnv1_nested_intel 148 failed in run_test - -REGRESSION TEST FAILED -Thu Feb 8 10:23:18 CST 2024 -Elapsed time: 01h:25m:08s. Have a nice day! -Thu Feb 8 10:28:34 CST 2024 -Start Regression test - -Testing UFSWM Hash: 282495ba877bed7f526136805e06a03adc2fddf9 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 725 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_386460/gnv1_nested_intel -Checking test 001 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 263.087549 - 0: The maximum resident set size (KB) = 809212 - -Test 001 gnv1_nested_intel PASS Tries: 2 - REGRESSION TEST WAS SUCCESSFUL -Thu Feb 8 10:57:22 CST 2024 -Elapsed time: 00h:28m:49s. Have a nice day! +Thu Feb 8 22:09:31 CST 2024 +Elapsed time: 01h:27m:19s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index f15d9e134a..8e62724435 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,54 +1,54 @@ -Thu Feb 8 12:11:45 UTC 2024 +Fri Feb 9 18:49:33 UTC 2024 Start Regression test -Testing UFSWM Hash: ae9936af3eff7c094a5425533092632507335184 +Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c8cfb3ca22a4e1c74903e17c45e075cdefcd7333 FV3 (remotes/origin/post_update) + c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/HEAD-2-gc082c3b) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (remotes/origin/sppint-2-ga556180) -Compile atmaero_intel elapsed time 908 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 750 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 897 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 787 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 871 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 665 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 930 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1069 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 727 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1059 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 747 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 866 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 680 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1284 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 670 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 2087 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 957 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 660 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1923 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 1243 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 691 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 320 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1478 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atmaero_intel elapsed time 1094 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 717 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 1135 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 1002 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 784 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 1561 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 704 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 989 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 485 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1060 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 1237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 937 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 1258 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1191 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 662 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 1401 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 686 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1712 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 664 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 694 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 911 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 662 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 322.772414 -The maximum resident set size (KB) = 2972708 +The total amount of wall time = 322.520334 +The maximum resident set size (KB) = 2973440 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 910.731032 -The maximum resident set size (KB) = 1587172 +The total amount of wall time = 914.666202 +The maximum resident set size (KB) = 1592256 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 983.544800 -The maximum resident set size (KB) = 1706440 +The total amount of wall time = 991.256489 +The maximum resident set size (KB) = 1708572 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 456.242341 -The maximum resident set size (KB) = 847432 +The total amount of wall time = 464.757647 +The maximum resident set size (KB) = 844528 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1065.338692 -The maximum resident set size (KB) = 1566980 +The total amount of wall time = 1059.436174 +The maximum resident set size (KB) = 1573448 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1404.169036 -The maximum resident set size (KB) = 1598984 +The total amount of wall time = 1515.127358 +The maximum resident set size (KB) = 1600216 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.702921 -The maximum resident set size (KB) = 3001884 +The total amount of wall time = 366.904993 +The maximum resident set size (KB) = 3000620 Test 007 cpld_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.742969 -The maximum resident set size (KB) = 3002400 +The total amount of wall time = 364.267854 +The maximum resident set size (KB) = 3002416 Test 008 cpld_control_p8.v2.sfc_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 218.301189 -The maximum resident set size (KB) = 3063012 +The total amount of wall time = 217.605702 +The maximum resident set size (KB) = 3062020 Test 009 cpld_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -703,14 +703,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.866719 -The maximum resident set size (KB) = 3028492 +The total amount of wall time = 370.857200 +The maximum resident set size (KB) = 3028020 Test 010 cpld_control_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_qr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -763,14 +763,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 220.874218 -The maximum resident set size (KB) = 3080068 +The total amount of wall time = 221.730298 +The maximum resident set size (KB) = 3081584 Test 011 cpld_restart_qr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -823,14 +823,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.012400 -The maximum resident set size (KB) = 3316164 +The total amount of wall time = 327.901205 +The maximum resident set size (KB) = 3316928 Test 012 cpld_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -883,14 +883,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.907522 -The maximum resident set size (KB) = 2997104 +The total amount of wall time = 359.508303 +The maximum resident set size (KB) = 3003756 Test 013 cpld_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -943,14 +943,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 303.652377 -The maximum resident set size (KB) = 2923216 +The total amount of wall time = 302.502625 +The maximum resident set size (KB) = 2932636 Test 014 cpld_mpi_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.033549 -The maximum resident set size (KB) = 3004436 +The total amount of wall time = 363.242732 +The maximum resident set size (KB) = 3004700 Test 015 cpld_control_ciceC_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_bmark_p8_intel Checking test 016 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 756.259365 -The maximum resident set size (KB) = 3952964 +The total amount of wall time = 754.501015 +The maximum resident set size (KB) = 3951440 Test 016 cpld_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_bmark_p8_intel Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1125,14 +1125,14 @@ Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 541.490510 -The maximum resident set size (KB) = 4256924 +The total amount of wall time = 532.803589 +The maximum resident set size (KB) = 4250580 Test 017 cpld_restart_bmark_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_s2sa_p8_intel Checking test 018 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1183,14 +1183,14 @@ Checking test 018 cpld_s2sa_p8_intel 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 = 343.894288 -The maximum resident set size (KB) = 2967508 +The total amount of wall time = 343.549757 +The maximum resident set size (KB) = 2966836 Test 018 cpld_s2sa_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_intel Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1254,14 +1254,14 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 277.108455 -The maximum resident set size (KB) = 1584664 +The total amount of wall time = 270.560051 +The maximum resident set size (KB) = 1590600 Test 019 cpld_control_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_nowave_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_nowave_noaero_p8_intel Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel 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 = 282.769568 -The maximum resident set size (KB) = 1636840 +The total amount of wall time = 276.938146 +The maximum resident set size (KB) = 1637508 Test 020 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1392,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 274.684919 -The maximum resident set size (KB) = 1634592 +The total amount of wall time = 276.697595 +The maximum resident set size (KB) = 1631212 Test 021 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_c48_intel 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 = 408.146202 -The maximum resident set size (KB) = 2650456 +The total amount of wall time = 406.835402 +The maximum resident set size (KB) = 2652116 Test 022 cpld_control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_faster_intel Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 023 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 358.005204 -The maximum resident set size (KB) = 3003900 +The total amount of wall time = 363.128198 +The maximum resident set size (KB) = 3001136 Test 023 cpld_control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 929.239085 -The maximum resident set size (KB) = 1597568 +The total amount of wall time = 928.152759 +The maximum resident set size (KB) = 1596972 Test 024 cpld_control_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_restart_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 469.141027 -The maximum resident set size (KB) = 898064 +The total amount of wall time = 471.260902 +The maximum resident set size (KB) = 899872 Test 025 cpld_restart_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_mpi_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1722,14 +1722,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1077.611155 -The maximum resident set size (KB) = 1577576 +The total amount of wall time = 1088.789497 +The maximum resident set size (KB) = 1582900 Test 026 cpld_mpi_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1781,14 +1781,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1489.582749 -The maximum resident set size (KB) = 1619680 +The total amount of wall time = 1490.451653 +The maximum resident set size (KB) = 1612276 Test 027 cpld_debug_pdlib_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.004933 -The maximum resident set size (KB) = 571512 +The total amount of wall time = 216.225908 +The maximum resident set size (KB) = 571624 Test 028 control_flake_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.747232 -The maximum resident set size (KB) = 521376 +The total amount of wall time = 132.436920 +The maximum resident set size (KB) = 521400 Test 029 control_CubedSphereGrid_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1855,14 +1855,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.499754 -The maximum resident set size (KB) = 527656 +The total amount of wall time = 139.390134 +The maximum resident set size (KB) = 529644 Test 030 control_CubedSphereGrid_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1873,14 +1873,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.980258 -The maximum resident set size (KB) = 523128 +The total amount of wall time = 134.200576 +The maximum resident set size (KB) = 524080 Test 031 control_latlon_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1891,14 +1891,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.075317 -The maximum resident set size (KB) = 522056 +The total amount of wall time = 135.766651 +The maximum resident set size (KB) = 527260 Test 032 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1937,14 +1937,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.632449 -The maximum resident set size (KB) = 715436 +The total amount of wall time = 327.252663 +The maximum resident set size (KB) = 714792 Test 033 control_c48_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 329.697470 -The maximum resident set size (KB) = 714940 +The total amount of wall time = 328.447199 +The maximum resident set size (KB) = 714848 Test 034 control_c48.v2.sfc_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.463784 -The maximum resident set size (KB) = 637944 +The total amount of wall time = 531.480779 +The maximum resident set size (KB) = 641900 Test 035 control_c192_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2019,14 +2019,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 585.159398 -The maximum resident set size (KB) = 952192 +The total amount of wall time = 593.703739 +The maximum resident set size (KB) = 951744 Test 036 control_c384_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 516.438040 -The maximum resident set size (KB) = 1094076 +The total amount of wall time = 540.443723 +The maximum resident set size (KB) = 1089544 Test 037 control_c384gdas_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2087,28 +2087,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.311892 -The maximum resident set size (KB) = 531904 +The total amount of wall time = 89.547314 +The maximum resident set size (KB) = 530868 Test 038 control_stochy_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.558205 -The maximum resident set size (KB) = 337064 +The total amount of wall time = 51.517874 +The maximum resident set size (KB) = 334608 Test 039 control_stochy_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2119,14 +2119,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.674427 -The maximum resident set size (KB) = 528260 +The total amount of wall time = 85.426827 +The maximum resident set size (KB) = 526640 Test 040 control_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.689079 -The maximum resident set size (KB) = 524600 +The total amount of wall time = 134.530199 +The maximum resident set size (KB) = 521924 Test 041 control_iovr4_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2163,14 +2163,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.159394 -The maximum resident set size (KB) = 522968 +The total amount of wall time = 134.886238 +The maximum resident set size (KB) = 521952 Test 042 control_iovr5_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2217,14 +2217,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.142716 -The maximum resident set size (KB) = 1498532 +The total amount of wall time = 164.588120 +The maximum resident set size (KB) = 1498668 Test 043 control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2271,14 +2271,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.898079 -The maximum resident set size (KB) = 1495984 +The total amount of wall time = 163.049069 +The maximum resident set size (KB) = 1511836 Test 044 control_p8.v2.sfc_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2325,14 +2325,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.150591 -The maximum resident set size (KB) = 1505432 +The total amount of wall time = 161.710332 +The maximum resident set size (KB) = 1511136 Test 045 control_p8_ugwpv1_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2371,14 +2371,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 90.567027 -The maximum resident set size (KB) = 689420 +The total amount of wall time = 90.698693 +The maximum resident set size (KB) = 686908 Test 046 control_restart_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2425,14 +2425,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 163.307225 -The maximum resident set size (KB) = 1488620 +The total amount of wall time = 165.013063 +The maximum resident set size (KB) = 1494288 Test 047 control_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_noqr_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 89.466469 -The maximum resident set size (KB) = 692724 +The total amount of wall time = 90.241117 +The maximum resident set size (KB) = 695252 Test 048 control_restart_noqr_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_decomp_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 168.177930 -The maximum resident set size (KB) = 1498708 +The total amount of wall time = 170.024349 +The maximum resident set size (KB) = 1503248 Test 049 control_decomp_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_2threads_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2571,14 +2571,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 146.539529 -The maximum resident set size (KB) = 1597580 +The total amount of wall time = 145.224451 +The maximum resident set size (KB) = 1582168 Test 050 control_2threads_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 294.833818 -The maximum resident set size (KB) = 1505424 +The total amount of wall time = 293.843781 +The maximum resident set size (KB) = 1498936 Test 051 control_p8_lndp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 226.376626 -The maximum resident set size (KB) = 1553972 +The total amount of wall time = 220.240233 +The maximum resident set size (KB) = 1556408 Test 052 control_p8_rrtmgp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.877046 -The maximum resident set size (KB) = 1512596 +The total amount of wall time = 167.093940 +The maximum resident set size (KB) = 1511552 Test 053 control_p8_mynn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2759,14 +2759,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 203.845086 -The maximum resident set size (KB) = 1518516 +The total amount of wall time = 197.980116 +The maximum resident set size (KB) = 1508488 Test 054 merra2_thompson_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2777,28 +2777,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.454854 -The maximum resident set size (KB) = 605920 +The total amount of wall time = 290.377617 +The maximum resident set size (KB) = 606408 Test 055 regional_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.249031 -The maximum resident set size (KB) = 777340 +The total amount of wall time = 157.480535 +The maximum resident set size (KB) = 778324 Test 056 regional_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2809,14 +2809,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 303.047275 -The maximum resident set size (KB) = 605796 +The total amount of wall time = 304.338849 +The maximum resident set size (KB) = 605684 Test 057 regional_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 172.278279 -The maximum resident set size (KB) = 668288 +The total amount of wall time = 175.422691 +The maximum resident set size (KB) = 660620 Test 058 regional_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_noquilt_intel Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2842,28 +2842,28 @@ Checking test 059 regional_noquilt_intel 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 = 280.805624 -The maximum resident set size (KB) = 1138164 +The total amount of wall time = 280.000830 +The maximum resident set size (KB) = 1141104 Test 059 regional_noquilt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_netcdf_parallel_intel Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 285.101281 -The maximum resident set size (KB) = 607028 +The total amount of wall time = 287.310854 +The maximum resident set size (KB) = 607216 Test 060 regional_netcdf_parallel_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_2dwrtdecomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2dwrtdecomp_intel Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2874,14 +2874,14 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 289.825775 -The maximum resident set size (KB) = 608984 +The total amount of wall time = 286.448947 +The maximum resident set size (KB) = 607100 Test 061 regional_2dwrtdecomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_wofs_intel Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 372.335239 -The maximum resident set size (KB) = 1579964 +The total amount of wall time = 370.002079 +The maximum resident set size (KB) = 1581448 Test 062 regional_wofs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2946,14 +2946,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.266116 -The maximum resident set size (KB) = 915576 +The total amount of wall time = 405.761757 +The maximum resident set size (KB) = 919924 Test 063 rap_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2964,14 +2964,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 240.781829 -The maximum resident set size (KB) = 1090784 +The total amount of wall time = 242.742615 +The maximum resident set size (KB) = 1092304 Test 064 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3018,14 +3018,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.490321 -The maximum resident set size (KB) = 914780 +The total amount of wall time = 420.844891 +The maximum resident set size (KB) = 915580 Test 065 rap_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.198457 -The maximum resident set size (KB) = 1006440 +The total amount of wall time = 370.382045 +The maximum resident set size (KB) = 1008316 Test 066 rap_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3118,14 +3118,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.308251 -The maximum resident set size (KB) = 783116 +The total amount of wall time = 210.282217 +The maximum resident set size (KB) = 784084 Test 067 rap_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3172,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 407.502892 -The maximum resident set size (KB) = 911192 +The total amount of wall time = 408.000618 +The maximum resident set size (KB) = 913048 Test 068 rap_sfcdiff_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3226,14 +3226,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 423.159391 -The maximum resident set size (KB) = 912000 +The total amount of wall time = 421.332180 +The maximum resident set size (KB) = 914964 Test 069 rap_sfcdiff_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3272,14 +3272,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.415086 -The maximum resident set size (KB) = 782380 +The total amount of wall time = 305.547528 +The maximum resident set size (KB) = 783352 Test 070 rap_sfcdiff_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3326,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.357208 -The maximum resident set size (KB) = 906692 +The total amount of wall time = 210.203982 +The maximum resident set size (KB) = 911880 Test 071 hrrr_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_decomp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3380,14 +3380,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 212.480979 -The maximum resident set size (KB) = 909184 +The total amount of wall time = 214.131388 +The maximum resident set size (KB) = 907928 Test 072 hrrr_control_decomp_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3434,28 +3434,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.693284 -The maximum resident set size (KB) = 997904 +The total amount of wall time = 186.942980 +The maximum resident set size (KB) = 991916 Test 073 hrrr_control_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_restart_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 110.324867 -The maximum resident set size (KB) = 743852 +The total amount of wall time = 109.819242 +The maximum resident set size (KB) = 742116 Test 074 hrrr_control_restart_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3502,14 +3502,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 400.553044 -The maximum resident set size (KB) = 909704 +The total amount of wall time = 398.166108 +The maximum resident set size (KB) = 904132 Test 075 rrfs_v1beta_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 488.987399 -The maximum resident set size (KB) = 1872972 +The total amount of wall time = 490.003704 +The maximum resident set size (KB) = 1874704 Test 076 rrfs_v1nssl_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.407966 -The maximum resident set size (KB) = 1859360 +The total amount of wall time = 472.440630 +The maximum resident set size (KB) = 1861208 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3564,14 +3564,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.156818 -The maximum resident set size (KB) = 602952 +The total amount of wall time = 338.500426 +The maximum resident set size (KB) = 600048 Test 078 control_csawmg_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3582,14 +3582,14 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.533486 -The maximum resident set size (KB) = 594364 +The total amount of wall time = 336.566237 +The maximum resident set size (KB) = 596180 Test 079 control_csawmgt_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_intel Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3600,26 +3600,26 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.950621 -The maximum resident set size (KB) = 559432 +The total amount of wall time = 184.660551 +The maximum resident set size (KB) = 561864 Test 080 control_ras_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_intel Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.338500 -The maximum resident set size (KB) = 272840 +The total amount of wall time = 119.063038 +The maximum resident set size (KB) = 271836 Test 081 control_wam_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_faster_intel Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.937879 -The maximum resident set size (KB) = 1503168 +The total amount of wall time = 159.301292 +The maximum resident set size (KB) = 1505300 Test 082 control_p8_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_faster_intel Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3684,14 +3684,14 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.310219 -The maximum resident set size (KB) = 609908 +The total amount of wall time = 280.648571 +The maximum resident set size (KB) = 609956 Test 083 regional_control_faster_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3718,364 +3718,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 163.533173 -The maximum resident set size (KB) = 684512 +The total amount of wall time = 162.337300 +The maximum resident set size (KB) = 683512 Test 084 control_CubedSphereGrid_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.836127 -The maximum resident set size (KB) = 693188 +The total amount of wall time = 160.370876 +The maximum resident set size (KB) = 693624 Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.703328 -The maximum resident set size (KB) = 693420 +The total amount of wall time = 183.537405 +The maximum resident set size (KB) = 692352 Test 086 control_stochy_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.417812 -The maximum resident set size (KB) = 692092 +The total amount of wall time = 162.253932 +The maximum resident set size (KB) = 693132 Test 087 control_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.539294 -The maximum resident set size (KB) = 732228 +The total amount of wall time = 253.313215 +The maximum resident set size (KB) = 733268 Test 088 control_csawmg_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.758498 -The maximum resident set size (KB) = 731240 +The total amount of wall time = 252.329851 +The maximum resident set size (KB) = 730496 Test 089 control_csawmgt_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.140986 -The maximum resident set size (KB) = 703804 +The total amount of wall time = 164.369490 +The maximum resident set size (KB) = 703916 Test 090 control_ras_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.628987 -The maximum resident set size (KB) = 746256 +The total amount of wall time = 172.195350 +The maximum resident set size (KB) = 746740 Test 091 control_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.847887 -The maximum resident set size (KB) = 1521184 +The total amount of wall time = 169.031907 +The maximum resident set size (KB) = 1519200 Test 092 control_debug_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_debug_intel Checking test 093 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1057.576212 -The maximum resident set size (KB) = 632792 +The total amount of wall time = 1057.508445 +The maximum resident set size (KB) = 629056 Test 093 regional_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.227471 -The maximum resident set size (KB) = 1077604 +The total amount of wall time = 301.960520 +The maximum resident set size (KB) = 1076488 Test 094 rap_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.599585 -The maximum resident set size (KB) = 1069440 +The total amount of wall time = 295.368278 +The maximum resident set size (KB) = 1070004 Test 095 hrrr_control_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_gf_debug_intel Checking test 096 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.371168 -The maximum resident set size (KB) = 1071732 +The total amount of wall time = 299.841380 +The maximum resident set size (KB) = 1074248 Test 096 hrrr_gf_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_c3_debug_intel Checking test 097 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.726062 -The maximum resident set size (KB) = 1074888 +The total amount of wall time = 301.945532 +The maximum resident set size (KB) = 1078352 Test 097 hrrr_c3_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_unified_drag_suite_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_drag_suite_debug_intel Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.275215 -The maximum resident set size (KB) = 1080748 +The total amount of wall time = 300.925601 +The maximum resident set size (KB) = 1073756 Test 098 rap_unified_drag_suite_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_diag_debug_intel Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.584640 -The maximum resident set size (KB) = 1155332 +The total amount of wall time = 312.452353 +The maximum resident set size (KB) = 1162888 Test 099 rap_diag_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_cires_ugwp_debug_intel Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.750164 -The maximum resident set size (KB) = 1073920 +The total amount of wall time = 308.599165 +The maximum resident set size (KB) = 1076032 Test 100 rap_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_unified_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_ugwp_debug_intel Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.818130 -The maximum resident set size (KB) = 1076280 +The total amount of wall time = 308.730674 +The maximum resident set size (KB) = 1079376 Test 101 rap_unified_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_lndp_debug_intel Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.969573 -The maximum resident set size (KB) = 1078336 +The total amount of wall time = 304.479275 +The maximum resident set size (KB) = 1075932 Test 102 rap_lndp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_progcld_thompson_debug_intel Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.074241 -The maximum resident set size (KB) = 1073032 +The total amount of wall time = 302.023173 +The maximum resident set size (KB) = 1074988 Test 103 rap_progcld_thompson_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_debug_intel Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.279825 -The maximum resident set size (KB) = 1072620 +The total amount of wall time = 295.080200 +The maximum resident set size (KB) = 1068868 Test 104 rap_noah_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_debug_intel Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.181075 -The maximum resident set size (KB) = 1071460 +The total amount of wall time = 303.806473 +The maximum resident set size (KB) = 1073844 Test 105 rap_sfcdiff_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 491.996978 -The maximum resident set size (KB) = 1070932 +The total amount of wall time = 498.436218 +The maximum resident set size (KB) = 1075296 Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_debug_intel Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.225742 -The maximum resident set size (KB) = 1068100 +The total amount of wall time = 298.047098 +The maximum resident set size (KB) = 1069512 Test 107 rrfs_v1beta_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_clm_lake_debug_intel Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 351.399253 -The maximum resident set size (KB) = 1075296 +The total amount of wall time = 351.599105 +The maximum resident set size (KB) = 1074656 Test 108 rap_clm_lake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_flake_debug_intel Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.904245 -The maximum resident set size (KB) = 1076368 +The total amount of wall time = 301.316766 +The maximum resident set size (KB) = 1073452 Test 109 rap_flake_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/gnv1_c96_no_nest_debug_intel Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4116,26 +4116,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 525.187740 -The maximum resident set size (KB) = 1079352 +The total amount of wall time = 526.273497 +The maximum resident set size (KB) = 1077160 Test 110 gnv1_c96_no_nest_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_debug_intel Checking test 111 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 295.899096 -The maximum resident set size (KB) = 296816 +The total amount of wall time = 299.088393 +The maximum resident set size (KB) = 298148 Test 111 control_wam_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 227.670595 -The maximum resident set size (KB) = 955232 +The total amount of wall time = 230.022175 +The maximum resident set size (KB) = 952956 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4200,14 +4200,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 335.725423 -The maximum resident set size (KB) = 789816 +The total amount of wall time = 336.797512 +The maximum resident set size (KB) = 789616 Test 113 rap_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4254,14 +4254,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 179.182742 -The maximum resident set size (KB) = 787528 +The total amount of wall time = 180.171997 +The maximum resident set size (KB) = 788240 Test 114 hrrr_control_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4308,14 +4308,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.603189 -The maximum resident set size (KB) = 851512 +The total amount of wall time = 308.608507 +The maximum resident set size (KB) = 851852 Test 115 rap_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_2threads_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4362,14 +4362,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.646100 -The maximum resident set size (KB) = 841524 +The total amount of wall time = 160.933595 +The maximum resident set size (KB) = 840220 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_decomp_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4416,14 +4416,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.542179 -The maximum resident set size (KB) = 788688 +The total amount of wall time = 186.779550 +The maximum resident set size (KB) = 791856 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4462,28 +4462,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 249.992297 -The maximum resident set size (KB) = 688444 +The total amount of wall time = 254.794040 +The maximum resident set size (KB) = 685660 Test 118 rap_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_restart_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.291122 -The maximum resident set size (KB) = 670088 +The total amount of wall time = 93.806382 +The maximum resident set size (KB) = 667280 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4499,40 +4499,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 120.036268 -The maximum resident set size (KB) = 1006688 +The total amount of wall time = 120.596185 +The maximum resident set size (KB) = 1003932 Test 120 conus13km_control_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 62.068988 -The maximum resident set size (KB) = 1004968 +The total amount of wall time = 63.221902 +The maximum resident set size (KB) = 1007156 Test 121 conus13km_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 71.888271 -The maximum resident set size (KB) = 881768 +The total amount of wall time = 71.013649 +The maximum resident set size (KB) = 881756 Test 122 conus13km_restart_mismatch_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4579,42 +4579,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.924763 -The maximum resident set size (KB) = 811036 +The total amount of wall time = 234.585978 +The maximum resident set size (KB) = 811188 Test 123 rap_control_dyn64_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.211871 -The maximum resident set size (KB) = 950276 +The total amount of wall time = 295.731602 +The maximum resident set size (KB) = 950728 Test 124 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.904924 -The maximum resident set size (KB) = 948412 +The total amount of wall time = 288.839630 +The maximum resident set size (KB) = 949132 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4628,14 +4628,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 885.969783 -The maximum resident set size (KB) = 1035812 +The total amount of wall time = 889.758617 +The maximum resident set size (KB) = 1036268 Test 126 conus13km_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_qr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4649,81 +4649,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 890.813272 -The maximum resident set size (KB) = 710492 +The total amount of wall time = 897.344891 +The maximum resident set size (KB) = 710752 Test 127 conus13km_debug_qr_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_debug_2threads_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 510.687907 -The maximum resident set size (KB) = 1037972 +The total amount of wall time = 512.772061 +The maximum resident set size (KB) = 1037896 Test 128 conus13km_debug_2threads_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 891.181302 -The maximum resident set size (KB) = 1099836 +The total amount of wall time = 882.770745 +The maximum resident set size (KB) = 1109524 Test 129 conus13km_radar_tten_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/rap_control_dyn64_phy32_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.315154 -The maximum resident set size (KB) = 982816 +The total amount of wall time = 300.603950 +The maximum resident set size (KB) = 979708 Test 130 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 351.343193 -The maximum resident set size (KB) = 620944 +The total amount of wall time = 369.531631 +The maximum resident set size (KB) = 617228 Test 131 hafs_regional_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 320.014688 -The maximum resident set size (KB) = 966704 +The total amount of wall time = 355.154398 +The maximum resident set size (KB) = 962868 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,14 +4732,14 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 421.291448 -The maximum resident set size (KB) = 666536 +The total amount of wall time = 438.730589 +The maximum resident set size (KB) = 665392 Test 133 hafs_regional_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4748,14 +4748,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 750.626780 -The maximum resident set size (KB) = 691316 +The total amount of wall time = 752.176827 +The maximum resident set size (KB) = 688472 Test 134 hafs_regional_atm_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 933.836052 -The maximum resident set size (KB) = 704968 +The total amount of wall time = 947.190738 +The maximum resident set size (KB) = 706528 Test 135 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 320.150492 -The maximum resident set size (KB) = 387648 +The total amount of wall time = 323.948890 +The maximum resident set size (KB) = 390444 Test 136 hafs_regional_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4811,14 +4811,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 408.399377 -The maximum resident set size (KB) = 410968 +The total amount of wall time = 419.083475 +The maximum resident set size (KB) = 411292 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4865,14 +4865,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 174.809942 -The maximum resident set size (KB) = 282528 +The total amount of wall time = 178.064158 +The maximum resident set size (KB) = 284008 Test 138 hafs_global_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 507.720307 -The maximum resident set size (KB) = 376972 +The total amount of wall time = 513.406980 +The maximum resident set size (KB) = 369996 Test 139 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4970,14 +4970,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 222.447786 -The maximum resident set size (KB) = 422436 +The total amount of wall time = 225.541419 +The maximum resident set size (KB) = 411900 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4999,14 +4999,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 206.579523 -The maximum resident set size (KB) = 417820 +The total amount of wall time = 216.108215 +The maximum resident set size (KB) = 414940 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,42 +5015,42 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 268.429851 -The maximum resident set size (KB) = 488184 +The total amount of wall time = 277.787997 +The maximum resident set size (KB) = 488860 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 95.605926 -The maximum resident set size (KB) = 315000 +The total amount of wall time = 97.748097 +The maximum resident set size (KB) = 319588 Test 143 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 816.259567 -The maximum resident set size (KB) = 498564 +The total amount of wall time = 827.555675 +The maximum resident set size (KB) = 501768 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,14 +5061,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 522.295834 -The maximum resident set size (KB) = 530228 +The total amount of wall time = 534.652709 +The maximum resident set size (KB) = 528456 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5079,14 +5079,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 529.409840 -The maximum resident set size (KB) = 707012 +The total amount of wall time = 534.592094 +The maximum resident set size (KB) = 710948 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5096,14 +5096,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 384.686943 -The maximum resident set size (KB) = 710620 +The total amount of wall time = 395.725953 +The maximum resident set size (KB) = 710956 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5111,14 +5111,14 @@ Checking test 148 hafs_regional_docn_intel 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 = 392.604842 -The maximum resident set size (KB) = 653792 +The total amount of wall time = 441.947517 +The maximum resident set size (KB) = 655240 Test 148 hafs_regional_docn_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5126,27 +5126,27 @@ Checking test 149 hafs_regional_docn_oisst_intel 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 = 396.925525 -The maximum resident set size (KB) = 640920 +The total amount of wall time = 424.937547 +The maximum resident set size (KB) = 641236 Test 149 hafs_regional_docn_oisst_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_datm_cdeps_intel Checking test 150 hafs_regional_datm_cdeps_intel 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 = 951.862273 -The maximum resident set size (KB) = 881080 +The total amount of wall time = 959.502318 +The maximum resident set size (KB) = 880960 Test 150 hafs_regional_datm_cdeps_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_sbs_intel Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5235,14 +5235,14 @@ Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 274.928982 -The maximum resident set size (KB) = 1543700 +The total amount of wall time = 279.391007 +The maximum resident set size (KB) = 1546220 Test 151 control_p8_atmlnd_sbs_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_intel Checking test 152 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5331,14 +5331,14 @@ Checking test 152 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 277.779951 -The maximum resident set size (KB) = 1548328 +The total amount of wall time = 277.072040 +The maximum resident set size (KB) = 1538484 Test 152 control_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/control_restart_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_atmlnd_intel Checking test 153 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5359,14 +5359,14 @@ Checking test 153 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 151.491189 -The maximum resident set size (KB) = 739472 +The total amount of wall time = 155.932872 +The maximum resident set size (KB) = 738524 Test 153 control_restart_p8_atmlnd_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_intel Checking test 154 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 154 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 240.375083 -The maximum resident set size (KB) = 2849900 +The total amount of wall time = 248.697666 +The maximum resident set size (KB) = 2850348 Test 154 atmaero_control_p8_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_intel Checking test 155 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5461,14 +5461,14 @@ Checking test 155 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 278.341096 -The maximum resident set size (KB) = 2911956 +The total amount of wall time = 281.921693 +The maximum resident set size (KB) = 2910640 Test 155 atmaero_control_p8_rad_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_micro_intel Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5512,14 +5512,14 @@ Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.926042 -The maximum resident set size (KB) = 2919712 +The total amount of wall time = 293.390049 +The maximum resident set size (KB) = 2926952 Test 156 atmaero_control_p8_rad_micro_intel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_260059/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_atmaq_debug_intel Checking test 157 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5533,10 +5533,12 @@ Checking test 157 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1320.210491 -The maximum resident set size (KB) = 4439436 +The total amount of wall time = 1330.775370 +The maximum resident set size (KB) = 4440152 Test 157 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL +Fri Feb 9 20:15:43 UTC 2024 +Elapsed time: 01h:26m:10s. Have a nice day! diff --git a/tests/module-setup.sh b/tests/module-setup.sh index f0daa24cdb..f392a6c084 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -65,8 +65,8 @@ elif [[ $MACHINE_ID = stampede ]] ; then fi module purge -elif [[ $MACHINE_ID = gaea-c5 ]] ; then - # We are on GAEA C5 +elif [[ $MACHINE_ID = gaea ]] ; then + # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA # /etc/profile modifies a number of module-related variables @@ -75,7 +75,7 @@ elif [[ $MACHINE_ID = gaea-c5 ]] ; then # /etc/profile here. source /etc/profile fi - source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh + module reset elif [[ $MACHINE_ID = expanse ]]; then # We are on SDSC Expanse diff --git a/tests/opnReqTest b/tests/opnReqTest index f7cded2d64..4bec5cbc00 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -307,7 +307,7 @@ export CI_TEST=${CI_TEST:-false} # specify compiler export RT_COMPILER=${RT_COMPILER:-intel} # detect_machine sets MACHINE_ID -RT_MACHINE=${RT_MACHINE:-} +MACHINE=${MACHINE:-} source detect_machine.sh cd $PATHRT diff --git a/tests/rt.conf b/tests/rt.conf index 19c1f90733..f8abbc4158 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -31,8 +31,8 @@ RUN | cpld_control_gfsv17_iau | - noaacloud RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 RUN | cpld_mpi_gfsv17 | - noaacloud | | -COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud | fv3 | -RUN | cpld_debug_gfsv17 | - noaacloud | baseline | +COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | +RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | @@ -243,7 +243,7 @@ RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet s4 noaacloud RUN | hafs_global_storm_following_1nest_atm | - jet s4 noaacloud | baseline | # This probably works on S4, but I cannot know for certain. I don't have access to the machine. -RUN | gnv1_nested | - wcoss2 s4 noaacloud | baseline | +RUN | gnv1_nested | - hercules wcoss2 s4 noaacloud | baseline | COMPILE | hafsw_debug | intel | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON | - jet noaacloud s4 | fv3 | RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet s4 noaacloud | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 1819833aa8..960e20bb87 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -304,30 +304,32 @@ elif [[ $MACHINE_ID = acorn ]]; then PTMP=/lfs/h2/emc/ptmp SCHEDULER=pbs -elif [[ $MACHINE_ID = gaea-c5 ]]; then +elif [[ $MACHINE_ID = gaea ]]; then - module use /lustre/f2/dev/role.epic/contrib/C5/rocoto/modulefiles + module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) ROCOTO_SCHEDULER=slurm + module load PrgEnv-intel/8.3.3 module load intel-classic/2023.1.0 module load cray-mpich/8.1.25 module load python/3.9.12 - module use /lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles + module use /ncrc/proj/epic/spack-stack/modulefiles + module load gcc/12.2.0 module load ecflow/5.8.4 - ECFLOW_START=/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/ecflow-5.8.4/bin/ecflow_start.sh + ECFLOW_START=/ncrc/proj/epic/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - DISKNM=/lustre/f2/pdata/ncep/role.epic/C5/RT + DISKNM=/gpfs/f5/epic/world-shared/UFS-WM_RT QUEUE=normal COMPILE_QUEUE=normal PARTITION=c5 - STMP=/lustre/f2/scratch - PTMP=/lustre/f2/scratch + STMP=/gpfs/f5/epic/scratch + PTMP=/gpfs/f5/epic/scratch SCHEDULER=slurm @@ -657,7 +659,7 @@ if [[ $ROCOTO == true ]]; then QUEUE=main COMPILE_QUEUE=main ROCOTO_SCHEDULER=pbspro - elif [[ $MACHINE_ID = gaea-c5 ]]; then + elif [[ $MACHINE_ID = gaea ]]; then QUEUE=normal COMPILE_QUEUE=normal ROCOTO_SCHEDULER=slurm @@ -731,7 +733,7 @@ EOF QUEUE=batch elif [[ $MACHINE_ID = s4 ]]; then QUEUE=s4 - elif [[ $MACHINE_ID = gaea* ]]; then + elif [[ $MACHINE_ID = gaea ]]; then QUEUE=normal elif [[ $MACHINE_ID = derecho ]]; then QUEUE=main diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index c9c4c01802..0646266895 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -347,7 +347,7 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea-c5 jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then printf ".......ALT CHECK.." >> ${RT_LOG} printf ".......ALT CHECK.." if [[ $CMP_DATAONLY == false ]]; then @@ -469,7 +469,7 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ $MACHINE_ID == gaea-c5 ]]; then + if [[ $MACHINE_ID == gaea ]]; then BUILD_WALLTIME="01:00:00" fi @@ -482,7 +482,7 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "$MACHINE_ID" == gaea-c5 ]] ; then + if [[ "$MACHINE_ID" == gaea ]] ; then cat << EOF >> $ROCOTO_XML --clusters=es eslogin_c5 @@ -526,7 +526,7 @@ rocoto_create_run_task() { ${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE} EOF - if [[ "$MACHINE_ID" == gaea-c5 ]] ; then + if [[ "$MACHINE_ID" == gaea ]] ; then cat << EOF >> $ROCOTO_XML --clusters=${PARTITION} --partition=batch diff --git a/tests/run_test.sh b/tests/run_test.sh index a94d089c78..ab10a0e17d 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -97,7 +97,7 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. cp ${PATHRT}/module-setup.sh module-setup.sh # load nccmp module -if [[ " s4 hera orion hercules gaea-c5 jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then +if [[ " s4 hera orion hercules gaea jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then module load intel/19.1.3.304 netcdf/4.7.4 module load nccmp @@ -106,9 +106,12 @@ if [[ " s4 hera orion hercules gaea-c5 jet derecho acorn wcoss2 " =~ " $MACHINE_ module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0 module load miniconda/3.9.12 module load nccmp/1.9.0.1 - elif [[ " hera orion hercules gaea-c5 jet " =~ " ${MACHINE_ID} " ]] ; then + elif [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then module use modulefiles module load modules.fv3 + if [[ " gaea " =~ " ${MACHINE_ID} " ]]; then + module load gcc/12.2.0 + fi else module load nccmp fi diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index 7b38d66ab1..54fb6f1514 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -101,6 +101,4 @@ if [[ $MACHINE_ID = hera ]]; then TPN=30 elif [[ $MACHINE_ID = gaea ]]; then TPN=16 -elif [[ $MACHINE_ID = gaea-c5 ]]; then - TPN=16 fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index a87b1310bc..666598c1e7 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -97,6 +97,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea* ]]; then +elif [[ $MACHINE_ID = gaea ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index c81fbfba1c..75f85debf7 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -93,6 +93,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea* ]]; then +elif [[ $MACHINE_ID = gaea ]]; then TPN=18 fi From 56e31ff520e05e1fe2cec20be9697a49a2675b6a Mon Sep 17 00:00:00 2001 From: Jessica Meixner Date: Tue, 13 Feb 2024 11:17:32 -0500 Subject: [PATCH 05/10] Add extra variables to get ice temperature for marine DA (#2118) Add ice temperature in CICE output --- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 1482 +++++----- tests/logs/RegressionTests_derecho.log | 1452 +++++----- tests/logs/RegressionTests_gaea.log | 1562 +++++------ tests/logs/RegressionTests_hera.log | 2098 +++++++------- tests/logs/RegressionTests_hercules.log | 2443 ++++++++--------- tests/logs/RegressionTests_jet.log | 2125 +++++++------- tests/logs/RegressionTests_orion.log | 1590 +++++------ tests/logs/RegressionTests_wcoss2.log | 1330 ++++----- tests/parm/ice_in.IN | 3 + 13 files changed, 7034 insertions(+), 7149 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 68d139e13c..db8bf0ab30 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240208 +export BL_DATE=20240212 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 1c213bde54..5f291dc8c6 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Feb 9 14:39:17 UTC 2024 +Mon Feb 12 17:34:36 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.839267 - 0: The maximum resident set size (KB) = 1304660 + 0: The total amount of wall time = 295.377764 + 0: The maximum resident set size (KB) = 1308520 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 892.021338 - 0: The maximum resident set size (KB) = 1288444 + 0: The total amount of wall time = 905.836659 + 0: The maximum resident set size (KB) = 1289704 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.299884 - 0: The maximum resident set size (KB) = 1281236 + 0: The total amount of wall time = 247.635355 + 0: The maximum resident set size (KB) = 1280580 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.586878 - 0: The maximum resident set size (KB) = 1284604 + 0: The total amount of wall time = 255.206853 + 0: The maximum resident set size (KB) = 1273300 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.664516 - 0: The maximum resident set size (KB) = 1283488 + 0: The total amount of wall time = 251.001418 + 0: The maximum resident set size (KB) = 1281992 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.494655 - 0: The maximum resident set size (KB) = 1281868 + 0: The total amount of wall time = 245.431368 + 0: The maximum resident set size (KB) = 1281712 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_204164/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.472280 - 0: The maximum resident set size (KB) = 1283528 + 0: The total amount of wall time = 249.171559 + 0: The maximum resident set size (KB) = 1291604 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 9 17:11:49 UTC 2024 -Elapsed time: 02h:32m:32s. Have a nice day! +Mon Feb 12 18:52:54 UTC 2024 +Elapsed time: 01h:18m:18s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 50fc402047..d7a6ad9b62 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Feb 9 18:43:44 UTC 2024 +Mon Feb 12 19:53:38 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1225.252760 - 0: The maximum resident set size (KB) = 1412400 + 0: The total amount of wall time = 1226.601363 + 0: The maximum resident set size (KB) = 1406616 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu 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 = 372.797074 - 0: The maximum resident set size (KB) = 1405444 + 0: The total amount of wall time = 381.635239 + 0: The maximum resident set size (KB) = 1404212 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_46751/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 377.466475 - 0: The maximum resident set size (KB) = 1404384 + 0: The total amount of wall time = 383.441742 + 0: The maximum resident set size (KB) = 1407432 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 9 19:48:46 UTC 2024 -Elapsed time: 01h:05m:02s. Have a nice day! +Mon Feb 12 21:05:36 UTC 2024 +Elapsed time: 01h:11m:59s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 25755a6eac..42b888c371 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Feb 9 18:00:49 UTC 2024 +Mon Feb 12 18:56:01 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 521.814442 - 0: The maximum resident set size (KB) = 592736 + 0: The total amount of wall time = 518.010148 + 0: The maximum resident set size (KB) = 592116 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 512.876185 - 0: The maximum resident set size (KB) = 591908 + 0: The total amount of wall time = 520.071220 + 0: The maximum resident set size (KB) = 589292 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_143602/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 505.653831 - 0: The maximum resident set size (KB) = 596020 + 0: The total amount of wall time = 502.487646 + 0: The maximum resident set size (KB) = 592096 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 9 18:39:56 UTC 2024 -Elapsed time: 00h:39m:08s. Have a nice day! +Mon Feb 12 19:32:44 UTC 2024 +Elapsed time: 00h:36m:43s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 14cb612062..56b4542381 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,60 +1,60 @@ -Fri Feb 9 17:34:04 UTC 2024 +Tue Feb 13 14:07:51 UTC 2024 Start Regression test -Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18 +Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 519 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 185 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 505 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 236 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 596 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 522 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 525 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 460 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 458 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 183 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 571 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 526 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 518 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 526 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 555 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 561 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 563 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 197 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 571 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile ifi_intel elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 627 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 561 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 610 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1033 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 857 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 630 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 603 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 620 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 617 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 961 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 902 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 607 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 581 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 934 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 901 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile wam_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_intel elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_mixedmode_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.069319 -The maximum resident set size (KB) = 2977512 +The total amount of wall time = 320.431229 +The maximum resident set size (KB) = 2973508 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 901.574297 -The maximum resident set size (KB) = 1588856 +The total amount of wall time = 901.292979 +The maximum resident set size (KB) = 1592148 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 970.585781 -The maximum resident set size (KB) = 1714640 +The total amount of wall time = 969.922689 +The maximum resident set size (KB) = 1710552 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 449.948426 -The maximum resident set size (KB) = 849864 +The total amount of wall time = 453.198730 +The maximum resident set size (KB) = 847968 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1057.877826 -The maximum resident set size (KB) = 1570648 +The total amount of wall time = 1053.880929 +The maximum resident set size (KB) = 1573768 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1443.576316 -The maximum resident set size (KB) = 1610604 +The total amount of wall time = 1404.844347 +The maximum resident set size (KB) = 1600052 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.281607 -The maximum resident set size (KB) = 3003988 +The total amount of wall time = 363.720413 +The maximum resident set size (KB) = 3001592 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.047392 -The maximum resident set size (KB) = 3000400 +The total amount of wall time = 363.114406 +The maximum resident set size (KB) = 3003684 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.604123 -The maximum resident set size (KB) = 3058484 +The total amount of wall time = 213.666517 +The maximum resident set size (KB) = 3061748 Test 009 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.416961 -The maximum resident set size (KB) = 3028140 +The total amount of wall time = 364.516087 +The maximum resident set size (KB) = 3026600 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.152233 -The maximum resident set size (KB) = 3080048 +The total amount of wall time = 217.989895 +The maximum resident set size (KB) = 3080876 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.244114 -The maximum resident set size (KB) = 3316092 +The total amount of wall time = 324.509045 +The maximum resident set size (KB) = 3315524 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.785847 -The maximum resident set size (KB) = 2996540 +The total amount of wall time = 356.915458 +The maximum resident set size (KB) = 2997384 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -949,14 +949,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 305.227913 -The maximum resident set size (KB) = 2924320 +The total amount of wall time = 302.115277 +The maximum resident set size (KB) = 2925944 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 368.575371 -The maximum resident set size (KB) = 3000544 +The total amount of wall time = 362.349738 +The maximum resident set size (KB) = 3002992 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_s2sa_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 016 cpld_s2sa_p8_intel 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 = 342.253295 -The maximum resident set size (KB) = 2971624 +The total amount of wall time = 342.065720 +The maximum resident set size (KB) = 2974280 Test 016 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 270.201647 -The maximum resident set size (KB) = 1589376 +The total amount of wall time = 269.199649 +The maximum resident set size (KB) = 1590444 Test 017 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1219,14 +1219,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 280.223593 -The maximum resident set size (KB) = 1637552 +The total amount of wall time = 273.905327 +The maximum resident set size (KB) = 1641564 Test 018 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1288,14 +1288,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel 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 = 280.548146 -The maximum resident set size (KB) = 1634332 +The total amount of wall time = 275.468269 +The maximum resident set size (KB) = 1634952 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1345,14 +1345,14 @@ Checking test 020 cpld_control_c48_intel 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 = 405.385811 -The maximum resident set size (KB) = 2661420 +The total amount of wall time = 405.129974 +The maximum resident set size (KB) = 2659084 Test 020 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.379114 -The maximum resident set size (KB) = 3002160 +The total amount of wall time = 357.167762 +The maximum resident set size (KB) = 3001692 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 918.070525 -The maximum resident set size (KB) = 1614120 +The total amount of wall time = 917.343363 +The maximum resident set size (KB) = 1610376 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 457.209050 -The maximum resident set size (KB) = 910796 +The total amount of wall time = 457.688844 +The maximum resident set size (KB) = 906796 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1618,14 +1618,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1066.151181 -The maximum resident set size (KB) = 1584748 +The total amount of wall time = 1066.336617 +The maximum resident set size (KB) = 1580956 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1677,14 +1677,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1489.432463 -The maximum resident set size (KB) = 1606768 +The total amount of wall time = 1485.769226 +The maximum resident set size (KB) = 1624436 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1695,14 +1695,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.088566 -The maximum resident set size (KB) = 579084 +The total amount of wall time = 212.441596 +The maximum resident set size (KB) = 579916 Test 026 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.253300 -The maximum resident set size (KB) = 530832 +The total amount of wall time = 130.833019 +The maximum resident set size (KB) = 530100 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,14 +1751,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.026135 -The maximum resident set size (KB) = 533936 +The total amount of wall time = 135.932805 +The maximum resident set size (KB) = 536868 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1769,14 +1769,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.242121 -The maximum resident set size (KB) = 527860 +The total amount of wall time = 132.064553 +The maximum resident set size (KB) = 528664 Test 029 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1787,14 +1787,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.346506 -The maximum resident set size (KB) = 531484 +The total amount of wall time = 134.664278 +The maximum resident set size (KB) = 531584 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 326.434173 -The maximum resident set size (KB) = 723676 +The total amount of wall time = 327.194725 +The maximum resident set size (KB) = 720624 Test 031 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c48.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48.v2.sfc_intel Checking test 032 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1879,14 +1879,14 @@ Checking test 032 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.095293 -The maximum resident set size (KB) = 721836 +The total amount of wall time = 327.193693 +The maximum resident set size (KB) = 722684 Test 032 control_c48.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1897,14 +1897,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 527.061586 -The maximum resident set size (KB) = 646348 +The total amount of wall time = 525.939866 +The maximum resident set size (KB) = 649380 Test 033 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1915,14 +1915,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 585.491892 -The maximum resident set size (KB) = 966528 +The total amount of wall time = 582.032478 +The maximum resident set size (KB) = 962208 Test 034 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1965,14 +1965,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 511.985063 -The maximum resident set size (KB) = 1098576 +The total amount of wall time = 512.289225 +The maximum resident set size (KB) = 1097588 Test 035 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1983,28 +1983,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.729331 -The maximum resident set size (KB) = 538960 +The total amount of wall time = 88.602188 +The maximum resident set size (KB) = 534588 Test 036 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.140012 -The maximum resident set size (KB) = 338988 +The total amount of wall time = 49.392489 +The maximum resident set size (KB) = 338832 Test 037 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.444075 -The maximum resident set size (KB) = 536084 +The total amount of wall time = 83.969680 +The maximum resident set size (KB) = 534360 Test 038 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.544964 -The maximum resident set size (KB) = 528820 +The total amount of wall time = 133.774315 +The maximum resident set size (KB) = 529464 Test 039 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2059,14 +2059,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.469248 -The maximum resident set size (KB) = 530248 +The total amount of wall time = 133.041501 +The maximum resident set size (KB) = 529144 Test 040 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.594535 -The maximum resident set size (KB) = 1505512 +The total amount of wall time = 162.704931 +The maximum resident set size (KB) = 1504752 Test 041 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8.v2.sfc_intel Checking test 042 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2167,14 +2167,14 @@ Checking test 042 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.170161 -The maximum resident set size (KB) = 1505916 +The total amount of wall time = 162.596674 +The maximum resident set size (KB) = 1515040 Test 042 control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_ugwpv1_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_ugwpv1_intel Checking test 043 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2221,14 +2221,14 @@ Checking test 043 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.630728 -The maximum resident set size (KB) = 1517440 +The total amount of wall time = 159.365987 +The maximum resident set size (KB) = 1514192 Test 043 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_intel Checking test 044 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2267,14 +2267,14 @@ Checking test 044 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 89.739651 -The maximum resident set size (KB) = 697064 +The total amount of wall time = 91.789380 +The maximum resident set size (KB) = 697236 Test 044 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_noqr_p8_intel Checking test 045 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2321,14 +2321,14 @@ Checking test 045 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 162.679467 -The maximum resident set size (KB) = 1497164 +The total amount of wall time = 162.549796 +The maximum resident set size (KB) = 1500736 Test 045 control_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_noqr_p8_intel Checking test 046 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 046 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 87.179377 -The maximum resident set size (KB) = 702536 +The total amount of wall time = 88.525005 +The maximum resident set size (KB) = 703548 Test 046 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_decomp_p8_intel Checking test 047 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2417,14 +2417,14 @@ Checking test 047 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.867667 -The maximum resident set size (KB) = 1506852 +The total amount of wall time = 167.759858 +The maximum resident set size (KB) = 1505848 Test 047 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_2threads_p8_intel Checking test 048 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 048 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.236548 -The maximum resident set size (KB) = 1592596 +The total amount of wall time = 143.619906 +The maximum resident set size (KB) = 1599820 Test 048 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_lndp_intel Checking test 049 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2493,14 +2493,14 @@ Checking test 049 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 292.399085 -The maximum resident set size (KB) = 1510340 +The total amount of wall time = 292.409155 +The maximum resident set size (KB) = 1511456 Test 049 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_rrtmgp_intel Checking test 050 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2547,14 +2547,14 @@ Checking test 050 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.193873 -The maximum resident set size (KB) = 1569140 +The total amount of wall time = 217.311119 +The maximum resident set size (KB) = 1573920 Test 050 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_mynn_intel Checking test 051 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2601,14 +2601,14 @@ Checking test 051 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.738776 -The maximum resident set size (KB) = 1514804 +The total amount of wall time = 164.852610 +The maximum resident set size (KB) = 1518368 Test 051 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/merra2_thompson_intel Checking test 052 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 052 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 197.007516 -The maximum resident set size (KB) = 1520040 +The total amount of wall time = 197.178167 +The maximum resident set size (KB) = 1523776 Test 052 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_intel Checking test 053 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2673,28 +2673,28 @@ Checking test 053 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.095339 -The maximum resident set size (KB) = 611600 +The total amount of wall time = 284.982565 +The maximum resident set size (KB) = 615316 Test 053 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_restart_intel Checking test 054 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 154.086833 -The maximum resident set size (KB) = 786908 +The total amount of wall time = 153.047541 +The maximum resident set size (KB) = 781444 Test 054 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_decomp_intel Checking test 055 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 055 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.627065 -The maximum resident set size (KB) = 612448 +The total amount of wall time = 300.722561 +The maximum resident set size (KB) = 615492 Test 055 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2threads_intel Checking test 056 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2723,14 +2723,14 @@ Checking test 056 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 171.233296 -The maximum resident set size (KB) = 670288 +The total amount of wall time = 171.098769 +The maximum resident set size (KB) = 670840 Test 056 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_noquilt_intel Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2738,14 +2738,14 @@ Checking test 057 regional_noquilt_intel 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 = 277.230072 -The maximum resident set size (KB) = 1156628 +The total amount of wall time = 277.426436 +The maximum resident set size (KB) = 1146112 Test 057 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.338410 -The maximum resident set size (KB) = 614520 +The total amount of wall time = 282.463321 +The maximum resident set size (KB) = 615608 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 366.623529 -The maximum resident set size (KB) = 1590696 +The total amount of wall time = 367.031967 +The maximum resident set size (KB) = 1588752 Test 059 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_control_intel Checking test 060 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 060 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 314.701823 -The maximum resident set size (KB) = 611676 +The total amount of wall time = 315.180067 +The maximum resident set size (KB) = 613612 Test 060 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_decomp_intel Checking test 061 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2810,14 +2810,14 @@ Checking test 061 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 331.175442 -The maximum resident set size (KB) = 610184 +The total amount of wall time = 328.839821 +The maximum resident set size (KB) = 609204 Test 061 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_2threads_intel Checking test 062 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 062 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 190.343883 -The maximum resident set size (KB) = 665508 +The total amount of wall time = 188.608290 +The maximum resident set size (KB) = 667872 Test 062 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.005427 -The maximum resident set size (KB) = 913724 +The total amount of wall time = 405.866851 +The maximum resident set size (KB) = 915444 Test 063 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 237.962552 -The maximum resident set size (KB) = 1100812 +The total amount of wall time = 238.550921 +The maximum resident set size (KB) = 1092396 Test 064 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2954,14 +2954,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 418.604997 -The maximum resident set size (KB) = 913096 +The total amount of wall time = 420.264237 +The maximum resident set size (KB) = 917548 Test 065 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3008,14 +3008,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.410385 -The maximum resident set size (KB) = 996636 +The total amount of wall time = 370.200398 +The maximum resident set size (KB) = 1002652 Test 066 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.044395 -The maximum resident set size (KB) = 786800 +The total amount of wall time = 207.820131 +The maximum resident set size (KB) = 788432 Test 067 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3108,14 +3108,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.858451 -The maximum resident set size (KB) = 909660 +The total amount of wall time = 403.134456 +The maximum resident set size (KB) = 914648 Test 068 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3162,14 +3162,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.720523 -The maximum resident set size (KB) = 910392 +The total amount of wall time = 420.847383 +The maximum resident set size (KB) = 914024 Test 069 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 304.973740 -The maximum resident set size (KB) = 790356 +The total amount of wall time = 301.582506 +The maximum resident set size (KB) = 787784 Test 070 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.951558 -The maximum resident set size (KB) = 908336 +The total amount of wall time = 206.889690 +The maximum resident set size (KB) = 908760 Test 071 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.409873 -The maximum resident set size (KB) = 907676 +The total amount of wall time = 211.263517 +The maximum resident set size (KB) = 912908 Test 072 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,28 +3370,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.758241 -The maximum resident set size (KB) = 985612 +The total amount of wall time = 185.991832 +The maximum resident set size (KB) = 991112 Test 073 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 108.813453 -The maximum resident set size (KB) = 744520 +The total amount of wall time = 109.222538 +The maximum resident set size (KB) = 740620 Test 074 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.825195 -The maximum resident set size (KB) = 910400 +The total amount of wall time = 396.621180 +The maximum resident set size (KB) = 910212 Test 075 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3460,14 +3460,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.383052 -The maximum resident set size (KB) = 1872612 +The total amount of wall time = 484.017399 +The maximum resident set size (KB) = 1871832 Test 076 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3482,14 +3482,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.391748 -The maximum resident set size (KB) = 1859888 +The total amount of wall time = 467.707890 +The maximum resident set size (KB) = 1856820 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3500,14 +3500,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 337.101706 -The maximum resident set size (KB) = 606352 +The total amount of wall time = 335.608902 +The maximum resident set size (KB) = 602236 Test 078 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3518,26 +3518,26 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.555390 -The maximum resident set size (KB) = 598396 +The total amount of wall time = 332.680240 +The maximum resident set size (KB) = 598800 Test 079 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_intel Checking test 080 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.385910 -The maximum resident set size (KB) = 276576 +The total amount of wall time = 119.195700 +The maximum resident set size (KB) = 276264 Test 080 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_faster_intel Checking test 081 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 081 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.748353 -The maximum resident set size (KB) = 1500744 +The total amount of wall time = 156.352379 +The maximum resident set size (KB) = 1501296 Test 081 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_faster_intel Checking test 082 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3602,14 +3602,14 @@ Checking test 082 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 270.645322 -The maximum resident set size (KB) = 605820 +The total amount of wall time = 270.450826 +The maximum resident set size (KB) = 606332 Test 082 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3636,364 +3636,364 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.966216 -The maximum resident set size (KB) = 686040 +The total amount of wall time = 159.609238 +The maximum resident set size (KB) = 685224 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.911460 -The maximum resident set size (KB) = 688080 +The total amount of wall time = 158.309180 +The maximum resident set size (KB) = 686520 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_debug_intel Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.193481 -The maximum resident set size (KB) = 690436 +The total amount of wall time = 178.698093 +The maximum resident set size (KB) = 692508 Test 085 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_debug_intel Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.838063 -The maximum resident set size (KB) = 692140 +The total amount of wall time = 160.988509 +The maximum resident set size (KB) = 692676 Test 086 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_debug_intel Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.590459 -The maximum resident set size (KB) = 727932 +The total amount of wall time = 251.427731 +The maximum resident set size (KB) = 728560 Test 087 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_debug_intel Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.113797 -The maximum resident set size (KB) = 731936 +The total amount of wall time = 249.938562 +The maximum resident set size (KB) = 730192 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_ras_debug_intel Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.143203 -The maximum resident set size (KB) = 702056 +The total amount of wall time = 163.200331 +The maximum resident set size (KB) = 700604 Test 089 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_diag_debug_intel Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.968208 -The maximum resident set size (KB) = 747192 +The total amount of wall time = 162.505064 +The maximum resident set size (KB) = 746632 Test 090 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_debug_p8_intel Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.845102 -The maximum resident set size (KB) = 1518356 +The total amount of wall time = 168.875227 +The maximum resident set size (KB) = 1516996 Test 091 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_debug_intel Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.368932 -The maximum resident set size (KB) = 629320 +The total amount of wall time = 1047.615549 +The maximum resident set size (KB) = 630828 Test 092 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_intel Checking test 093 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.885194 -The maximum resident set size (KB) = 1072696 +The total amount of wall time = 300.926735 +The maximum resident set size (KB) = 1072836 Test 093 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_intel Checking test 094 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.667503 -The maximum resident set size (KB) = 1065048 +The total amount of wall time = 292.336573 +The maximum resident set size (KB) = 1072488 Test 094 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_gf_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_gf_debug_intel Checking test 095 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.438010 -The maximum resident set size (KB) = 1071048 +The total amount of wall time = 297.712497 +The maximum resident set size (KB) = 1073072 Test 095 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_c3_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_c3_debug_intel Checking test 096 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.459178 -The maximum resident set size (KB) = 1077248 +The total amount of wall time = 298.914574 +The maximum resident set size (KB) = 1068504 Test 096 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.352337 -The maximum resident set size (KB) = 1073256 +The total amount of wall time = 298.443865 +The maximum resident set size (KB) = 1076464 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.559939 -The maximum resident set size (KB) = 1156952 +The total amount of wall time = 309.790080 +The maximum resident set size (KB) = 1157412 Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.581865 -The maximum resident set size (KB) = 1076260 +The total amount of wall time = 305.445932 +The maximum resident set size (KB) = 1072360 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.053733 -The maximum resident set size (KB) = 1074768 +The total amount of wall time = 307.400872 +The maximum resident set size (KB) = 1075020 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.599292 -The maximum resident set size (KB) = 1075068 +The total amount of wall time = 301.700496 +The maximum resident set size (KB) = 1075720 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.156143 -The maximum resident set size (KB) = 1075180 +The total amount of wall time = 299.236826 +The maximum resident set size (KB) = 1071340 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.984446 -The maximum resident set size (KB) = 1073072 +The total amount of wall time = 294.315465 +The maximum resident set size (KB) = 1071780 Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.922273 -The maximum resident set size (KB) = 1074364 +The total amount of wall time = 298.789750 +The maximum resident set size (KB) = 1070464 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.841587 -The maximum resident set size (KB) = 1073724 +The total amount of wall time = 489.562697 +The maximum resident set size (KB) = 1068720 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.631434 -The maximum resident set size (KB) = 1064756 +The total amount of wall time = 294.369995 +The maximum resident set size (KB) = 1068972 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 348.835644 -The maximum resident set size (KB) = 1073756 +The total amount of wall time = 349.446992 +The maximum resident set size (KB) = 1074360 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.148473 -The maximum resident set size (KB) = 1073584 +The total amount of wall time = 299.718569 +The maximum resident set size (KB) = 1073616 Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_c96_no_nest_debug_intel Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4034,26 +4034,26 @@ Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 521.256417 -The maximum resident set size (KB) = 1079824 +The total amount of wall time = 522.815925 +The maximum resident set size (KB) = 1079040 Test 109 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_debug_intel Checking test 110 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.373066 -The maximum resident set size (KB) = 299136 +The total amount of wall time = 297.095886 +The maximum resident set size (KB) = 300960 Test 110 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 228.732005 -The maximum resident set size (KB) = 960160 +The total amount of wall time = 227.717135 +The maximum resident set size (KB) = 956628 Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn32_phy32_intel Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 333.378945 -The maximum resident set size (KB) = 794880 +The total amount of wall time = 334.510732 +The maximum resident set size (KB) = 797840 Test 112 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_dyn32_phy32_intel Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.792607 -The maximum resident set size (KB) = 793124 +The total amount of wall time = 176.871234 +The maximum resident set size (KB) = 790232 Test 113 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.521690 -The maximum resident set size (KB) = 860124 +The total amount of wall time = 305.969456 +The maximum resident set size (KB) = 851304 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.462393 -The maximum resident set size (KB) = 842856 +The total amount of wall time = 159.583519 +The maximum resident set size (KB) = 842592 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.999423 -The maximum resident set size (KB) = 790656 +The total amount of wall time = 183.269289 +The maximum resident set size (KB) = 791796 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,28 +4380,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.983474 -The maximum resident set size (KB) = 690988 +The total amount of wall time = 250.430677 +The maximum resident set size (KB) = 691912 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.245514 -The maximum resident set size (KB) = 672380 +The total amount of wall time = 92.610297 +The maximum resident set size (KB) = 672292 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_control_intel Checking test 119 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 119 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 116.682896 -The maximum resident set size (KB) = 1004720 +The total amount of wall time = 116.188624 +The maximum resident set size (KB) = 1004708 Test 119 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_2threads_intel Checking test 120 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 60.302281 -The maximum resident set size (KB) = 1008360 +The total amount of wall time = 58.206397 +The maximum resident set size (KB) = 1008820 Test 120 conus13km_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_restart_mismatch_intel Checking test 121 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 70.742648 -The maximum resident set size (KB) = 884664 +The total amount of wall time = 68.898752 +The maximum resident set size (KB) = 882308 Test 121 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,42 +4497,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.293293 -The maximum resident set size (KB) = 816148 +The total amount of wall time = 228.217239 +The maximum resident set size (KB) = 819428 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_dyn32_phy32_intel Checking test 123 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.066175 -The maximum resident set size (KB) = 954740 +The total amount of wall time = 292.350903 +The maximum resident set size (KB) = 954032 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_dyn32_phy32_intel Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.418924 -The maximum resident set size (KB) = 950464 +The total amount of wall time = 285.466234 +The maximum resident set size (KB) = 951840 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_intel Checking test 125 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4546,14 +4546,14 @@ Checking test 125 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 893.354675 -The maximum resident set size (KB) = 1037660 +The total amount of wall time = 893.174876 +The maximum resident set size (KB) = 1037772 Test 125 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_qr_intel Checking test 126 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4567,81 +4567,81 @@ Checking test 126 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 900.523350 -The maximum resident set size (KB) = 708992 +The total amount of wall time = 901.328606 +The maximum resident set size (KB) = 712580 Test 126 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 513.846417 -The maximum resident set size (KB) = 1037804 +The total amount of wall time = 512.860826 +The maximum resident set size (KB) = 1039008 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 893.948066 -The maximum resident set size (KB) = 1108164 +The total amount of wall time = 895.827338 +The maximum resident set size (KB) = 1107244 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.152457 -The maximum resident set size (KB) = 974948 +The total amount of wall time = 299.717674 +The maximum resident set size (KB) = 974716 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 345.541689 -The maximum resident set size (KB) = 620640 +The total amount of wall time = 344.518833 +The maximum resident set size (KB) = 618280 Test 130 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 310.406403 -The maximum resident set size (KB) = 968032 +The total amount of wall time = 312.656069 +The maximum resident set size (KB) = 975072 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4650,14 +4650,14 @@ Checking test 132 hafs_regional_atm_ocn_intel 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 = 425.847427 -The maximum resident set size (KB) = 662292 +The total amount of wall time = 427.083376 +The maximum resident set size (KB) = 668296 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4666,14 +4666,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 751.546546 -The maximum resident set size (KB) = 693516 +The total amount of wall time = 751.195662 +The maximum resident set size (KB) = 697528 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4684,14 +4684,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 934.494992 -The maximum resident set size (KB) = 705504 +The total amount of wall time = 943.834402 +The maximum resident set size (KB) = 706868 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4713,14 +4713,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 317.605218 -The maximum resident set size (KB) = 391460 +The total amount of wall time = 316.450239 +The maximum resident set size (KB) = 391032 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_telescopic_2nests_atm_intel Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4729,14 +4729,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.518609 -The maximum resident set size (KB) = 412724 +The total amount of wall time = 403.413783 +The maximum resident set size (KB) = 409532 Test 136 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_1nest_atm_intel Checking test 137 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4783,14 +4783,14 @@ Checking test 137 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 170.808951 -The maximum resident set size (KB) = 283520 +The total amount of wall time = 172.569478 +The maximum resident set size (KB) = 284704 Test 137 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4872,14 +4872,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 486.950302 -The maximum resident set size (KB) = 374216 +The total amount of wall time = 483.212421 +The maximum resident set size (KB) = 372920 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_specified_moving_1nest_atm_intel Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4888,14 +4888,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.519626 -The maximum resident set size (KB) = 420804 +The total amount of wall time = 219.339089 +The maximum resident set size (KB) = 416332 Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_intel Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,14 +4917,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 206.019923 -The maximum resident set size (KB) = 422012 +The total amount of wall time = 205.521077 +The maximum resident set size (KB) = 418608 Test 140 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4933,28 +4933,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 262.971430 -The maximum resident set size (KB) = 491188 +The total amount of wall time = 263.366887 +The maximum resident set size (KB) = 486272 Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_storm_following_1nest_atm_intel Checking test 142 hafs_global_storm_following_1nest_atm_intel 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 = 92.909982 -The maximum resident set size (KB) = 315116 +The total amount of wall time = 90.549217 +The maximum resident set size (KB) = 321300 Test 142 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/gnv1_nested_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_nested_intel Checking test 143 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5001,28 +5001,28 @@ Checking test 143 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 238.952555 -The maximum resident set size (KB) = 677024 +The total amount of wall time = 239.859329 +The maximum resident set size (KB) = 686160 Test 143 gnv1_nested_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 815.677537 -The maximum resident set size (KB) = 507680 +The total amount of wall time = 814.470927 +The maximum resident set size (KB) = 502132 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5033,14 +5033,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 516.764418 -The maximum resident set size (KB) = 530996 +The total amount of wall time = 516.576260 +The maximum resident set size (KB) = 530244 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5051,14 +5051,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 523.005603 -The maximum resident set size (KB) = 711684 +The total amount of wall time = 528.709762 +The maximum resident set size (KB) = 717224 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 386.878211 -The maximum resident set size (KB) = 710628 +The total amount of wall time = 383.115405 +The maximum resident set size (KB) = 707136 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5083,14 +5083,14 @@ Checking test 148 hafs_regional_docn_intel 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 = 391.858057 -The maximum resident set size (KB) = 656576 +The total amount of wall time = 396.820475 +The maximum resident set size (KB) = 657916 Test 148 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5098,131 +5098,131 @@ Checking test 149 hafs_regional_docn_oisst_intel 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 = 399.051624 -The maximum resident set size (KB) = 638204 +The total amount of wall time = 395.778002 +The maximum resident set size (KB) = 639052 Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_datm_cdeps_intel Checking test 150 hafs_regional_datm_cdeps_intel 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 = 945.104264 -The maximum resident set size (KB) = 884252 +The total amount of wall time = 945.419293 +The maximum resident set size (KB) = 889112 Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_intel Checking test 151 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.743454 -The maximum resident set size (KB) = 749448 +The total amount of wall time = 143.012685 +The maximum resident set size (KB) = 749816 Test 151 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_restart_cfsr_intel Checking test 152 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.123321 -The maximum resident set size (KB) = 738424 +The total amount of wall time = 86.156702 +The maximum resident set size (KB) = 739564 Test 152 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_gefs_intel Checking test 153 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.800434 -The maximum resident set size (KB) = 630120 +The total amount of wall time = 134.695417 +The maximum resident set size (KB) = 629496 Test 153 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_iau_gefs_intel Checking test 154 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.625069 -The maximum resident set size (KB) = 629184 +The total amount of wall time = 136.248477 +The maximum resident set size (KB) = 628208 Test 154 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_stochy_gefs_intel Checking test 155 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.621567 -The maximum resident set size (KB) = 635340 +The total amount of wall time = 139.094410 +The maximum resident set size (KB) = 637792 Test 155 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_ciceC_cfsr_intel Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.699376 -The maximum resident set size (KB) = 748376 +The total amount of wall time = 143.134562 +The maximum resident set size (KB) = 749684 Test 156 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_cfsr_intel Checking test 157 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.935817 -The maximum resident set size (KB) = 747108 +The total amount of wall time = 143.261497 +The maximum resident set size (KB) = 751332 Test 157 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_gefs_intel Checking test 158 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.823516 -The maximum resident set size (KB) = 627992 +The total amount of wall time = 134.663691 +The maximum resident set size (KB) = 630928 Test 158 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_cfsr_intel Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel 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 = 340.971185 -The maximum resident set size (KB) = 596184 +The total amount of wall time = 337.237935 +The maximum resident set size (KB) = 598288 Test 159 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_gefs_intel Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5247,64 +5247,64 @@ Checking test 160 datm_cdeps_mx025_gefs_intel 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 = 336.704980 -The maximum resident set size (KB) = 576776 +The total amount of wall time = 338.187934 +The maximum resident set size (KB) = 581872 Test 160 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_multiple_files_cfsr_intel Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.802480 -The maximum resident set size (KB) = 747548 +The total amount of wall time = 142.816363 +The maximum resident set size (KB) = 750292 Test 161 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_3072x1536_cfsr_intel Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 261.008363 -The maximum resident set size (KB) = 2008308 +The total amount of wall time = 261.035149 +The maximum resident set size (KB) = 2010712 Test 162 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_gfs_intel Checking test 163 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 261.373898 -The maximum resident set size (KB) = 2004796 +The total amount of wall time = 262.797641 +The maximum resident set size (KB) = 2002756 Test 163 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.413445 -The maximum resident set size (KB) = 750572 +The total amount of wall time = 142.957460 +The maximum resident set size (KB) = 750104 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel 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 @@ -5313,14 +5313,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 57.234886 -The maximum resident set size (KB) = 218580 +The total amount of wall time = 57.185813 +The maximum resident set size (KB) = 221464 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_intel Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 58.410388 -The maximum resident set size (KB) = 365616 +The total amount of wall time = 57.839392 +The maximum resident set size (KB) = 369372 Test 166 datm_cdeps_lnd_era5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/datm_cdeps_lnd_era5_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_rst_intel Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5345,14 +5345,14 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 42.190902 -The maximum resident set size (KB) = 369756 +The total amount of wall time = 42.316296 +The maximum resident set size (KB) = 373544 Test 167 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_sbs_intel Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5441,14 +5441,14 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 274.975496 -The maximum resident set size (KB) = 1546104 +The total amount of wall time = 272.868141 +The maximum resident set size (KB) = 1546444 Test 168 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_p8_atmlnd_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_intel Checking test 169 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5537,14 +5537,14 @@ Checking test 169 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 274.189530 -The maximum resident set size (KB) = 1548268 +The total amount of wall time = 273.885303 +The maximum resident set size (KB) = 1546224 Test 169 control_p8_atmlnd_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_restart_p8_atmlnd_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_atmlnd_intel Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5565,14 +5565,14 @@ Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 153.971567 -The maximum resident set size (KB) = 739256 +The total amount of wall time = 154.539803 +The maximum resident set size (KB) = 746436 Test 170 control_restart_p8_atmlnd_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmwav_control_noaero_p8_intel Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5615,14 +5615,14 @@ Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 100.416904 -The maximum resident set size (KB) = 1548012 +The total amount of wall time = 99.355693 +The maximum resident set size (KB) = 1542124 Test 171 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_atmwav_intel Checking test 172 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5666,14 +5666,14 @@ Checking test 172 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.242314 -The maximum resident set size (KB) = 543824 +The total amount of wall time = 91.398439 +The maximum resident set size (KB) = 543620 Test 172 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_intel Checking test 173 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5717,14 +5717,14 @@ Checking test 173 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 237.901667 -The maximum resident set size (KB) = 2852976 +The total amount of wall time = 237.485997 +The maximum resident set size (KB) = 2853732 Test 173 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_intel Checking test 174 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5768,14 +5768,14 @@ Checking test 174 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 274.289914 -The maximum resident set size (KB) = 2910532 +The total amount of wall time = 276.392883 +The maximum resident set size (KB) = 2912172 Test 174 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_micro_intel Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5819,14 +5819,14 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 291.077525 -The maximum resident set size (KB) = 2924636 +The total amount of wall time = 290.078744 +The maximum resident set size (KB) = 2926236 Test 175 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_47503/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5840,12 +5840,12 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1320.749454 -The maximum resident set size (KB) = 4429316 +The total amount of wall time = 1314.650533 +The maximum resident set size (KB) = 4446796 Test 176 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 9 19:28:48 UTC 2024 -Elapsed time: 01h:54m:45s. Have a nice day! +Tue Feb 13 16:09:34 UTC 2024 +Elapsed time: 02h:01m:44s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 52cd1218aa..94d295595d 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,60 +1,60 @@ -Thu 08 Feb 2024 07:35:51 PM MST +Mon 12 Feb 2024 01:36:18 PM MST Start Regression test -Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372 +Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 673 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 648 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 495 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 762 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 755 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 763 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 315 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 470 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 146 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 841 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 987 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 435 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1153 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 928 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 723 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 334 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 654 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 874 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 865 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1185 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 572 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1263 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1159 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1136 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 540 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 703 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 680 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 525 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 777 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 1398 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 817 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 780 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 344 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 516 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 507 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 165 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 899 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 1050 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 457 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1174 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 972 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 722 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 344 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1189 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1244 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 589 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1186 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 545 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 546 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile s2sw_pdlib_intel elapsed time 1192 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile wam_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_mixedmode_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 283.116339 -The maximum resident set size (KB) = 3072688 +The total amount of wall time = 288.602343 +The maximum resident set size (KB) = 3073956 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 813.943705 -The maximum resident set size (KB) = 1681460 +The total amount of wall time = 814.196932 +The maximum resident set size (KB) = 1687380 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_gfsv17_iau_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 897.250202 -The maximum resident set size (KB) = 1817348 +The total amount of wall time = 937.377291 +The maximum resident set size (KB) = 1823880 -Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2 +Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 422.482839 -The maximum resident set size (KB) = 955876 +The total amount of wall time = 476.203031 +The maximum resident set size (KB) = 952916 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 929.949945 -The maximum resident set size (KB) = 1653052 +The total amount of wall time = 933.145973 +The maximum resident set size (KB) = 1655220 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1278.854488 -The maximum resident set size (KB) = 1694924 +The total amount of wall time = 1287.378206 +The maximum resident set size (KB) = 1703508 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.480126 -The maximum resident set size (KB) = 3092824 +The total amount of wall time = 331.920058 +The maximum resident set size (KB) = 3095304 Test 007 cpld_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_p8.v2.sfc_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 329.186547 -The maximum resident set size (KB) = 3096724 +The total amount of wall time = 332.283151 +The maximum resident set size (KB) = 3095476 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 187.927131 -The maximum resident set size (KB) = 3150752 +The total amount of wall time = 196.217077 +The maximum resident set size (KB) = 3149996 Test 009 cpld_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_qr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.802251 -The maximum resident set size (KB) = 3129004 +The total amount of wall time = 325.627887 +The maximum resident set size (KB) = 3128056 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_qr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 188.573617 -The maximum resident set size (KB) = 3177364 +The total amount of wall time = 223.557838 +The maximum resident set size (KB) = 3181580 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_decomp_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 323.111015 -The maximum resident set size (KB) = 3092532 +The total amount of wall time = 325.031693 +The maximum resident set size (KB) = 3090352 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 262.378434 -The maximum resident set size (KB) = 3387196 +The total amount of wall time = 268.398233 +The maximum resident set size (KB) = 3386300 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_ciceC_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -961,14 +961,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.817171 -The maximum resident set size (KB) = 3101008 +The total amount of wall time = 328.715085 +The maximum resident set size (KB) = 3102656 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c192_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 514.049625 -The maximum resident set size (KB) = 3638412 +The total amount of wall time = 588.682635 +The maximum resident set size (KB) = 3639424 Test 015 cpld_control_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_c192_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1081,14 +1081,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 336.915721 -The maximum resident set size (KB) = 3614852 +The total amount of wall time = 446.236767 +The maximum resident set size (KB) = 3617112 Test 016 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_s2sa_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_s2sa_p8_intel Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_s2sa_p8_intel 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 = 302.029895 -The maximum resident set size (KB) = 3070504 +The total amount of wall time = 309.203029 +The maximum resident set size (KB) = 3066608 Test 017 cpld_s2sa_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_intel Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1210,14 +1210,14 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 241.657851 -The maximum resident set size (KB) = 1681732 +The total amount of wall time = 241.758081 +The maximum resident set size (KB) = 1678600 Test 018 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_nowave_noaero_p8_intel Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel 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 = 245.482355 -The maximum resident set size (KB) = 1723964 +The total amount of wall time = 247.043372 +The maximum resident set size (KB) = 1723372 Test 019 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_p8_intel Checking test 020 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 020 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 452.200683 -The maximum resident set size (KB) = 3151076 +The total amount of wall time = 448.087267 +The maximum resident set size (KB) = 3146828 Test 020 cpld_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_noaero_p8_intel Checking test 021 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 021 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 301.799048 -The maximum resident set size (KB) = 1701056 +The total amount of wall time = 298.763897 +The maximum resident set size (KB) = 1697424 Test 021 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_agrid_intel Checking test 022 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 022 cpld_control_noaero_p8_agrid_intel 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 = 243.747092 -The maximum resident set size (KB) = 1731124 +The total amount of wall time = 243.589641 +The maximum resident set size (KB) = 1724812 Test 022 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_c48_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c48_intel Checking test 023 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1524,14 +1524,14 @@ Checking test 023 cpld_control_c48_intel 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 = 386.919764 -The maximum resident set size (KB) = 2673324 +The total amount of wall time = 388.455720 +The maximum resident set size (KB) = 2665152 Test 023 cpld_control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_control_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1595,14 +1595,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 827.704808 -The maximum resident set size (KB) = 1698132 +The total amount of wall time = 830.770867 +The maximum resident set size (KB) = 1697800 Test 024 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_restart_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1654,14 +1654,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 427.614309 -The maximum resident set size (KB) = 1016316 +The total amount of wall time = 477.982337 +The maximum resident set size (KB) = 1012048 Test 025 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1725,14 +1725,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 947.559386 -The maximum resident set size (KB) = 1670052 +The total amount of wall time = 957.689695 +The maximum resident set size (KB) = 1668528 Test 026 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/cpld_debug_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1346.192107 -The maximum resident set size (KB) = 1711564 +The total amount of wall time = 1352.203651 +The maximum resident set size (KB) = 1713100 -Test 027 cpld_debug_pdlib_p8_intel PASS Tries: 2 +Test 027 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_flake_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 195.138807 -The maximum resident set size (KB) = 667604 +The total amount of wall time = 202.034991 +The maximum resident set size (KB) = 665388 Test 028 control_flake_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1836,14 +1836,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 114.646694 -The maximum resident set size (KB) = 617372 +The total amount of wall time = 124.441774 +The maximum resident set size (KB) = 615936 Test 029 control_CubedSphereGrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1858,14 +1858,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 120.851852 -The maximum resident set size (KB) = 622264 +The total amount of wall time = 137.730464 +The maximum resident set size (KB) = 620336 Test 030 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_latlon_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1876,14 +1876,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 115.032899 -The maximum resident set size (KB) = 620848 +The total amount of wall time = 171.127843 +The maximum resident set size (KB) = 618024 Test 031 control_latlon_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1894,14 +1894,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 116.134178 -The maximum resident set size (KB) = 617140 +The total amount of wall time = 136.390977 +The maximum resident set size (KB) = 621092 Test 032 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1940,14 +1940,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 309.345123 -The maximum resident set size (KB) = 729544 +The total amount of wall time = 310.765956 +The maximum resident set size (KB) = 729684 Test 033 control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c48.v2.sfc_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1986,14 +1986,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.068806 -The maximum resident set size (KB) = 729312 +The total amount of wall time = 320.032655 +The maximum resident set size (KB) = 727880 Test 034 control_c48.v2.sfc_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c192_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 459.944531 -The maximum resident set size (KB) = 734336 +The total amount of wall time = 491.553781 +The maximum resident set size (KB) = 738028 -Test 035 control_c192_intel PASS Tries: 2 +Test 035 control_c192_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 477.700454 -The maximum resident set size (KB) = 1062916 +The total amount of wall time = 765.548261 +The maximum resident set size (KB) = 1053572 -Test 036 control_c384_intel PASS Tries: 2 +Test 036 control_c384_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_c384gdas_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2072,14 +2072,14 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 424.307740 -The maximum resident set size (KB) = 1199572 +The total amount of wall time = 511.921395 +The maximum resident set size (KB) = 1195448 Test 037 control_c384gdas_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2090,28 +2090,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 75.804766 -The maximum resident set size (KB) = 623532 +The total amount of wall time = 84.368241 +The maximum resident set size (KB) = 622972 Test 038 control_stochy_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 41.742004 -The maximum resident set size (KB) = 436716 +The total amount of wall time = 55.213178 +The maximum resident set size (KB) = 436564 Test 039 control_stochy_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 71.450324 -The maximum resident set size (KB) = 620356 +The total amount of wall time = 117.043323 +The maximum resident set size (KB) = 620120 Test 040 control_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr4_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 115.173531 -The maximum resident set size (KB) = 618900 +The total amount of wall time = 167.870924 +The maximum resident set size (KB) = 615808 -Test 041 control_iovr4_intel PASS Tries: 2 +Test 041 control_iovr4_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_iovr5_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 115.437444 -The maximum resident set size (KB) = 617796 +The total amount of wall time = 132.780874 +The maximum resident set size (KB) = 616668 Test 042 control_iovr5_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2220,14 +2220,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 139.985306 -The maximum resident set size (KB) = 1599704 +The total amount of wall time = 151.182866 +The maximum resident set size (KB) = 1592816 Test 043 control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8.v2.sfc_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2274,14 +2274,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 140.002842 -The maximum resident set size (KB) = 1599864 +The total amount of wall time = 151.435672 +The maximum resident set size (KB) = 1601420 Test 044 control_p8.v2.sfc_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_ugwpv1_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 139.353776 -The maximum resident set size (KB) = 1597044 +The total amount of wall time = 156.573410 +The maximum resident set size (KB) = 1601464 Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2374,14 +2374,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 75.146615 -The maximum resident set size (KB) = 791972 +The total amount of wall time = 82.133288 +The maximum resident set size (KB) = 791908 Test 046 control_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_noqr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2428,14 +2428,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 139.945671 -The maximum resident set size (KB) = 1576984 +The total amount of wall time = 144.799167 +The maximum resident set size (KB) = 1585932 Test 047 control_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_noqr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2474,14 +2474,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 73.537670 -The maximum resident set size (KB) = 799724 +The total amount of wall time = 77.176710 +The maximum resident set size (KB) = 796552 Test 048 control_restart_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_decomp_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 144.155448 -The maximum resident set size (KB) = 1593868 +The total amount of wall time = 160.659227 +The maximum resident set size (KB) = 1590344 Test 049 control_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_lndp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_lndp_intel Checking test 050 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2550,14 +2550,14 @@ Checking test 050 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 252.377982 -The maximum resident set size (KB) = 1600412 +The total amount of wall time = 288.334525 +The maximum resident set size (KB) = 1590840 Test 050 control_p8_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_rrtmgp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_rrtmgp_intel Checking test 051 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 051 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.306214 -The maximum resident set size (KB) = 1655904 +The total amount of wall time = 314.782282 +The maximum resident set size (KB) = 1648472 Test 051 control_p8_rrtmgp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_mynn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_mynn_intel Checking test 052 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2658,14 +2658,14 @@ Checking test 052 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 141.528162 -The maximum resident set size (KB) = 1600840 +The total amount of wall time = 204.067715 +The maximum resident set size (KB) = 1600768 Test 052 control_p8_mynn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/merra2_thompson_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/merra2_thompson_intel Checking test 053 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2712,14 +2712,14 @@ Checking test 053 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.983004 -The maximum resident set size (KB) = 1598496 +The total amount of wall time = 209.558273 +The maximum resident set size (KB) = 1605820 Test 053 merra2_thompson_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_intel Checking test 054 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2730,28 +2730,28 @@ Checking test 054 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 261.109765 -The maximum resident set size (KB) = 626132 +The total amount of wall time = 309.793229 +The maximum resident set size (KB) = 626840 Test 054 regional_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_restart_intel Checking test 055 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 140.810195 -The maximum resident set size (KB) = 795928 +The total amount of wall time = 160.267760 +The maximum resident set size (KB) = 793720 Test 055 regional_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_decomp_intel Checking test 056 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 056 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 273.113666 -The maximum resident set size (KB) = 625916 +The total amount of wall time = 360.013638 +The maximum resident set size (KB) = 627252 Test 056 regional_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_noquilt_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_noquilt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_noquilt_intel Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2777,28 +2777,28 @@ Checking test 057 regional_noquilt_intel 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 = 254.863225 -The maximum resident set size (KB) = 1157048 +The total amount of wall time = 318.554664 +The maximum resident set size (KB) = 1156508 Test 057 regional_noquilt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_netcdf_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_netcdf_parallel_intel Checking test 058 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 256.349682 -The maximum resident set size (KB) = 622116 +The total amount of wall time = 305.720100 +The maximum resident set size (KB) = 620564 Test 058 regional_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_2dwrtdecomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_2dwrtdecomp_intel Checking test 059 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2809,14 +2809,14 @@ Checking test 059 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 262.120628 -The maximum resident set size (KB) = 627004 +The total amount of wall time = 308.398466 +The maximum resident set size (KB) = 626556 Test 059 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_wofs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_wofs_intel Checking test 060 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 060 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 322.736964 -The maximum resident set size (KB) = 1597032 +The total amount of wall time = 395.219570 +The maximum resident set size (KB) = 1596240 Test 060 regional_wofs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_intel Checking test 061 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2881,14 +2881,14 @@ Checking test 061 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 355.672496 -The maximum resident set size (KB) = 1008760 +The total amount of wall time = 417.139771 +The maximum resident set size (KB) = 1007760 Test 061 rap_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_intel Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2899,14 +2899,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 206.335463 -The maximum resident set size (KB) = 1193964 +The total amount of wall time = 205.921153 +The maximum resident set size (KB) = 1195768 Test 062 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_decomp_intel Checking test 063 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2953,14 +2953,14 @@ Checking test 063 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 369.997382 -The maximum resident set size (KB) = 1007820 +The total amount of wall time = 499.315620 +The maximum resident set size (KB) = 1006488 Test 063 rap_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2999,14 +2999,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.773442 -The maximum resident set size (KB) = 881852 +The total amount of wall time = 227.518708 +The maximum resident set size (KB) = 878812 Test 064 rap_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3053,14 +3053,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 356.264052 -The maximum resident set size (KB) = 1005568 +The total amount of wall time = 387.246909 +The maximum resident set size (KB) = 1007368 Test 065 rap_sfcdiff_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3107,14 +3107,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.098443 -The maximum resident set size (KB) = 1008792 +The total amount of wall time = 456.217018 +The maximum resident set size (KB) = 1007816 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 265.527425 -The maximum resident set size (KB) = 884084 +The total amount of wall time = 294.481127 +The maximum resident set size (KB) = 881392 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.260712 -The maximum resident set size (KB) = 1001448 +The total amount of wall time = 187.954364 +The maximum resident set size (KB) = 1003864 Test 068 hrrr_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3261,14 +3261,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.244718 -The maximum resident set size (KB) = 1004132 +The total amount of wall time = 205.126873 +The maximum resident set size (KB) = 1006420 Test 069 hrrr_control_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_2threads_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3315,28 +3315,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.179313 -The maximum resident set size (KB) = 1087204 +The total amount of wall time = 160.413069 +The maximum resident set size (KB) = 1087428 Test 070 hrrr_control_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 95.552484 -The maximum resident set size (KB) = 837104 +The total amount of wall time = 102.313442 +The maximum resident set size (KB) = 835272 Test 071 hrrr_control_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3383,14 +3383,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 347.136479 -The maximum resident set size (KB) = 1003412 +The total amount of wall time = 403.713541 +The maximum resident set size (KB) = 996680 Test 072 rrfs_v1beta_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3405,14 +3405,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 431.703119 -The maximum resident set size (KB) = 1960876 +The total amount of wall time = 482.397635 +The maximum resident set size (KB) = 1960020 Test 073 rrfs_v1nssl_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3427,14 +3427,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 413.903843 -The maximum resident set size (KB) = 1950852 +The total amount of wall time = 419.172514 +The maximum resident set size (KB) = 1949072 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3445,14 +3445,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 300.668152 -The maximum resident set size (KB) = 690452 +The total amount of wall time = 305.898667 +The maximum resident set size (KB) = 689692 Test 075 control_csawmg_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 298.459430 -The maximum resident set size (KB) = 692876 +The total amount of wall time = 306.089390 +The maximum resident set size (KB) = 689164 Test 076 control_csawmgt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3481,26 +3481,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 162.560573 -The maximum resident set size (KB) = 654488 +The total amount of wall time = 163.040855 +The maximum resident set size (KB) = 654060 Test 077 control_ras_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 105.149311 -The maximum resident set size (KB) = 383768 +The total amount of wall time = 104.626584 +The maximum resident set size (KB) = 381208 Test 078 control_wam_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3547,14 +3547,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 132.858699 -The maximum resident set size (KB) = 1594508 +The total amount of wall time = 144.889882 +The maximum resident set size (KB) = 1595648 Test 079 control_p8_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_control_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3565,14 +3565,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 246.277595 -The maximum resident set size (KB) = 624140 +The total amount of wall time = 323.096184 +The maximum resident set size (KB) = 629380 Test 080 regional_control_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_CubedSphereGrid_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3599,364 +3599,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 143.051336 -The maximum resident set size (KB) = 792764 +The total amount of wall time = 145.177422 +The maximum resident set size (KB) = 795096 Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.115260 -The maximum resident set size (KB) = 791528 +The total amount of wall time = 141.945284 +The maximum resident set size (KB) = 795288 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_stochy_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.055984 -The maximum resident set size (KB) = 801540 +The total amount of wall time = 167.277840 +The maximum resident set size (KB) = 801296 Test 083 control_stochy_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_lndp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 147.219860 -The maximum resident set size (KB) = 796288 +The total amount of wall time = 150.997387 +The maximum resident set size (KB) = 801992 Test 084 control_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmg_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 224.749099 -The maximum resident set size (KB) = 833248 +The total amount of wall time = 225.445747 +The maximum resident set size (KB) = 837068 Test 085 control_csawmg_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_csawmgt_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 220.319064 -The maximum resident set size (KB) = 835732 +The total amount of wall time = 225.115468 +The maximum resident set size (KB) = 836848 Test 086 control_csawmgt_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_ras_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.920210 -The maximum resident set size (KB) = 803944 +The total amount of wall time = 148.890614 +The maximum resident set size (KB) = 808844 Test 087 control_ras_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_diag_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.018536 -The maximum resident set size (KB) = 852472 +The total amount of wall time = 152.891124 +The maximum resident set size (KB) = 854444 Test 088 control_diag_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_debug_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.318865 -The maximum resident set size (KB) = 1629036 +The total amount of wall time = 164.320659 +The maximum resident set size (KB) = 1632164 Test 089 control_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 945.852804 -The maximum resident set size (KB) = 661600 +The total amount of wall time = 957.580876 +The maximum resident set size (KB) = 665856 Test 090 regional_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.242571 -The maximum resident set size (KB) = 1179124 +The total amount of wall time = 280.137450 +The maximum resident set size (KB) = 1183164 Test 091 rap_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 268.562304 -The maximum resident set size (KB) = 1174500 +The total amount of wall time = 267.374479 +The maximum resident set size (KB) = 1173532 Test 092 hrrr_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_gf_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.039593 -The maximum resident set size (KB) = 1176192 +The total amount of wall time = 297.902826 +The maximum resident set size (KB) = 1179168 Test 093 hrrr_gf_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_c3_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.103612 -The maximum resident set size (KB) = 1181928 +The total amount of wall time = 270.386634 +The maximum resident set size (KB) = 1183592 Test 094 hrrr_c3_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_drag_suite_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 268.926176 -The maximum resident set size (KB) = 1180024 +The total amount of wall time = 270.302507 +The maximum resident set size (KB) = 1182768 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_diag_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.393634 -The maximum resident set size (KB) = 1262036 +The total amount of wall time = 283.259906 +The maximum resident set size (KB) = 1266396 Test 096 rap_diag_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_cires_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.169079 -The maximum resident set size (KB) = 1179424 +The total amount of wall time = 275.841578 +The maximum resident set size (KB) = 1182244 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_unified_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 281.839362 -The maximum resident set size (KB) = 1181140 +The total amount of wall time = 273.776376 +The maximum resident set size (KB) = 1181452 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_lndp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.484551 -The maximum resident set size (KB) = 1180268 +The total amount of wall time = 270.128390 +The maximum resident set size (KB) = 1179364 Test 099 rap_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_progcld_thompson_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.486570 -The maximum resident set size (KB) = 1179744 +The total amount of wall time = 268.873664 +The maximum resident set size (KB) = 1179612 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.635725 -The maximum resident set size (KB) = 1177000 +The total amount of wall time = 268.413581 +The maximum resident set size (KB) = 1176872 Test 101 rap_noah_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_sfcdiff_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 268.662886 -The maximum resident set size (KB) = 1178260 +The total amount of wall time = 267.450367 +The maximum resident set size (KB) = 1181404 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 440.230638 -The maximum resident set size (KB) = 1175020 +The total amount of wall time = 437.998968 +The maximum resident set size (KB) = 1178544 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rrfs_v1beta_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 264.357214 -The maximum resident set size (KB) = 1175180 +The total amount of wall time = 267.471450 +The maximum resident set size (KB) = 1175524 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_clm_lake_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 335.581738 -The maximum resident set size (KB) = 1183080 +The total amount of wall time = 336.511402 +The maximum resident set size (KB) = 1181144 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_flake_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 274.315894 -The maximum resident set size (KB) = 1178156 +The total amount of wall time = 268.971392 +The maximum resident set size (KB) = 1183748 Test 106 rap_flake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_c96_no_nest_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3997,26 +3997,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 479.027383 -The maximum resident set size (KB) = 1179752 +The total amount of wall time = 465.482207 +The maximum resident set size (KB) = 1182972 Test 107 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_wam_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 277.006958 -The maximum resident set size (KB) = 417856 +The total amount of wall time = 274.345175 +The maximum resident set size (KB) = 422312 Test 108 control_wam_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4027,14 +4027,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 193.741344 -The maximum resident set size (KB) = 1058576 +The total amount of wall time = 212.965632 +The maximum resident set size (KB) = 1057376 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4081,14 +4081,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.409683 -The maximum resident set size (KB) = 883064 +The total amount of wall time = 297.864120 +The maximum resident set size (KB) = 881616 Test 110 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.130259 -The maximum resident set size (KB) = 879588 +The total amount of wall time = 156.884689 +The maximum resident set size (KB) = 881588 Test 111 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_dyn32_phy32_intel Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4189,14 +4189,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.224962 -The maximum resident set size (KB) = 880760 +The total amount of wall time = 165.626405 +The maximum resident set size (KB) = 880152 Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_restart_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_dyn32_phy32_intel Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4235,28 +4235,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 222.610543 -The maximum resident set size (KB) = 795532 +The total amount of wall time = 222.089931 +The maximum resident set size (KB) = 795168 Test 113 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_dyn32_phy32_intel Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.400520 -The maximum resident set size (KB) = 776720 +The total amount of wall time = 83.327707 +The maximum resident set size (KB) = 774912 Test 114 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4272,40 +4272,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 102.604974 -The maximum resident set size (KB) = 1084384 +The total amount of wall time = 106.401035 +The maximum resident set size (KB) = 1085956 Test 115 conus13km_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_2threads_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 45.782977 -The maximum resident set size (KB) = 1085228 +The total amount of wall time = 48.632565 +The maximum resident set size (KB) = 1365176 Test 116 conus13km_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_restart_mismatch_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 59.109964 -The maximum resident set size (KB) = 977056 +The total amount of wall time = 61.284476 +The maximum resident set size (KB) = 975664 Test 117 conus13km_restart_mismatch_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4352,42 +4352,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.999676 -The maximum resident set size (KB) = 907660 +The total amount of wall time = 210.883561 +The maximum resident set size (KB) = 905916 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_debug_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.602129 -The maximum resident set size (KB) = 1054716 +The total amount of wall time = 260.468033 +The maximum resident set size (KB) = 1052496 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.765049 -The maximum resident set size (KB) = 1050544 +The total amount of wall time = 254.759186 +The maximum resident set size (KB) = 1052188 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4401,67 +4401,67 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 790.038482 -The maximum resident set size (KB) = 1129896 +The total amount of wall time = 784.251934 +The maximum resident set size (KB) = 1130368 Test 121 conus13km_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/conus13km_radar_tten_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_radar_tten_debug_intel Checking test 122 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 791.513741 -The maximum resident set size (KB) = 1197900 +The total amount of wall time = 787.499656 +The maximum resident set size (KB) = 1197980 Test 122 conus13km_radar_tten_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/rap_control_dyn64_phy32_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_debug_intel Checking test 123 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 263.106216 -The maximum resident set size (KB) = 1080332 +The total amount of wall time = 268.565882 +The maximum resident set size (KB) = 1083652 Test 123 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_intel Checking test 124 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 259.304606 -The maximum resident set size (KB) = 720072 +The total amount of wall time = 273.589214 +The maximum resident set size (KB) = 716596 Test 124 hafs_regional_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_thompson_gfdlsf_intel Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 292.917706 -The maximum resident set size (KB) = 1065116 +The total amount of wall time = 312.596870 +The maximum resident set size (KB) = 1067424 Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_intel Checking test 126 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4470,14 +4470,14 @@ Checking test 126 hafs_regional_atm_ocn_intel 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 = 373.049608 -The maximum resident set size (KB) = 775664 +The total amount of wall time = 379.850360 +The maximum resident set size (KB) = 778160 Test 126 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_wav_intel Checking test 127 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4486,14 +4486,14 @@ Checking test 127 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 644.261762 -The maximum resident set size (KB) = 790424 +The total amount of wall time = 646.873869 +The maximum resident set size (KB) = 791380 Test 127 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_atm_ocn_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_wav_intel Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4504,14 +4504,14 @@ Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 709.546700 -The maximum resident set size (KB) = 810576 +The total amount of wall time = 716.296851 +The maximum resident set size (KB) = 807876 Test 128 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_1nest_atm_intel Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4533,14 +4533,14 @@ Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 261.969825 -The maximum resident set size (KB) = 478496 +The total amount of wall time = 266.794227 +The maximum resident set size (KB) = 1365176 Test 129 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_telescopic_2nests_atm_intel Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 332.239233 -The maximum resident set size (KB) = 494656 +The total amount of wall time = 333.562804 +The maximum resident set size (KB) = 497284 Test 130 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_1nest_atm_intel Checking test 131 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4603,14 +4603,14 @@ Checking test 131 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 127.034352 -The maximum resident set size (KB) = 392964 +The total amount of wall time = 132.995751 +The maximum resident set size (KB) = 392268 Test 131 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_multiple_4nests_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4692,14 +4692,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 364.922319 -The maximum resident set size (KB) = 458960 +The total amount of wall time = 370.955412 +The maximum resident set size (KB) = 456392 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_specified_moving_1nest_atm_intel Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 182.517862 -The maximum resident set size (KB) = 512004 +The total amount of wall time = 189.016256 +The maximum resident set size (KB) = 511904 Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_intel Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 170.141584 -The maximum resident set size (KB) = 512536 +The total amount of wall time = 173.741243 +The maximum resident set size (KB) = 1233084 Test 134 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4753,28 +4753,28 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 213.809751 -The maximum resident set size (KB) = 591644 +The total amount of wall time = 217.563287 +The maximum resident set size (KB) = 586808 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_global_storm_following_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel 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 = 62.314111 -The maximum resident set size (KB) = 422892 +The total amount of wall time = 64.779542 +The maximum resident set size (KB) = 427384 Test 136 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/gnv1_nested_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_nested_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_nested_intel Checking test 137 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4821,28 +4821,28 @@ Checking test 137 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 188.533083 -The maximum resident set size (KB) = 789572 +The total amount of wall time = 192.661897 +The maximum resident set size (KB) = 784416 Test 137 gnv1_nested_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 704.003045 -The maximum resident set size (KB) = 607608 +The total amount of wall time = 732.193463 +The maximum resident set size (KB) = 611776 Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4853,14 +4853,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 412.863336 -The maximum resident set size (KB) = 627584 +The total amount of wall time = 419.068818 +The maximum resident set size (KB) = 626428 Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4871,14 +4871,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 422.899779 -The maximum resident set size (KB) = 682664 +The total amount of wall time = 422.708319 +The maximum resident set size (KB) = 681652 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -4888,14 +4888,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 304.944588 -The maximum resident set size (KB) = 673216 +The total amount of wall time = 307.553309 +The maximum resident set size (KB) = 673860 Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_intel Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4903,14 +4903,14 @@ Checking test 142 hafs_regional_docn_intel 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 = 319.054045 -The maximum resident set size (KB) = 748412 +The total amount of wall time = 320.902519 +The maximum resident set size (KB) = 749688 Test 142 hafs_regional_docn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_docn_oisst_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_oisst_intel Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4918,131 +4918,131 @@ Checking test 143 hafs_regional_docn_oisst_intel 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 = 322.042774 -The maximum resident set size (KB) = 733540 +The total amount of wall time = 325.503921 +The maximum resident set size (KB) = 735064 Test 143 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/hafs_regional_datm_cdeps_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_datm_cdeps_intel Checking test 144 hafs_regional_datm_cdeps_intel 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 = 958.298657 -The maximum resident set size (KB) = 892616 +The total amount of wall time = 958.132693 +The maximum resident set size (KB) = 892076 Test 144 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_intel Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 140.831670 -The maximum resident set size (KB) = 762300 +The total amount of wall time = 141.793267 +The maximum resident set size (KB) = 760576 Test 145 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_restart_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_restart_cfsr_intel Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.601070 -The maximum resident set size (KB) = 747924 +The total amount of wall time = 85.265694 +The maximum resident set size (KB) = 749492 Test 146 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_gefs_intel Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.957403 -The maximum resident set size (KB) = 640304 +The total amount of wall time = 134.524110 +The maximum resident set size (KB) = 641140 Test 147 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_iau_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_iau_gefs_intel Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.465227 -The maximum resident set size (KB) = 644380 +The total amount of wall time = 136.665812 +The maximum resident set size (KB) = 639816 Test 148 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_stochy_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_stochy_gefs_intel Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 135.448355 -The maximum resident set size (KB) = 640180 +The total amount of wall time = 137.937302 +The maximum resident set size (KB) = 639876 Test 149 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_ciceC_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_ciceC_cfsr_intel Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.260860 -The maximum resident set size (KB) = 762244 +The total amount of wall time = 143.269525 +The maximum resident set size (KB) = 760124 Test 150 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_cfsr_intel Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.080187 -The maximum resident set size (KB) = 761716 +The total amount of wall time = 142.730302 +The maximum resident set size (KB) = 760396 Test 151 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_bulk_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_gefs_intel Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 132.791236 -The maximum resident set size (KB) = 641664 +The total amount of wall time = 137.415426 +The maximum resident set size (KB) = 640580 Test 152 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_cfsr_intel Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5051,14 +5051,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel 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 = 329.380629 -The maximum resident set size (KB) = 692224 +The total amount of wall time = 330.260535 +The maximum resident set size (KB) = 689340 Test 153 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_mx025_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_gefs_intel Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5067,77 +5067,77 @@ Checking test 154 datm_cdeps_mx025_gefs_intel 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 = 325.150991 -The maximum resident set size (KB) = 672096 +The total amount of wall time = 329.095164 +The maximum resident set size (KB) = 674624 Test 154 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_multiple_files_cfsr_intel Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.004904 -The maximum resident set size (KB) = 761272 +The total amount of wall time = 141.616972 +The maximum resident set size (KB) = 762216 Test 155 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_3072x1536_cfsr_intel Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 228.438023 -The maximum resident set size (KB) = 2023728 +The total amount of wall time = 228.600162 +The maximum resident set size (KB) = 2022960 Test 156 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_gfs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_gfs_intel Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 226.771550 -The maximum resident set size (KB) = 2022364 +The total amount of wall time = 228.079068 +The maximum resident set size (KB) = 2020520 Test 157 datm_cdeps_gfs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_debug_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_debug_cfsr_intel Checking test 158 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 299.324383 -The maximum resident set size (KB) = 746840 +The total amount of wall time = 300.854818 +The maximum resident set size (KB) = 745600 Test 158 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_control_cfsr_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_faster_intel Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.292989 -The maximum resident set size (KB) = 761924 +The total amount of wall time = 142.323304 +The maximum resident set size (KB) = 762756 Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_gswp3_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_gswp3_intel Checking test 160 datm_cdeps_lnd_gswp3_intel 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 @@ -5146,14 +5146,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 61.219151 -The maximum resident set size (KB) = 308664 +The total amount of wall time = 67.056311 +The maximum resident set size (KB) = 312788 Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_intel Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5162,14 +5162,14 @@ Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 57.142021 -The maximum resident set size (KB) = 449852 +The total amount of wall time = 62.235638 +The maximum resident set size (KB) = 450668 Test 161 datm_cdeps_lnd_era5_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/datm_cdeps_lnd_era5_rst_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_rst_intel Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5178,14 +5178,14 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 32.165049 -The maximum resident set size (KB) = 450856 +The total amount of wall time = 40.095661 +The maximum resident set size (KB) = 449800 Test 162 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_sbs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_sbs_intel Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5274,14 +5274,14 @@ Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 399.287537 -The maximum resident set size (KB) = 1634536 +The total amount of wall time = 499.137149 +The maximum resident set size (KB) = 1631368 Test 163 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_p8_atmlnd_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_intel Checking test 164 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5370,14 +5370,14 @@ Checking test 164 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 418.763604 -The maximum resident set size (KB) = 1628584 +The total amount of wall time = 543.898697 +The maximum resident set size (KB) = 1633272 Test 164 control_p8_atmlnd_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_restart_p8_atmlnd_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_atmlnd_intel Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5398,14 +5398,14 @@ Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 219.850821 -The maximum resident set size (KB) = 848576 +The total amount of wall time = 312.354665 +The maximum resident set size (KB) = 849704 Test 165 control_restart_p8_atmlnd_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmwav_control_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmwav_control_noaero_p8_intel Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5448,14 +5448,14 @@ Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 82.974003 -The maximum resident set size (KB) = 1631516 +The total amount of wall time = 84.268422 +The maximum resident set size (KB) = 1637212 Test 166 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/control_atmwav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_atmwav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_atmwav_intel Checking test 167 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5499,14 +5499,14 @@ Checking test 167 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 78.676602 -The maximum resident set size (KB) = 637188 +The total amount of wall time = 78.798429 +The maximum resident set size (KB) = 635264 Test 167 control_atmwav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_intel Checking test 168 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5550,14 +5550,14 @@ Checking test 168 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.295568 -The maximum resident set size (KB) = 2946840 +The total amount of wall time = 214.964561 +The maximum resident set size (KB) = 2944800 Test 168 atmaero_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_intel Checking test 169 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5601,14 +5601,14 @@ Checking test 169 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 244.930632 -The maximum resident set size (KB) = 3000868 +The total amount of wall time = 250.475437 +The maximum resident set size (KB) = 3002404 Test 169 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_22838/atmaero_control_p8_rad_micro_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_micro_intel Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5652,12 +5652,12 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 258.692191 -The maximum resident set size (KB) = 3012148 +The total amount of wall time = 264.243751 +The maximum resident set size (KB) = 3011032 Test 170 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 08 Feb 2024 09:43:05 PM MST -Elapsed time: 02h:07m:14s. Have a nice day! +Mon 12 Feb 2024 05:17:17 PM MST +Elapsed time: 03h:41m:00s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 869ba39db4..46faa843f1 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,62 +1,62 @@ -Thu 08 Feb 2024 09:14:00 PM EST +Mon 12 Feb 2024 03:08:37 PM EST Start Regression test -Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1 +Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) -+c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 357 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 572 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 390 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 712 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 634 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 616 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 333 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 573 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 332 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 594 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 397 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 642 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 617 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 335 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile datm_cdeps_faster_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 583 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 122 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 660 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 696 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 381 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 877 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 669 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 534 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 651 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 667 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 784 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1147 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 418 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 641 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 640 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 667 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 386 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 856 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 699 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 653 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 674 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 838 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 444 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1151 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile s2swa_faster_intel elapsed time 977 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 773 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 415 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 727 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 417 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1125 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 315 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 529 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_mixedmode_intel +Compile s2swa_intel elapsed time 789 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 420 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 744 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1121 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 299.420878 - 0: The maximum resident set size (KB) = 3073108 + 0: The total amount of wall time = 302.927125 + 0: The maximum resident set size (KB) = 3072904 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 783.101264 - 0: The maximum resident set size (KB) = 1695132 + 0: The total amount of wall time = 778.782654 + 0: The maximum resident set size (KB) = 1694684 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_gfsv17_iau_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 835.953830 - 0: The maximum resident set size (KB) = 1807968 + 0: The total amount of wall time = 839.979536 + 0: The maximum resident set size (KB) = 1807284 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 380.125975 - 0: The maximum resident set size (KB) = 941948 + 0: The total amount of wall time = 377.871790 + 0: The maximum resident set size (KB) = 943668 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 856.224449 - 0: The maximum resident set size (KB) = 1668764 + 0: The total amount of wall time = 860.154351 + 0: The maximum resident set size (KB) = 1668000 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1463.391416 - 0: The maximum resident set size (KB) = 1699088 + 0: The total amount of wall time = 1418.880398 + 0: The maximum resident set size (KB) = 1699528 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.691260 - 0: The maximum resident set size (KB) = 3099192 + 0: The total amount of wall time = 351.184679 + 0: The maximum resident set size (KB) = 3099592 Test 007 cpld_control_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8.v2.sfc_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.397426 - 0: The maximum resident set size (KB) = 3098852 + 0: The total amount of wall time = 346.673313 + 0: The maximum resident set size (KB) = 3098656 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.369035 - 0: The maximum resident set size (KB) = 3157080 + 0: The total amount of wall time = 206.050893 + 0: The maximum resident set size (KB) = 3157164 Test 009 cpld_restart_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_qr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.074732 - 0: The maximum resident set size (KB) = 3122940 + 0: The total amount of wall time = 349.819580 + 0: The maximum resident set size (KB) = 3123012 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_qr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 205.956550 - 0: The maximum resident set size (KB) = 3177660 + 0: The total amount of wall time = 208.099039 + 0: The maximum resident set size (KB) = 3177580 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_2threads_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.384977 - 0: The maximum resident set size (KB) = 3410384 + 0: The total amount of wall time = 316.039625 + 0: The maximum resident set size (KB) = 3408160 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_decomp_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 339.131555 - 0: The maximum resident set size (KB) = 3098536 + 0: The total amount of wall time = 342.515186 + 0: The maximum resident set size (KB) = 3097900 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 290.045166 - 0: The maximum resident set size (KB) = 3021892 + 0: The total amount of wall time = 291.518774 + 0: The maximum resident set size (KB) = 3022580 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_ciceC_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 348.186106 - 0: The maximum resident set size (KB) = 3099424 + 0: The total amount of wall time = 345.252258 + 0: The maximum resident set size (KB) = 3099892 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c192_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 574.739062 - 0: The maximum resident set size (KB) = 3283436 + 0: The total amount of wall time = 585.770834 + 0: The maximum resident set size (KB) = 3269848 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_c192_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 392.269931 - 0: The maximum resident set size (KB) = 3608872 + 0: The total amount of wall time = 399.216434 + 0: The maximum resident set size (KB) = 3606524 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_bmark_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 714.544209 - 0: The maximum resident set size (KB) = 4037728 + 0: The total amount of wall time = 720.776891 + 0: The maximum resident set size (KB) = 4040212 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_bmark_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 500.305230 - 0: The maximum resident set size (KB) = 4341392 + 0: The total amount of wall time = 501.070542 + 0: The maximum resident set size (KB) = 4347312 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_s2sa_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 328.882216 - 0: The maximum resident set size (KB) = 3068308 + 0: The total amount of wall time = 334.481915 + 0: The maximum resident set size (KB) = 3067832 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 252.442767 - 0: The maximum resident set size (KB) = 1688036 + 0: The total amount of wall time = 253.647382 + 0: The maximum resident set size (KB) = 1687916 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_nowave_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 262.879555 - 0: The maximum resident set size (KB) = 1731972 + 0: The total amount of wall time = 262.694999 + 0: The maximum resident set size (KB) = 1731580 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 479.130562 - 0: The maximum resident set size (KB) = 3131512 + 0: The total amount of wall time = 483.815659 + 0: The maximum resident set size (KB) = 3131940 Test 023 cpld_debug_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.382644 - 0: The maximum resident set size (KB) = 1698208 + 0: The total amount of wall time = 326.948123 + 0: The maximum resident set size (KB) = 1696372 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_noaero_p8_agrid_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 262.402236 - 0: The maximum resident set size (KB) = 1730948 + 0: The total amount of wall time = 266.580683 + 0: The maximum resident set size (KB) = 1730812 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_c48_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel 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 = 406.098808 - 0: The maximum resident set size (KB) = 2663032 + 0: The total amount of wall time = 407.023321 + 0: The maximum resident set size (KB) = 2662848 Test 026 cpld_control_c48_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_p8_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 336.737801 - 0: The maximum resident set size (KB) = 3101712 + 0: The total amount of wall time = 341.208407 + 0: The maximum resident set size (KB) = 3099324 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_control_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 846.566459 - 0: The maximum resident set size (KB) = 1702980 + 0: The total amount of wall time = 846.791363 + 0: The maximum resident set size (KB) = 1702492 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_restart_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.132882 - 0: The maximum resident set size (KB) = 1001232 + 0: The total amount of wall time = 406.875815 + 0: The maximum resident set size (KB) = 1001544 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_mpi_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1005.789462 - 0: The maximum resident set size (KB) = 1682652 + 0: The total amount of wall time = 1000.903957 + 0: The maximum resident set size (KB) = 1683420 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/cpld_debug_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1560.548722 - 0: The maximum resident set size (KB) = 1711056 + 0: The total amount of wall time = 1578.890446 + 0: The maximum resident set size (KB) = 1710936 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_flake_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.028888 - 0: The maximum resident set size (KB) = 672092 + 0: The total amount of wall time = 197.519177 + 0: The maximum resident set size (KB) = 671944 Test 032 control_flake_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2080,14 +2080,14 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 122.566159 - 0: The maximum resident set size (KB) = 617136 + 0: The total amount of wall time = 123.053283 + 0: The maximum resident set size (KB) = 617448 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_parallel_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.766859 - 0: The maximum resident set size (KB) = 625984 + 0: The total amount of wall time = 129.731258 + 0: The maximum resident set size (KB) = 625648 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_latlon_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.162572 - 0: The maximum resident set size (KB) = 620548 + 0: The total amount of wall time = 125.065822 + 0: The maximum resident set size (KB) = 620888 Test 035 control_latlon_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.879693 - 0: The maximum resident set size (KB) = 620564 + 0: The total amount of wall time = 125.926854 + 0: The maximum resident set size (KB) = 620424 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 330.717033 -0: The maximum resident set size (KB) = 720884 +0: The total amount of wall time = 335.703017 +0: The maximum resident set size (KB) = 726784 Test 037 control_c48_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c48.v2.sfc_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 334.720334 -0: The maximum resident set size (KB) = 727156 +0: The total amount of wall time = 338.261876 +0: The maximum resident set size (KB) = 726516 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c192_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 501.071043 - 0: The maximum resident set size (KB) = 738020 + 0: The total amount of wall time = 499.433304 + 0: The maximum resident set size (KB) = 738224 Test 039 control_c192_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 954.853910 - 0: The maximum resident set size (KB) = 1039848 + 0: The total amount of wall time = 957.979812 + 0: The maximum resident set size (KB) = 1039552 Test 040 control_c384_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_c384gdas_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 819.668504 - 0: The maximum resident set size (KB) = 1182096 + 0: The total amount of wall time = 830.731498 + 0: The maximum resident set size (KB) = 1184096 Test 041 control_c384gdas_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.154593 - 0: The maximum resident set size (KB) = 624540 + 0: The total amount of wall time = 82.901248 + 0: The maximum resident set size (KB) = 624520 Test 042 control_stochy_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel 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.030959 - 0: The maximum resident set size (KB) = 428676 + 0: The total amount of wall time = 47.155766 + 0: The maximum resident set size (KB) = 428748 Test 043 control_stochy_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.511936 - 0: The maximum resident set size (KB) = 626012 + 0: The total amount of wall time = 78.253560 + 0: The maximum resident set size (KB) = 625668 Test 044 control_lndp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr4_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.438402 - 0: The maximum resident set size (KB) = 620524 + 0: The total amount of wall time = 123.806765 + 0: The maximum resident set size (KB) = 620592 Test 045 control_iovr4_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_iovr5_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.584737 - 0: The maximum resident set size (KB) = 620392 + 0: The total amount of wall time = 126.325534 + 0: The maximum resident set size (KB) = 620664 Test 046 control_iovr5_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.223911 - 0: The maximum resident set size (KB) = 1607692 + 0: The total amount of wall time = 151.419395 + 0: The maximum resident set size (KB) = 1608264 Test 047 control_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8.v2.sfc_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.482026 - 0: The maximum resident set size (KB) = 1608784 + 0: The total amount of wall time = 152.534138 + 0: The maximum resident set size (KB) = 1608052 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_ugwpv1_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.699561 - 0: The maximum resident set size (KB) = 1611024 + 0: The total amount of wall time = 145.477010 + 0: The maximum resident set size (KB) = 1610928 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 81.549425 - 0: The maximum resident set size (KB) = 791664 + 0: The total amount of wall time = 81.836517 + 0: The maximum resident set size (KB) = 791548 Test 050 control_restart_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_noqr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 147.605183 - 0: The maximum resident set size (KB) = 1596700 + 0: The total amount of wall time = 151.188883 + 0: The maximum resident set size (KB) = 1596436 Test 051 control_noqr_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_noqr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 79.539949 - 0: The maximum resident set size (KB) = 793888 + 0: The total amount of wall time = 82.527801 + 0: The maximum resident set size (KB) = 794208 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_decomp_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.443978 - 0: The maximum resident set size (KB) = 1596264 + 0: The total amount of wall time = 154.031589 + 0: The maximum resident set size (KB) = 1595768 Test 053 control_decomp_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_2threads_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.109612 - 0: The maximum resident set size (KB) = 1686360 + 0: The total amount of wall time = 132.017941 + 0: The maximum resident set size (KB) = 1679112 Test 054 control_2threads_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_lndp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 270.809116 - 0: The maximum resident set size (KB) = 1607180 + 0: The total amount of wall time = 272.862503 + 0: The maximum resident set size (KB) = 1607632 Test 055 control_p8_lndp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_rrtmgp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.278306 - 0: The maximum resident set size (KB) = 1658604 + 0: The total amount of wall time = 203.167872 + 0: The maximum resident set size (KB) = 1658756 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_mynn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 153.822891 - 0: The maximum resident set size (KB) = 1614636 + 0: The total amount of wall time = 151.587152 + 0: The maximum resident set size (KB) = 1614716 Test 057 control_p8_mynn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/merra2_thompson_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.024807 - 0: The maximum resident set size (KB) = 1615548 + 0: The total amount of wall time = 181.405361 + 0: The maximum resident set size (KB) = 1615360 Test 058 merra2_thompson_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.776185 - 0: The maximum resident set size (KB) = 616704 + 0: The total amount of wall time = 270.299632 + 0: The maximum resident set size (KB) = 617240 Test 059 regional_control_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 142.430140 - 0: The maximum resident set size (KB) = 790308 + 0: The total amount of wall time = 141.768709 + 0: The maximum resident set size (KB) = 790840 Test 060 regional_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 275.985134 - 0: The maximum resident set size (KB) = 615772 + 0: The total amount of wall time = 284.199929 + 0: The maximum resident set size (KB) = 615692 Test 061 regional_decomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 156.979689 - 0: The maximum resident set size (KB) = 761560 + 0: The total amount of wall time = 159.089309 + 0: The maximum resident set size (KB) = 758484 Test 062 regional_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_noquilt_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel 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 = 264.382413 - 0: The maximum resident set size (KB) = 1154836 + 0: The total amount of wall time = 262.559269 + 0: The maximum resident set size (KB) = 1154816 Test 063 regional_noquilt_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_netcdf_parallel_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 268.557387 - 0: The maximum resident set size (KB) = 616500 + 0: The total amount of wall time = 264.529098 + 0: The maximum resident set size (KB) = 616676 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_2dwrtdecomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 265.501802 - 0: The maximum resident set size (KB) = 617424 + 0: The total amount of wall time = 266.981263 + 0: The maximum resident set size (KB) = 617492 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_wofs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 345.536210 - 0: The maximum resident set size (KB) = 1591424 + 0: The total amount of wall time = 344.823623 + 0: The maximum resident set size (KB) = 1590864 Test 066 regional_wofs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.406298 - 0: The maximum resident set size (KB) = 1010184 + 0: The total amount of wall time = 379.138083 + 0: The maximum resident set size (KB) = 1009772 Test 067 rap_control_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 219.383124 - 0: The maximum resident set size (KB) = 1188660 + 0: The total amount of wall time = 223.992209 + 0: The maximum resident set size (KB) = 1186336 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.463204 - 0: The maximum resident set size (KB) = 1009072 + 0: The total amount of wall time = 385.420782 + 0: The maximum resident set size (KB) = 1009116 Test 069 rap_decomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.732048 - 0: The maximum resident set size (KB) = 1096936 + 0: The total amount of wall time = 338.823571 + 0: The maximum resident set size (KB) = 1100420 Test 070 rap_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.513711 - 0: The maximum resident set size (KB) = 879100 + 0: The total amount of wall time = 187.548879 + 0: The maximum resident set size (KB) = 878392 Test 071 rap_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 375.928959 - 0: The maximum resident set size (KB) = 1007044 + 0: The total amount of wall time = 373.753296 + 0: The maximum resident set size (KB) = 1007572 Test 072 rap_sfcdiff_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.662635 - 0: The maximum resident set size (KB) = 1005480 + 0: The total amount of wall time = 395.947137 + 0: The maximum resident set size (KB) = 1005552 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.114967 - 0: The maximum resident set size (KB) = 878172 + 0: The total amount of wall time = 280.753318 + 0: The maximum resident set size (KB) = 878588 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.493005 - 0: The maximum resident set size (KB) = 1004980 + 0: The total amount of wall time = 194.449018 + 0: The maximum resident set size (KB) = 1004824 Test 075 hrrr_control_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.037519 - 0: The maximum resident set size (KB) = 1006700 + 0: The total amount of wall time = 196.593185 + 0: The maximum resident set size (KB) = 1006600 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.179545 - 0: The maximum resident set size (KB) = 1087388 + 0: The total amount of wall time = 175.491061 + 0: The maximum resident set size (KB) = 1078392 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.183578 - 0: The maximum resident set size (KB) = 836076 + 0: The total amount of wall time = 102.325676 + 0: The maximum resident set size (KB) = 836064 Test 078 hrrr_control_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.784492 - 0: The maximum resident set size (KB) = 1001432 + 0: The total amount of wall time = 366.309554 + 0: The maximum resident set size (KB) = 1001900 Test 079 rrfs_v1beta_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 448.168986 - 0: The maximum resident set size (KB) = 1964892 + 0: The total amount of wall time = 458.099433 + 0: The maximum resident set size (KB) = 1967676 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 446.473435 - 0: The maximum resident set size (KB) = 1951820 + 0: The total amount of wall time = 444.214178 + 0: The maximum resident set size (KB) = 1953212 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 320.662659 - 0: The maximum resident set size (KB) = 696108 + 0: The total amount of wall time = 322.372971 + 0: The maximum resident set size (KB) = 694272 Test 082 control_csawmg_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 315.316370 - 0: The maximum resident set size (KB) = 693920 + 0: The total amount of wall time = 318.059281 + 0: The maximum resident set size (KB) = 692400 Test 083 control_csawmgt_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 176.143298 - 0: The maximum resident set size (KB) = 656308 + 0: The total amount of wall time = 179.057987 + 0: The maximum resident set size (KB) = 654528 Test 084 control_ras_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.955734 - 0: The maximum resident set size (KB) = 370060 + 0: The total amount of wall time = 117.671119 + 0: The maximum resident set size (KB) = 369744 Test 085 control_wam_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.548278 - 0: The maximum resident set size (KB) = 1606792 + 0: The total amount of wall time = 146.214110 + 0: The maximum resident set size (KB) = 1605608 Test 086 control_p8_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_control_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 253.726037 - 0: The maximum resident set size (KB) = 612972 + 0: The total amount of wall time = 258.941700 + 0: The maximum resident set size (KB) = 612944 Test 087 regional_control_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_CubedSphereGrid_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 150.242981 - 0: The maximum resident set size (KB) = 779028 + 0: The total amount of wall time = 149.309010 + 0: The maximum resident set size (KB) = 777520 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.197231 - 0: The maximum resident set size (KB) = 782544 + 0: The total amount of wall time = 152.074319 + 0: The maximum resident set size (KB) = 780672 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_stochy_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.661988 - 0: The maximum resident set size (KB) = 783072 + 0: The total amount of wall time = 165.412939 + 0: The maximum resident set size (KB) = 781892 Test 090 control_stochy_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_lndp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.988033 - 0: The maximum resident set size (KB) = 789344 + 0: The total amount of wall time = 150.849615 + 0: The maximum resident set size (KB) = 788124 Test 091 control_lndp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmg_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.814321 - 0: The maximum resident set size (KB) = 825524 + 0: The total amount of wall time = 232.935812 + 0: The maximum resident set size (KB) = 824544 Test 092 control_csawmg_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_csawmgt_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.677652 - 0: The maximum resident set size (KB) = 825732 + 0: The total amount of wall time = 231.763595 + 0: The maximum resident set size (KB) = 824980 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_ras_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.217828 - 0: The maximum resident set size (KB) = 795992 + 0: The total amount of wall time = 149.810305 + 0: The maximum resident set size (KB) = 794536 Test 094 control_ras_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_diag_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_diag_debug_intel Checking test 095 control_diag_debug_intel 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.326038 - 0: The maximum resident set size (KB) = 843788 + 0: The total amount of wall time = 151.903900 + 0: The maximum resident set size (KB) = 842952 Test 095 control_diag_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_debug_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.807346 - 0: The maximum resident set size (KB) = 1622056 + 0: The total amount of wall time = 155.202235 + 0: The maximum resident set size (KB) = 1620448 Test 096 control_debug_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 951.440755 - 0: The maximum resident set size (KB) = 635348 + 0: The total amount of wall time = 985.541916 + 0: The maximum resident set size (KB) = 634488 Test 097 regional_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.574703 - 0: The maximum resident set size (KB) = 1167644 + 0: The total amount of wall time = 283.677914 + 0: The maximum resident set size (KB) = 1166348 Test 098 rap_control_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.563931 - 0: The maximum resident set size (KB) = 1165580 + 0: The total amount of wall time = 271.010908 + 0: The maximum resident set size (KB) = 1165252 Test 099 hrrr_control_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_gf_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel 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.622625 - 0: The maximum resident set size (KB) = 1167872 + 0: The total amount of wall time = 280.337256 + 0: The maximum resident set size (KB) = 1167208 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_c3_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel 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.497264 - 0: The maximum resident set size (KB) = 1167488 + 0: The total amount of wall time = 272.665035 + 0: The maximum resident set size (KB) = 1167392 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_drag_suite_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.744497 - 0: The maximum resident set size (KB) = 1167272 + 0: The total amount of wall time = 278.856031 + 0: The maximum resident set size (KB) = 1166516 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_diag_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.761696 - 0: The maximum resident set size (KB) = 1251864 + 0: The total amount of wall time = 287.949256 + 0: The maximum resident set size (KB) = 1250884 Test 103 rap_diag_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_cires_ugwp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.799806 - 0: The maximum resident set size (KB) = 1167008 + 0: The total amount of wall time = 288.827298 + 0: The maximum resident set size (KB) = 1165892 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_unified_ugwp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel 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.032090 - 0: The maximum resident set size (KB) = 1168560 + 0: The total amount of wall time = 285.495745 + 0: The maximum resident set size (KB) = 1167272 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_lndp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.498006 - 0: The maximum resident set size (KB) = 1168716 + 0: The total amount of wall time = 284.721260 + 0: The maximum resident set size (KB) = 1168560 Test 106 rap_lndp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_progcld_thompson_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.161299 - 0: The maximum resident set size (KB) = 1166716 + 0: The total amount of wall time = 285.671011 + 0: The maximum resident set size (KB) = 1166600 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.169096 - 0: The maximum resident set size (KB) = 1167368 + 0: The total amount of wall time = 280.201106 + 0: The maximum resident set size (KB) = 1166588 Test 108 rap_noah_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_sfcdiff_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel 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.852343 - 0: The maximum resident set size (KB) = 1165956 + 0: The total amount of wall time = 276.987808 + 0: The maximum resident set size (KB) = 1164832 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 446.909084 - 0: The maximum resident set size (KB) = 1167168 + 0: The total amount of wall time = 463.855002 + 0: The maximum resident set size (KB) = 1166328 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rrfs_v1beta_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.997854 - 0: The maximum resident set size (KB) = 1163820 + 0: The total amount of wall time = 275.616546 + 0: The maximum resident set size (KB) = 1162948 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_clm_lake_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 342.124919 - 0: The maximum resident set size (KB) = 1168832 + 0: The total amount of wall time = 350.255271 + 0: The maximum resident set size (KB) = 1168520 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_flake_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel 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.492839 - 0: The maximum resident set size (KB) = 1167024 + 0: The total amount of wall time = 277.386397 + 0: The maximum resident set size (KB) = 1166480 Test 113 rap_flake_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_c96_no_nest_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 488.367076 - 0: The maximum resident set size (KB) = 1172696 + 0: The total amount of wall time = 482.040307 + 0: The maximum resident set size (KB) = 1169788 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_wam_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 280.877440 - 0: The maximum resident set size (KB) = 393268 + 0: The total amount of wall time = 282.300366 + 0: The maximum resident set size (KB) = 392188 Test 115 control_wam_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 209.916176 - 0: The maximum resident set size (KB) = 1053440 + 0: The total amount of wall time = 210.379853 + 0: The maximum resident set size (KB) = 1054000 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 310.580027 - 0: The maximum resident set size (KB) = 889532 + 0: The total amount of wall time = 311.230220 + 0: The maximum resident set size (KB) = 889908 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.184994 - 0: The maximum resident set size (KB) = 886288 + 0: The total amount of wall time = 164.719359 + 0: The maximum resident set size (KB) = 886208 Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_2threads_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 287.063893 - 0: The maximum resident set size (KB) = 946400 + 0: The total amount of wall time = 285.761538 + 0: The maximum resident set size (KB) = 951776 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.654036 - 0: The maximum resident set size (KB) = 937980 + 0: The total amount of wall time = 149.749961 + 0: The maximum resident set size (KB) = 938040 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.520872 - 0: The maximum resident set size (KB) = 888012 + 0: The total amount of wall time = 174.239272 + 0: The maximum resident set size (KB) = 888324 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_restart_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.390693 - 0: The maximum resident set size (KB) = 785580 + 0: The total amount of wall time = 233.852459 + 0: The maximum resident set size (KB) = 785876 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.278739 - 0: The maximum resident set size (KB) = 767948 + 0: The total amount of wall time = 86.420440 + 0: The maximum resident set size (KB) = 767620 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 104.558333 - 0: The maximum resident set size (KB) = 1094604 + 0: The total amount of wall time = 102.771843 + 0: The maximum resident set size (KB) = 1094692 Test 124 conus13km_control_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 49.790323 - 0: The maximum resident set size (KB) = 1074404 + 0: The total amount of wall time = 48.958585 + 0: The maximum resident set size (KB) = 1075768 Test 125 conus13km_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_restart_mismatch_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 60.742555 - 0: The maximum resident set size (KB) = 974488 + 0: The total amount of wall time = 61.268495 + 0: The maximum resident set size (KB) = 974156 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.180156 - 0: The maximum resident set size (KB) = 907760 + 0: The total amount of wall time = 217.332559 + 0: The maximum resident set size (KB) = 907816 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_debug_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel 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.968198 - 0: The maximum resident set size (KB) = 1048848 + 0: The total amount of wall time = 273.738767 + 0: The maximum resident set size (KB) = 1047968 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel 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.556898 - 0: The maximum resident set size (KB) = 1046904 + 0: The total amount of wall time = 266.749135 + 0: The maximum resident set size (KB) = 1048824 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 808.962561 - 0: The maximum resident set size (KB) = 1127572 + 0: The total amount of wall time = 803.448842 + 0: The maximum resident set size (KB) = 1128628 Test 130 conus13km_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_qr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 815.556756 - 0: The maximum resident set size (KB) = 801448 + 0: The total amount of wall time = 818.086461 + 0: The maximum resident set size (KB) = 804036 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_debug_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 469.559045 - 0: The maximum resident set size (KB) = 1107132 + 0: The total amount of wall time = 466.891916 + 0: The maximum resident set size (KB) = 1110412 Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/conus13km_radar_tten_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 808.327050 - 0: The maximum resident set size (KB) = 1193728 + 0: The total amount of wall time = 792.170378 + 0: The maximum resident set size (KB) = 1194948 Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/rap_control_dyn64_phy32_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.652687 - 0: The maximum resident set size (KB) = 1067304 + 0: The total amount of wall time = 280.661010 + 0: The maximum resident set size (KB) = 1071368 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 299.240879 - 0: The maximum resident set size (KB) = 710420 + 0: The total amount of wall time = 300.148342 + 0: The maximum resident set size (KB) = 706592 Test 135 hafs_regional_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 251.197498 - 0: The maximum resident set size (KB) = 1059192 + 0: The total amount of wall time = 251.051048 + 0: The maximum resident set size (KB) = 1058064 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 383.144873 - 0: The maximum resident set size (KB) = 754252 + 0: The total amount of wall time = 388.277073 + 0: The maximum resident set size (KB) = 754736 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_wav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 686.033772 - 0: The maximum resident set size (KB) = 782132 + 0: The total amount of wall time = 685.855015 + 0: The maximum resident set size (KB) = 780600 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_atm_ocn_wav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 757.235429 - 0: The maximum resident set size (KB) = 799300 + 0: The total amount of wall time = 770.726858 + 0: The maximum resident set size (KB) = 797796 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 300.344040 - 0: The maximum resident set size (KB) = 477124 + 0: The total amount of wall time = 301.517361 + 0: The maximum resident set size (KB) = 475292 Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 388.337235 - 0: The maximum resident set size (KB) = 503016 + 0: The total amount of wall time = 386.976865 + 0: The maximum resident set size (KB) = 501012 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5085,7 +5085,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK @@ -5112,14 +5112,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 160.372348 - 0: The maximum resident set size (KB) = 374924 + 0: The total amount of wall time = 159.524217 + 0: The maximum resident set size (KB) = 373112 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_multiple_4nests_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5180,7 +5180,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK @@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 458.954643 - 0: The maximum resident set size (KB) = 437152 + 0: The total amount of wall time = 457.175622 + 0: The maximum resident set size (KB) = 444220 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 207.888221 - 0: The maximum resident set size (KB) = 513216 + 0: The total amount of wall time = 208.436538 + 0: The maximum resident set size (KB) = 508064 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 194.455733 - 0: The maximum resident set size (KB) = 511860 + 0: The total amount of wall time = 195.268159 + 0: The maximum resident set size (KB) = 510856 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5262,28 +5262,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 250.292158 - 0: The maximum resident set size (KB) = 577804 + 0: The total amount of wall time = 250.207912 + 0: The maximum resident set size (KB) = 574432 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_global_storm_following_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 86.949307 - 0: The maximum resident set size (KB) = 405568 + 0: The total amount of wall time = 88.835893 + 0: The maximum resident set size (KB) = 403776 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/gnv1_nested_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5303,8 +5303,8 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -5320,7 +5320,7 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK @@ -5330,28 +5330,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 219.436933 - 0: The maximum resident set size (KB) = 768080 + 0: The total amount of wall time = 219.702752 + 0: The maximum resident set size (KB) = 768252 Test 148 gnv1_nested_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 754.148677 - 0: The maximum resident set size (KB) = 581656 + 0: The total amount of wall time = 751.119629 + 0: The maximum resident set size (KB) = 585096 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 443.090277 - 0: The maximum resident set size (KB) = 613564 + 0: The total amount of wall time = 439.600538 + 0: The maximum resident set size (KB) = 613948 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 449.097950 - 0: The maximum resident set size (KB) = 785348 + 0: The total amount of wall time = 449.792963 + 0: The maximum resident set size (KB) = 785092 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 343.858111 - 0: The maximum resident set size (KB) = 785988 + 0: The total amount of wall time = 346.560106 + 0: The maximum resident set size (KB) = 786376 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel 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 = 347.181244 - 0: The maximum resident set size (KB) = 742232 + 0: The total amount of wall time = 344.507089 + 0: The maximum resident set size (KB) = 745888 Test 153 hafs_regional_docn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_docn_oisst_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel 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 = 347.690358 - 0: The maximum resident set size (KB) = 726632 + 0: The total amount of wall time = 348.439224 + 0: The maximum resident set size (KB) = 726700 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/hafs_regional_datm_cdeps_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 958.575212 - 0: The maximum resident set size (KB) = 893512 + 0: The total amount of wall time = 961.511637 + 0: The maximum resident set size (KB) = 893560 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.014780 - 0: The maximum resident set size (KB) = 756412 + 0: The total amount of wall time = 143.070089 + 0: The maximum resident set size (KB) = 756320 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_restart_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 84.172594 - 0: The maximum resident set size (KB) = 745116 + 0: The total amount of wall time = 83.957679 + 0: The maximum resident set size (KB) = 745068 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 133.281913 - 0: The maximum resident set size (KB) = 639272 + 0: The total amount of wall time = 133.636546 + 0: The maximum resident set size (KB) = 637100 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_iau_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 133.351209 - 0: The maximum resident set size (KB) = 637524 + 0: The total amount of wall time = 133.872790 + 0: The maximum resident set size (KB) = 638372 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_stochy_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 135.043758 - 0: The maximum resident set size (KB) = 639188 + 0: The total amount of wall time = 134.520275 + 0: The maximum resident set size (KB) = 641208 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_ciceC_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.864315 - 0: The maximum resident set size (KB) = 756268 + 0: The total amount of wall time = 140.615348 + 0: The maximum resident set size (KB) = 756648 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.235915 - 0: The maximum resident set size (KB) = 744788 + 0: The total amount of wall time = 141.417190 + 0: The maximum resident set size (KB) = 756620 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_bulk_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 132.056283 - 0: The maximum resident set size (KB) = 638292 + 0: The total amount of wall time = 131.740235 + 0: The maximum resident set size (KB) = 639596 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 335.666161 - 0: The maximum resident set size (KB) = 693008 + 0: The total amount of wall time = 331.774573 + 0: The maximum resident set size (KB) = 692708 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_mx025_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 332.681732 - 0: The maximum resident set size (KB) = 672552 + 0: The total amount of wall time = 334.080217 + 0: The maximum resident set size (KB) = 672480 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.363037 - 0: The maximum resident set size (KB) = 756144 + 0: The total amount of wall time = 141.473619 + 0: The maximum resident set size (KB) = 756536 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 270.238896 - 0: The maximum resident set size (KB) = 2013488 + 0: The total amount of wall time = 270.517374 + 0: The maximum resident set size (KB) = 2012740 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_gfs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 270.815947 - 0: The maximum resident set size (KB) = 2014160 + 0: The total amount of wall time = 271.745924 + 0: The maximum resident set size (KB) = 2014856 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_debug_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 315.896359 - 0: The maximum resident set size (KB) = 730188 + 0: The total amount of wall time = 317.691659 + 0: The maximum resident set size (KB) = 741016 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_control_cfsr_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.958446 - 0: The maximum resident set size (KB) = 756584 + 0: The total amount of wall time = 141.298008 + 0: The maximum resident set size (KB) = 744568 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_gswp3_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 63.252211 - 0: The maximum resident set size (KB) = 318676 + 0: The total amount of wall time = 62.974753 + 0: The maximum resident set size (KB) = 310752 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 53.747354 - 0: The maximum resident set size (KB) = 456596 + 0: The total amount of wall time = 54.722769 + 0: The maximum resident set size (KB) = 456600 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/datm_cdeps_lnd_era5_rst_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 38.592699 - 0: The maximum resident set size (KB) = 456492 + 0: The total amount of wall time = 38.979705 + 0: The maximum resident set size (KB) = 456520 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_sbs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 368.978372 - 0: The maximum resident set size (KB) = 1640348 + 0: The total amount of wall time = 367.320142 + 0: The maximum resident set size (KB) = 1642564 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_p8_atmlnd_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 364.924589 - 0: The maximum resident set size (KB) = 1642732 + 0: The total amount of wall time = 370.429712 + 0: The maximum resident set size (KB) = 1642432 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_restart_p8_atmlnd_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 198.400630 - 0: The maximum resident set size (KB) = 837104 + 0: The total amount of wall time = 189.071405 + 0: The maximum resident set size (KB) = 837012 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmwav_control_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 89.198779 - 0: The maximum resident set size (KB) = 1651972 + 0: The total amount of wall time = 89.306919 + 0: The maximum resident set size (KB) = 1651488 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/control_atmwav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 84.060129 - 0: The maximum resident set size (KB) = 639468 + 0: The total amount of wall time = 84.693035 + 0: The maximum resident set size (KB) = 639252 Test 178 control_atmwav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.935096 - 0: The maximum resident set size (KB) = 2942552 + 0: The total amount of wall time = 241.128453 + 0: The maximum resident set size (KB) = 2942768 Test 179 atmaero_control_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.325749 - 0: The maximum resident set size (KB) = 3011440 + 0: The total amount of wall time = 275.081228 + 0: The maximum resident set size (KB) = 3011556 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/atmaero_control_p8_rad_micro_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.052789 - 0: The maximum resident set size (KB) = 3017704 + 0: The total amount of wall time = 292.094812 + 0: The maximum resident set size (KB) = 3018492 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_31155/regional_atmaq_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6177,17 +6177,17 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1082.597175 - 0: The maximum resident set size (KB) = 4478292 + 0: The total amount of wall time = 1089.115372 + 0: The maximum resident set size (KB) = 4486556 Test 182 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu 08 Feb 2024 10:37:11 PM EST -Elapsed time: 01h:23m:16s. Have a nice day! +Mon 12 Feb 2024 04:57:55 PM EST +Elapsed time: 01h:49m:24s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index e7d6b31803..59585fcf13 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,14 +1,14 @@ -Fri Feb 9 02:42:39 UTC 2024 +Mon Feb 12 19:47:52 UTC 2024 Start Regression test -Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372 +Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -16,61 +16,61 @@ Testing With Submodule Hashes: 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) Compile atm_debug_dyn32_intel elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 199 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 302 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 585 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 187 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 564 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 661 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 595 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 602 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 167 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 368 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 809 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 356 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 60 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 623 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 654 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 217 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 659 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 641 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 687 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 590 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 658 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 591 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 619 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 362 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 817 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 370 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 659 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 213 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 698 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 635 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 821 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 632 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 234 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 680 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 128 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile rrfs_intel elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 634 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 815 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 638 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 689 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 821 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 906 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 707 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 928 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 136 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 253 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 949 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 822 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 725 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 96 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_mixedmode_intel +Compile s2sw_pdlib_gnu elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 933 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 941 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 255 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 978 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 103 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 304.512951 - 0: The maximum resident set size (KB) = 3166336 + 0: The total amount of wall time = 303.568631 + 0: The maximum resident set size (KB) = 3165948 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 952.929058 - 0: The maximum resident set size (KB) = 1731100 + 0: The total amount of wall time = 953.189154 + 0: The maximum resident set size (KB) = 1734356 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_gfsv17_iau_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 998.082067 - 0: The maximum resident set size (KB) = 2016556 + 0: The total amount of wall time = 1000.322970 + 0: The maximum resident set size (KB) = 1976656 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.715119 - 0: The maximum resident set size (KB) = 1119636 + 0: The total amount of wall time = 444.097126 + 0: The maximum resident set size (KB) = 1107408 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1076.863952 - 0: The maximum resident set size (KB) = 1640568 + 0: The total amount of wall time = 1086.535581 + 0: The maximum resident set size (KB) = 1609592 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1334.215786 - 0: The maximum resident set size (KB) = 1669992 + 0: The total amount of wall time = 1323.801230 + 0: The maximum resident set size (KB) = 1674992 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 332.843461 - 0: The maximum resident set size (KB) = 3180748 + 0: The total amount of wall time = 327.204219 + 0: The maximum resident set size (KB) = 3179344 Test 007 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 324.862727 - 0: The maximum resident set size (KB) = 3205428 + 0: The total amount of wall time = 326.626342 + 0: The maximum resident set size (KB) = 3164020 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 186.389417 - 0: The maximum resident set size (KB) = 3247468 + 0: The total amount of wall time = 187.411107 + 0: The maximum resident set size (KB) = 3224904 Test 009 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.110115 - 0: The maximum resident set size (KB) = 3208992 + 0: The total amount of wall time = 333.008969 + 0: The maximum resident set size (KB) = 3174304 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 188.799647 - 0: The maximum resident set size (KB) = 3257416 + 0: The total amount of wall time = 188.438442 + 0: The maximum resident set size (KB) = 3218256 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 311.066150 - 0: The maximum resident set size (KB) = 3544328 + 0: The total amount of wall time = 309.850329 + 0: The maximum resident set size (KB) = 3533288 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.592107 - 0: The maximum resident set size (KB) = 3156256 + 0: The total amount of wall time = 326.885583 + 0: The maximum resident set size (KB) = 3148300 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 276.062640 - 0: The maximum resident set size (KB) = 3049448 + 0: The total amount of wall time = 270.450727 + 0: The maximum resident set size (KB) = 3010424 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.358697 - 0: The maximum resident set size (KB) = 3182120 + 0: The total amount of wall time = 325.063135 + 0: The maximum resident set size (KB) = 3167680 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 567.777130 - 0: The maximum resident set size (KB) = 3321080 + 0: The total amount of wall time = 564.525842 + 0: The maximum resident set size (KB) = 3314568 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 347.288904 - 0: The maximum resident set size (KB) = 3602060 + 0: The total amount of wall time = 346.698895 + 0: The maximum resident set size (KB) = 3603972 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 569.134478 - 0: The maximum resident set size (KB) = 4095196 + 0: The total amount of wall time = 590.466204 + 0: The maximum resident set size (KB) = 4099700 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.177648 - 0: The maximum resident set size (KB) = 4339540 + 0: The total amount of wall time = 382.195540 + 0: The maximum resident set size (KB) = 4338092 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_s2sa_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 309.830184 - 0: The maximum resident set size (KB) = 3163856 + 0: The total amount of wall time = 305.352616 + 0: The maximum resident set size (KB) = 3144248 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 263.732118 - 0: The maximum resident set size (KB) = 1677228 + 0: The total amount of wall time = 259.907598 + 0: The maximum resident set size (KB) = 1711160 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 255.238359 - 0: The maximum resident set size (KB) = 1771760 + 0: The total amount of wall time = 250.773875 + 0: The maximum resident set size (KB) = 1783816 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.671975 - 0: The maximum resident set size (KB) = 3238616 + 0: The total amount of wall time = 475.895126 + 0: The maximum resident set size (KB) = 3236412 Test 023 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.497696 - 0: The maximum resident set size (KB) = 1710296 + 0: The total amount of wall time = 319.001112 + 0: The maximum resident set size (KB) = 1746856 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 254.393887 - 0: The maximum resident set size (KB) = 1763108 + 0: The total amount of wall time = 247.510976 + 0: The maximum resident set size (KB) = 1773060 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 556.160931 - 0: The maximum resident set size (KB) = 2810648 + 0: The total amount of wall time = 552.228821 + 0: The maximum resident set size (KB) = 2814960 Test 026 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.820787 - 0: The maximum resident set size (KB) = 3210152 + 0: The total amount of wall time = 303.688245 + 0: The maximum resident set size (KB) = 3196616 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 963.543557 - 0: The maximum resident set size (KB) = 1758664 + 0: The total amount of wall time = 962.426891 + 0: The maximum resident set size (KB) = 1721908 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 445.964303 - 0: The maximum resident set size (KB) = 1167036 + 0: The total amount of wall time = 443.116180 + 0: The maximum resident set size (KB) = 1168896 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1100.982335 - 0: The maximum resident set size (KB) = 1669064 + 0: The total amount of wall time = 1105.827106 + 0: The maximum resident set size (KB) = 1660240 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1473.509921 - 0: The maximum resident set size (KB) = 1705596 + 0: The total amount of wall time = 1464.899827 + 0: The maximum resident set size (KB) = 1637188 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.964136 - 0: The maximum resident set size (KB) = 701272 + 0: The total amount of wall time = 185.666624 + 0: The maximum resident set size (KB) = 695552 Test 032 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,14 +2094,14 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.087320 - 0: The maximum resident set size (KB) = 652008 + 0: The total amount of wall time = 133.157021 + 0: The maximum resident set size (KB) = 644768 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2109,21 +2109,21 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_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 = 138.827757 - 0: The maximum resident set size (KB) = 653988 + 0: The total amount of wall time = 137.664995 + 0: The maximum resident set size (KB) = 656332 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.306776 - 0: The maximum resident set size (KB) = 644756 + 0: The total amount of wall time = 133.333064 + 0: The maximum resident set size (KB) = 644048 Test 035 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.065789 - 0: The maximum resident set size (KB) = 645940 + 0: The total amount of wall time = 136.337441 + 0: The maximum resident set size (KB) = 651576 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 374.087642 -0: The maximum resident set size (KB) = 875684 +0: The total amount of wall time = 371.232212 +0: The maximum resident set size (KB) = 867588 Test 037 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 369.784073 -0: The maximum resident set size (KB) = 872564 +0: The total amount of wall time = 371.884923 +0: The maximum resident set size (KB) = 867128 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.996221 - 0: The maximum resident set size (KB) = 848128 + 0: The total amount of wall time = 525.577267 + 0: The maximum resident set size (KB) = 851348 Test 039 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.296572 - 0: The maximum resident set size (KB) = 1283096 + 0: The total amount of wall time = 521.524701 + 0: The maximum resident set size (KB) = 1284192 Test 040 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2299,13 +2299,13 @@ Checking test 041 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK @@ -2318,7 +2318,7 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK @@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.938041 - 0: The maximum resident set size (KB) = 1382916 + 0: The total amount of wall time = 455.726821 + 0: The maximum resident set size (KB) = 1392736 Test 041 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.325746 - 0: The maximum resident set size (KB) = 621884 + 0: The total amount of wall time = 87.357503 + 0: The maximum resident set size (KB) = 634836 Test 042 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.983257 - 0: The maximum resident set size (KB) = 506516 + 0: The total amount of wall time = 48.495107 + 0: The maximum resident set size (KB) = 502228 Test 043 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.630832 - 0: The maximum resident set size (KB) = 648564 + 0: The total amount of wall time = 82.318434 + 0: The maximum resident set size (KB) = 624068 Test 044 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.816801 - 0: The maximum resident set size (KB) = 649496 + 0: The total amount of wall time = 135.208785 + 0: The maximum resident set size (KB) = 638444 Test 045 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.809589 - 0: The maximum resident set size (KB) = 641736 + 0: The total amount of wall time = 134.345735 + 0: The maximum resident set size (KB) = 653424 Test 046 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.886411 - 0: The maximum resident set size (KB) = 1585764 + 0: The total amount of wall time = 164.594205 + 0: The maximum resident set size (KB) = 1622864 Test 047 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.322435 - 0: The maximum resident set size (KB) = 1613244 + 0: The total amount of wall time = 163.006437 + 0: The maximum resident set size (KB) = 1621616 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.585781 - 0: The maximum resident set size (KB) = 1619112 + 0: The total amount of wall time = 157.787667 + 0: The maximum resident set size (KB) = 1610164 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 86.088350 - 0: The maximum resident set size (KB) = 881124 + 0: The total amount of wall time = 85.998651 + 0: The maximum resident set size (KB) = 888408 Test 050 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_noqr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.906648 - 0: The maximum resident set size (KB) = 1604684 + 0: The total amount of wall time = 163.693315 + 0: The maximum resident set size (KB) = 1591828 Test 051 control_noqr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_noqr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 84.096340 - 0: The maximum resident set size (KB) = 902336 + 0: The total amount of wall time = 84.403239 + 0: The maximum resident set size (KB) = 927348 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.835644 - 0: The maximum resident set size (KB) = 1603656 + 0: The total amount of wall time = 170.679636 + 0: The maximum resident set size (KB) = 1581408 Test 053 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 154.033605 - 0: The maximum resident set size (KB) = 1706080 + 0: The total amount of wall time = 153.170645 + 0: The maximum resident set size (KB) = 1711716 Test 054 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 296.801899 - 0: The maximum resident set size (KB) = 1609640 + 0: The total amount of wall time = 297.100669 + 0: The maximum resident set size (KB) = 1614324 Test 055 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.532517 - 0: The maximum resident set size (KB) = 1674888 + 0: The total amount of wall time = 216.981714 + 0: The maximum resident set size (KB) = 1659248 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.592187 - 0: The maximum resident set size (KB) = 1607640 + 0: The total amount of wall time = 167.649312 + 0: The maximum resident set size (KB) = 1622436 Test 057 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.167623 - 0: The maximum resident set size (KB) = 1610904 + 0: The total amount of wall time = 196.941312 + 0: The maximum resident set size (KB) = 1631404 Test 058 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.436146 - 0: The maximum resident set size (KB) = 853740 + 0: The total amount of wall time = 294.643744 + 0: The maximum resident set size (KB) = 854884 Test 059 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.069289 - 0: The maximum resident set size (KB) = 1014072 + 0: The total amount of wall time = 151.959387 + 0: The maximum resident set size (KB) = 1010872 Test 060 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.864483 - 0: The maximum resident set size (KB) = 849644 + 0: The total amount of wall time = 315.897742 + 0: The maximum resident set size (KB) = 838892 Test 061 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 179.472044 - 0: The maximum resident set size (KB) = 813984 + 0: The total amount of wall time = 179.599481 + 0: The maximum resident set size (KB) = 845384 Test 062 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 294.253920 - 0: The maximum resident set size (KB) = 1327104 + 0: The total amount of wall time = 296.636309 + 0: The maximum resident set size (KB) = 1364268 Test 063 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 292.926792 - 0: The maximum resident set size (KB) = 852028 + 0: The total amount of wall time = 293.186553 + 0: The maximum resident set size (KB) = 847864 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.809348 - 0: The maximum resident set size (KB) = 848108 + 0: The total amount of wall time = 296.877507 + 0: The maximum resident set size (KB) = 837296 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 380.831097 - 0: The maximum resident set size (KB) = 1909572 + 0: The total amount of wall time = 383.315807 + 0: The maximum resident set size (KB) = 1913356 Test 066 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.093181 - 0: The maximum resident set size (KB) = 1103804 + 0: The total amount of wall time = 451.071493 + 0: The maximum resident set size (KB) = 1101988 Test 067 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 237.982413 - 0: The maximum resident set size (KB) = 1289348 + 0: The total amount of wall time = 233.343673 + 0: The maximum resident set size (KB) = 1290280 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.086162 - 0: The maximum resident set size (KB) = 1001332 + 0: The total amount of wall time = 470.379858 + 0: The maximum resident set size (KB) = 1023536 Test 069 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.980809 - 0: The maximum resident set size (KB) = 1182584 + 0: The total amount of wall time = 420.615985 + 0: The maximum resident set size (KB) = 1184948 Test 070 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.656988 - 0: The maximum resident set size (KB) = 1082664 + 0: The total amount of wall time = 229.809108 + 0: The maximum resident set size (KB) = 1101576 Test 071 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.514183 - 0: The maximum resident set size (KB) = 1105416 + 0: The total amount of wall time = 449.820455 + 0: The maximum resident set size (KB) = 1097124 Test 072 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.544337 - 0: The maximum resident set size (KB) = 1035216 + 0: The total amount of wall time = 471.768325 + 0: The maximum resident set size (KB) = 1046940 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 336.646295 - 0: The maximum resident set size (KB) = 1122916 + 0: The total amount of wall time = 335.061895 + 0: The maximum resident set size (KB) = 1132580 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.019135 - 0: The maximum resident set size (KB) = 1044308 + 0: The total amount of wall time = 226.550141 + 0: The maximum resident set size (KB) = 1029352 Test 075 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.384019 - 0: The maximum resident set size (KB) = 1017056 + 0: The total amount of wall time = 233.635964 + 0: The maximum resident set size (KB) = 1011600 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.734882 - 0: The maximum resident set size (KB) = 1107988 + 0: The total amount of wall time = 207.131294 + 0: The maximum resident set size (KB) = 1106600 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.626222 - 0: The maximum resident set size (KB) = 1001748 + 0: The total amount of wall time = 118.578114 + 0: The maximum resident set size (KB) = 998860 Test 078 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.962499 - 0: The maximum resident set size (KB) = 1099572 + 0: The total amount of wall time = 441.309666 + 0: The maximum resident set size (KB) = 1057360 Test 079 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.209018 - 0: The maximum resident set size (KB) = 1980720 + 0: The total amount of wall time = 532.712054 + 0: The maximum resident set size (KB) = 1991160 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 522.039560 - 0: The maximum resident set size (KB) = 2025540 + 0: The total amount of wall time = 515.792700 + 0: The maximum resident set size (KB) = 2058992 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 339.768205 - 0: The maximum resident set size (KB) = 747648 + 0: The total amount of wall time = 342.511531 + 0: The maximum resident set size (KB) = 742316 Test 082 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.280679 - 0: The maximum resident set size (KB) = 746848 + 0: The total amount of wall time = 332.865752 + 0: The maximum resident set size (KB) = 747268 Test 083 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.605268 - 0: The maximum resident set size (KB) = 737416 + 0: The total amount of wall time = 186.934976 + 0: The maximum resident set size (KB) = 743008 Test 084 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.532138 - 0: The maximum resident set size (KB) = 653352 + 0: The total amount of wall time = 111.464977 + 0: The maximum resident set size (KB) = 645704 Test 085 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.297436 - 0: The maximum resident set size (KB) = 1600432 + 0: The total amount of wall time = 146.712933 + 0: The maximum resident set size (KB) = 1617784 Test 086 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_control_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.690204 - 0: The maximum resident set size (KB) = 853360 + 0: The total amount of wall time = 268.418882 + 0: The maximum resident set size (KB) = 849792 Test 087 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_CubedSphereGrid_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 149.574969 - 0: The maximum resident set size (KB) = 805484 + 0: The total amount of wall time = 147.944081 + 0: The maximum resident set size (KB) = 812608 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.885189 - 0: The maximum resident set size (KB) = 810076 + 0: The total amount of wall time = 150.780840 + 0: The maximum resident set size (KB) = 810360 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.728363 - 0: The maximum resident set size (KB) = 789572 + 0: The total amount of wall time = 165.247123 + 0: The maximum resident set size (KB) = 787628 Test 090 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.800299 - 0: The maximum resident set size (KB) = 813456 + 0: The total amount of wall time = 148.794493 + 0: The maximum resident set size (KB) = 808316 Test 091 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmg_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.186015 - 0: The maximum resident set size (KB) = 863652 + 0: The total amount of wall time = 229.898822 + 0: The maximum resident set size (KB) = 860616 Test 092 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_csawmgt_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.018937 - 0: The maximum resident set size (KB) = 862984 + 0: The total amount of wall time = 225.749094 + 0: The maximum resident set size (KB) = 856096 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_intel Checking test 094 control_ras_debug_intel 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.669722 - 0: The maximum resident set size (KB) = 813432 + 0: The total amount of wall time = 149.399603 + 0: The maximum resident set size (KB) = 823456 Test 094 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_intel Checking test 095 control_diag_debug_intel 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.891525 - 0: The maximum resident set size (KB) = 870772 + 0: The total amount of wall time = 158.692059 + 0: The maximum resident set size (KB) = 871544 Test 095 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_intel Checking test 096 control_debug_p8_intel 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.349447 - 0: The maximum resident set size (KB) = 1636064 + 0: The total amount of wall time = 159.327726 + 0: The maximum resident set size (KB) = 1607588 Test 096 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 993.244043 - 0: The maximum resident set size (KB) = 829480 + 0: The total amount of wall time = 972.216738 + 0: The maximum resident set size (KB) = 824100 Test 097 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.939965 - 0: The maximum resident set size (KB) = 1196080 + 0: The total amount of wall time = 277.800839 + 0: The maximum resident set size (KB) = 1196052 Test 098 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.184276 - 0: The maximum resident set size (KB) = 1201444 + 0: The total amount of wall time = 270.255123 + 0: The maximum resident set size (KB) = 1172544 Test 099 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel 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.298302 - 0: The maximum resident set size (KB) = 1192044 + 0: The total amount of wall time = 273.250044 + 0: The maximum resident set size (KB) = 1194996 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel 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.585663 - 0: The maximum resident set size (KB) = 1170332 + 0: The total amount of wall time = 271.502518 + 0: The maximum resident set size (KB) = 1199632 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_drag_suite_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel 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.892891 - 0: The maximum resident set size (KB) = 1203184 + 0: The total amount of wall time = 272.516051 + 0: The maximum resident set size (KB) = 1206560 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel 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.458237 - 0: The maximum resident set size (KB) = 1285900 + 0: The total amount of wall time = 285.163902 + 0: The maximum resident set size (KB) = 1277132 Test 103 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.382971 - 0: The maximum resident set size (KB) = 1199752 + 0: The total amount of wall time = 279.347147 + 0: The maximum resident set size (KB) = 1203408 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.569299 - 0: The maximum resident set size (KB) = 1197360 + 0: The total amount of wall time = 281.243572 + 0: The maximum resident set size (KB) = 1195820 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel 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.372101 - 0: The maximum resident set size (KB) = 1196256 + 0: The total amount of wall time = 275.585512 + 0: The maximum resident set size (KB) = 1194036 Test 106 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel 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.979548 - 0: The maximum resident set size (KB) = 1206376 + 0: The total amount of wall time = 276.649882 + 0: The maximum resident set size (KB) = 1191084 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.013535 - 0: The maximum resident set size (KB) = 1200588 + 0: The total amount of wall time = 268.867286 + 0: The maximum resident set size (KB) = 1193312 Test 108 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel 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.144950 - 0: The maximum resident set size (KB) = 1173876 + 0: The total amount of wall time = 273.640190 + 0: The maximum resident set size (KB) = 1198552 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 444.242462 - 0: The maximum resident set size (KB) = 1192956 + 0: The total amount of wall time = 450.997682 + 0: The maximum resident set size (KB) = 1193464 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.133423 - 0: The maximum resident set size (KB) = 1160672 + 0: The total amount of wall time = 270.737051 + 0: The maximum resident set size (KB) = 1186396 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 329.830037 - 0: The maximum resident set size (KB) = 1195020 + 0: The total amount of wall time = 333.464130 + 0: The maximum resident set size (KB) = 1197984 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.610092 - 0: The maximum resident set size (KB) = 1203804 + 0: The total amount of wall time = 271.043080 + 0: The maximum resident set size (KB) = 1195892 Test 113 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,26 +4377,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.797353 - 0: The maximum resident set size (KB) = 1207704 + 0: The total amount of wall time = 477.896260 + 0: The maximum resident set size (KB) = 1201416 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 277.834959 - 0: The maximum resident set size (KB) = 509588 + 0: The total amount of wall time = 279.368314 + 0: The maximum resident set size (KB) = 481600 Test 115 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4407,14 +4407,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 216.466826 - 0: The maximum resident set size (KB) = 1150164 + 0: The total amount of wall time = 221.770194 + 0: The maximum resident set size (KB) = 1150316 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.029832 - 0: The maximum resident set size (KB) = 1052676 + 0: The total amount of wall time = 369.556851 + 0: The maximum resident set size (KB) = 1056244 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4515,14 +4515,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.140482 - 0: The maximum resident set size (KB) = 963984 + 0: The total amount of wall time = 190.427715 + 0: The maximum resident set size (KB) = 979816 Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4569,14 +4569,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.481483 - 0: The maximum resident set size (KB) = 1092100 + 0: The total amount of wall time = 349.946379 + 0: The maximum resident set size (KB) = 1082320 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.686687 - 0: The maximum resident set size (KB) = 958268 + 0: The total amount of wall time = 176.550235 + 0: The maximum resident set size (KB) = 959496 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4677,14 +4677,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.075477 - 0: The maximum resident set size (KB) = 903488 + 0: The total amount of wall time = 202.692334 + 0: The maximum resident set size (KB) = 911664 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4723,28 +4723,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.333974 - 0: The maximum resident set size (KB) = 1035132 + 0: The total amount of wall time = 276.438246 + 0: The maximum resident set size (KB) = 1032892 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.774300 - 0: The maximum resident set size (KB) = 925324 + 0: The total amount of wall time = 99.778809 + 0: The maximum resident set size (KB) = 929844 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4760,40 +4760,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 111.576488 - 0: The maximum resident set size (KB) = 1202272 + 0: The total amount of wall time = 114.704915 + 0: The maximum resident set size (KB) = 1162016 Test 124 conus13km_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 42.983390 - 0: The maximum resident set size (KB) = 1095808 + 0: The total amount of wall time = 43.219208 + 0: The maximum resident set size (KB) = 1118396 Test 125 conus13km_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 61.778142 - 0: The maximum resident set size (KB) = 1101396 + 0: The total amount of wall time = 61.579077 + 0: The maximum resident set size (KB) = 1101688 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4840,42 +4840,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.068761 - 0: The maximum resident set size (KB) = 982284 + 0: The total amount of wall time = 240.480859 + 0: The maximum resident set size (KB) = 986272 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.424007 - 0: The maximum resident set size (KB) = 1080424 + 0: The total amount of wall time = 274.150312 + 0: The maximum resident set size (KB) = 1081460 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.006189 - 0: The maximum resident set size (KB) = 1080240 + 0: The total amount of wall time = 265.922374 + 0: The maximum resident set size (KB) = 1072500 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4889,14 +4889,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 811.195371 - 0: The maximum resident set size (KB) = 1216144 + 0: The total amount of wall time = 822.722419 + 0: The maximum resident set size (KB) = 1219912 Test 130 conus13km_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4910,81 +4910,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 820.108485 - 0: The maximum resident set size (KB) = 921656 + 0: The total amount of wall time = 814.866061 + 0: The maximum resident set size (KB) = 918584 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 463.045155 - 0: The maximum resident set size (KB) = 1150768 + 0: The total amount of wall time = 459.507598 + 0: The maximum resident set size (KB) = 1148604 Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 835.709060 - 0: The maximum resident set size (KB) = 1271496 + 0: The total amount of wall time = 830.181302 + 0: The maximum resident set size (KB) = 1292668 Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.238718 - 0: The maximum resident set size (KB) = 1115652 + 0: The total amount of wall time = 274.638429 + 0: The maximum resident set size (KB) = 1119064 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 269.591331 - 0: The maximum resident set size (KB) = 732584 + 0: The total amount of wall time = 271.319114 + 0: The maximum resident set size (KB) = 735252 Test 135 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 329.311193 - 0: The maximum resident set size (KB) = 1115180 + 0: The total amount of wall time = 335.526396 + 0: The maximum resident set size (KB) = 1106148 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4993,14 +4993,14 @@ Checking test 137 hafs_regional_atm_ocn_intel 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 = 393.141806 - 0: The maximum resident set size (KB) = 830692 + 0: The total amount of wall time = 396.155571 + 0: The maximum resident set size (KB) = 827180 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5009,14 +5009,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 763.367385 - 0: The maximum resident set size (KB) = 855152 + 0: The total amount of wall time = 763.044752 + 0: The maximum resident set size (KB) = 852124 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5027,14 +5027,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 866.318467 - 0: The maximum resident set size (KB) = 877336 + 0: The total amount of wall time = 871.959441 + 0: The maximum resident set size (KB) = 881404 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5056,14 +5056,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 302.505423 - 0: The maximum resident set size (KB) = 505936 + 0: The total amount of wall time = 310.160417 + 0: The maximum resident set size (KB) = 502844 Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 372.281162 - 0: The maximum resident set size (KB) = 514792 + 0: The total amount of wall time = 389.580576 + 0: The maximum resident set size (KB) = 521436 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5089,19 +5089,19 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5126,14 +5126,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 144.728929 - 0: The maximum resident set size (KB) = 376824 + 0: The total amount of wall time = 156.092604 + 0: The maximum resident set size (KB) = 377028 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5162,7 +5162,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK @@ -5172,7 +5172,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK @@ -5196,7 +5196,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK @@ -5215,14 +5215,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 397.004363 - 0: The maximum resident set size (KB) = 482756 + 0: The total amount of wall time = 413.646554 + 0: The maximum resident set size (KB) = 473780 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 204.311082 - 0: The maximum resident set size (KB) = 531212 + 0: The total amount of wall time = 214.551997 + 0: The maximum resident set size (KB) = 530400 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5256,18 +5256,18 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 192.788451 - 0: The maximum resident set size (KB) = 528404 + 0: The total amount of wall time = 206.391257 + 0: The maximum resident set size (KB) = 532260 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5276,28 +5276,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 233.026851 - 0: The maximum resident set size (KB) = 580944 + 0: The total amount of wall time = 241.659181 + 0: The maximum resident set size (KB) = 583064 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 64.936264 - 0: The maximum resident set size (KB) = 399072 + 0: The total amount of wall time = 62.026329 + 0: The maximum resident set size (KB) = 399936 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_nested_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5309,16 +5309,16 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -5344,28 +5344,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 226.320282 - 0: The maximum resident set size (KB) = 784844 + 0: The total amount of wall time = 224.890724 + 0: The maximum resident set size (KB) = 795792 Test 148 gnv1_nested_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 712.907872 - 0: The maximum resident set size (KB) = 624452 + 0: The total amount of wall time = 722.026750 + 0: The maximum resident set size (KB) = 548576 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5376,14 +5376,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 492.970928 - 0: The maximum resident set size (KB) = 660640 + 0: The total amount of wall time = 492.103995 + 0: The maximum resident set size (KB) = 624412 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5394,14 +5394,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 508.612300 - 0: The maximum resident set size (KB) = 698852 + 0: The total amount of wall time = 497.852704 + 0: The maximum resident set size (KB) = 739400 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5411,14 +5411,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 363.479913 - 0: The maximum resident set size (KB) = 688796 + 0: The total amount of wall time = 367.171305 + 0: The maximum resident set size (KB) = 725100 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 153 hafs_regional_docn_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.856230 - 0: The maximum resident set size (KB) = 823472 + 0: The total amount of wall time = 373.632735 + 0: The maximum resident set size (KB) = 792300 Test 153 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_docn_oisst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5441,131 +5441,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 360.283526 - 0: The maximum resident set size (KB) = 805924 + 0: The total amount of wall time = 358.388454 + 0: The maximum resident set size (KB) = 811556 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hafs_regional_datm_cdeps_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 942.521065 - 0: The maximum resident set size (KB) = 1212460 + 0: The total amount of wall time = 950.899892 + 0: The maximum resident set size (KB) = 1219500 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.363887 - 0: The maximum resident set size (KB) = 1135228 + 0: The total amount of wall time = 153.853228 + 0: The maximum resident set size (KB) = 1123920 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.959781 - 0: The maximum resident set size (KB) = 1078044 + 0: The total amount of wall time = 90.972188 + 0: The maximum resident set size (KB) = 1088780 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.635190 - 0: The maximum resident set size (KB) = 1004284 + 0: The total amount of wall time = 146.030170 + 0: The maximum resident set size (KB) = 1008768 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_iau_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.105170 - 0: The maximum resident set size (KB) = 1005596 + 0: The total amount of wall time = 148.345006 + 0: The maximum resident set size (KB) = 999632 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.721221 - 0: The maximum resident set size (KB) = 1002800 + 0: The total amount of wall time = 147.600625 + 0: The maximum resident set size (KB) = 1003720 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.452521 - 0: The maximum resident set size (KB) = 1141212 + 0: The total amount of wall time = 147.197015 + 0: The maximum resident set size (KB) = 1121144 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.787859 - 0: The maximum resident set size (KB) = 1118308 + 0: The total amount of wall time = 150.003110 + 0: The maximum resident set size (KB) = 1131948 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.303852 - 0: The maximum resident set size (KB) = 1005720 + 0: The total amount of wall time = 145.887089 + 0: The maximum resident set size (KB) = 1005404 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5574,14 +5574,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel 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 = 377.824234 - 0: The maximum resident set size (KB) = 1050572 + 0: The total amount of wall time = 356.695793 + 0: The maximum resident set size (KB) = 1052980 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5590,77 +5590,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 386.459490 - 0: The maximum resident set size (KB) = 1047540 + 0: The total amount of wall time = 360.244361 + 0: The maximum resident set size (KB) = 1057408 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.441484 - 0: The maximum resident set size (KB) = 1127644 + 0: The total amount of wall time = 154.222800 + 0: The maximum resident set size (KB) = 1121736 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 241.094129 - 0: The maximum resident set size (KB) = 2431952 + 0: The total amount of wall time = 223.783340 + 0: The maximum resident set size (KB) = 2491360 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_gfs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 226.580313 - 0: The maximum resident set size (KB) = 2476300 + 0: The total amount of wall time = 223.247409 + 0: The maximum resident set size (KB) = 2484356 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 357.204948 - 0: The maximum resident set size (KB) = 1046324 + 0: The total amount of wall time = 354.179969 + 0: The maximum resident set size (KB) = 1043136 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.476488 - 0: The maximum resident set size (KB) = 1127896 + 0: The total amount of wall time = 149.295762 + 0: The maximum resident set size (KB) = 1131848 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5669,14 +5669,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 36.001820 - 0: The maximum resident set size (KB) = 254432 + 0: The total amount of wall time = 35.662665 + 0: The maximum resident set size (KB) = 252556 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5685,14 +5685,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 37.876324 - 0: The maximum resident set size (KB) = 320484 + 0: The total amount of wall time = 38.091672 + 0: The maximum resident set size (KB) = 319816 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_lnd_era5_rst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5701,14 +5701,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 21.762636 - 0: The maximum resident set size (KB) = 315984 + 0: The total amount of wall time = 22.170708 + 0: The maximum resident set size (KB) = 315616 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_sbs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5797,14 +5797,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 266.601415 - 0: The maximum resident set size (KB) = 1583840 + 0: The total amount of wall time = 242.799798 + 0: The maximum resident set size (KB) = 1588680 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_atmlnd_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5893,14 +5893,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 265.692732 - 0: The maximum resident set size (KB) = 1591404 + 0: The total amount of wall time = 248.419274 + 0: The maximum resident set size (KB) = 1573676 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_restart_p8_atmlnd_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5921,14 +5921,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 124.281916 - 0: The maximum resident set size (KB) = 888112 + 0: The total amount of wall time = 125.717673 + 0: The maximum resident set size (KB) = 894372 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmwav_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5971,14 +5971,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 99.894690 - 0: The maximum resident set size (KB) = 1613184 + 0: The total amount of wall time = 92.732975 + 0: The maximum resident set size (KB) = 1655124 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_atmwav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6022,14 +6022,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.873404 - 0: The maximum resident set size (KB) = 664332 + 0: The total amount of wall time = 87.148476 + 0: The maximum resident set size (KB) = 668300 Test 178 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6073,14 +6073,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.354898 - 0: The maximum resident set size (KB) = 3000484 + 0: The total amount of wall time = 220.459272 + 0: The maximum resident set size (KB) = 3004436 Test 179 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6124,14 +6124,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.664148 - 0: The maximum resident set size (KB) = 3067228 + 0: The total amount of wall time = 277.280527 + 0: The maximum resident set size (KB) = 3085148 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6175,14 +6175,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 301.433619 - 0: The maximum resident set size (KB) = 3078804 + 0: The total amount of wall time = 290.237464 + 0: The maximum resident set size (KB) = 3095712 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_atmaq_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6193,17 +6193,17 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1181.521694 - 0: The maximum resident set size (KB) = 4504128 + 0: The total amount of wall time = 1207.046141 + 0: The maximum resident set size (KB) = 4400692 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_c48_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_gnu Checking test 183 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6242,14 +6242,14 @@ Checking test 183 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 692.795800 -0: The maximum resident set size (KB) = 794260 +0: The total amount of wall time = 681.675545 +0: The maximum resident set size (KB) = 794988 Test 183 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_gnu Checking test 184 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6260,14 +6260,14 @@ Checking test 184 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 223.895041 - 0: The maximum resident set size (KB) = 551168 + 0: The total amount of wall time = 236.825354 + 0: The maximum resident set size (KB) = 553272 Test 184 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_gnu Checking test 185 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6278,14 +6278,14 @@ Checking test 185 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.940296 - 0: The maximum resident set size (KB) = 559112 + 0: The total amount of wall time = 281.241988 + 0: The maximum resident set size (KB) = 560788 Test 185 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_gnu Checking test 186 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6332,14 +6332,14 @@ Checking test 186 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.015183 - 0: The maximum resident set size (KB) = 1313376 + 0: The total amount of wall time = 280.284469 + 0: The maximum resident set size (KB) = 1308004 Test 186 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_p8_ugwpv1_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_gnu Checking test 187 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6386,14 +6386,14 @@ Checking test 187 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.617016 - 0: The maximum resident set size (KB) = 1312300 + 0: The total amount of wall time = 267.323340 + 0: The maximum resident set size (KB) = 1307348 Test 187 control_p8_ugwpv1_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_flake_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6404,14 +6404,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.509143 - 0: The maximum resident set size (KB) = 599100 + 0: The total amount of wall time = 346.146210 + 0: The maximum resident set size (KB) = 599816 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6458,14 +6458,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 679.829016 - 0: The maximum resident set size (KB) = 896284 + 0: The total amount of wall time = 689.690751 + 0: The maximum resident set size (KB) = 895100 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6512,14 +6512,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 689.072968 - 0: The maximum resident set size (KB) = 903596 + 0: The total amount of wall time = 693.551294 + 0: The maximum resident set size (KB) = 898104 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6566,14 +6566,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 616.918734 - 0: The maximum resident set size (KB) = 977320 + 0: The total amount of wall time = 611.268683 + 0: The maximum resident set size (KB) = 983768 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6612,14 +6612,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.112529 - 0: The maximum resident set size (KB) = 629296 + 0: The total amount of wall time = 349.652861 + 0: The maximum resident set size (KB) = 625004 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6666,14 +6666,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 683.790792 - 0: The maximum resident set size (KB) = 897200 + 0: The total amount of wall time = 684.575073 + 0: The maximum resident set size (KB) = 896844 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6720,14 +6720,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 697.040564 - 0: The maximum resident set size (KB) = 897280 + 0: The total amount of wall time = 692.956862 + 0: The maximum resident set size (KB) = 897036 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_sfcdiff_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6766,14 +6766,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 523.826402 - 0: The maximum resident set size (KB) = 632020 + 0: The total amount of wall time = 514.611257 + 0: The maximum resident set size (KB) = 630024 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6820,14 +6820,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.096279 - 0: The maximum resident set size (KB) = 893200 + 0: The total amount of wall time = 347.599333 + 0: The maximum resident set size (KB) = 891568 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_noqr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_noqr_gnu Checking test 197 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6874,14 +6874,14 @@ Checking test 197 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 343.772398 - 0: The maximum resident set size (KB) = 879540 + 0: The total amount of wall time = 346.276386 + 0: The maximum resident set size (KB) = 884948 Test 197 hrrr_control_noqr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6928,14 +6928,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 302.538771 - 0: The maximum resident set size (KB) = 971500 + 0: The total amount of wall time = 304.725469 + 0: The maximum resident set size (KB) = 976560 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6982,42 +6982,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.550028 - 0: The maximum resident set size (KB) = 894580 + 0: The total amount of wall time = 346.158226 + 0: The maximum resident set size (KB) = 892444 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 182.498345 - 0: The maximum resident set size (KB) = 612224 + 0: The total amount of wall time = 201.082821 + 0: The maximum resident set size (KB) = 613028 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_noqr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_noqr_gnu Checking test 201 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 179.413236 - 0: The maximum resident set size (KB) = 705664 + 0: The total amount of wall time = 180.612869 + 0: The maximum resident set size (KB) = 707324 Test 201 hrrr_control_restart_noqr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7064,224 +7064,224 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 673.387490 - 0: The maximum resident set size (KB) = 897904 + 0: The total amount of wall time = 669.572003 + 0: The maximum resident set size (KB) = 895348 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_gnu Checking test 203 control_diag_debug_gnu 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.392899 - 0: The maximum resident set size (KB) = 592080 + 0: The total amount of wall time = 83.770174 + 0: The maximum resident set size (KB) = 600416 Test 203 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_gnu Checking test 204 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 434.996273 - 0: The maximum resident set size (KB) = 595888 + 0: The total amount of wall time = 434.969481 + 0: The maximum resident set size (KB) = 602324 Test 204 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_gnu Checking test 205 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.824319 - 0: The maximum resident set size (KB) = 911384 + 0: The total amount of wall time = 140.029285 + 0: The maximum resident set size (KB) = 919844 Test 205 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_gnu Checking test 206 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.395503 - 0: The maximum resident set size (KB) = 903880 + 0: The total amount of wall time = 135.522272 + 0: The maximum resident set size (KB) = 911428 Test 206 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_gf_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_gnu Checking test 207 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.979459 - 0: The maximum resident set size (KB) = 908716 + 0: The total amount of wall time = 140.930872 + 0: The maximum resident set size (KB) = 911460 Test 207 hrrr_gf_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_c3_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_gnu Checking test 208 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.555490 - 0: The maximum resident set size (KB) = 914392 + 0: The total amount of wall time = 139.866402 + 0: The maximum resident set size (KB) = 914132 Test 208 hrrr_c3_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_gnu Checking test 209 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.580921 - 0: The maximum resident set size (KB) = 999028 + 0: The total amount of wall time = 150.728221 + 0: The maximum resident set size (KB) = 1005068 Test 209 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.550247 - 0: The maximum resident set size (KB) = 909140 + 0: The total amount of wall time = 223.215254 + 0: The maximum resident set size (KB) = 873516 Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_progcld_thompson_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_gnu Checking test 211 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.941752 - 0: The maximum resident set size (KB) = 916300 + 0: The total amount of wall time = 141.907998 + 0: The maximum resident set size (KB) = 885084 Test 211 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rrfs_v1beta_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_gnu Checking test 212 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.579622 - 0: The maximum resident set size (KB) = 901792 + 0: The total amount of wall time = 139.755853 + 0: The maximum resident set size (KB) = 911388 Test 212 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_ras_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_gnu Checking test 213 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 80.054783 - 0: The maximum resident set size (KB) = 540512 + 0: The total amount of wall time = 79.026826 + 0: The maximum resident set size (KB) = 544284 Test 213 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_stochy_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_gnu Checking test 214 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.470016 - 0: The maximum resident set size (KB) = 538164 + 0: The total amount of wall time = 117.032905 + 0: The maximum resident set size (KB) = 543148 Test 214 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_gnu Checking test 215 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 88.919673 - 0: The maximum resident set size (KB) = 1292548 + 0: The total amount of wall time = 88.372124 + 0: The maximum resident set size (KB) = 1295696 Test 215 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_flake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_gnu Checking test 216 rap_flake_debug_gnu 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.855554 - 0: The maximum resident set size (KB) = 912372 + 0: The total amount of wall time = 138.439615 + 0: The maximum resident set size (KB) = 917516 Test 216 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_clm_lake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_gnu Checking test 217 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.835207 - 0: The maximum resident set size (KB) = 913792 + 0: The total amount of wall time = 157.204836 + 0: The maximum resident set size (KB) = 917908 Test 217 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/gnv1_c96_no_nest_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_gnu Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7322,26 +7322,26 @@ Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.077066 - 0: The maximum resident set size (KB) = 910856 + 0: The total amount of wall time = 235.347977 + 0: The maximum resident set size (KB) = 917920 Test 218 gnv1_c96_no_nest_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/control_wam_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_gnu Checking test 219 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 139.290323 - 0: The maximum resident set size (KB) = 249200 + 0: The total amount of wall time = 137.421986 + 0: The maximum resident set size (KB) = 244972 Test 219 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_gnu Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7388,14 +7388,14 @@ Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 697.275705 - 0: The maximum resident set size (KB) = 752000 + 0: The total amount of wall time = 692.764510 + 0: The maximum resident set size (KB) = 750048 Test 220 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_gnu Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7442,14 +7442,14 @@ Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.770014 - 0: The maximum resident set size (KB) = 750444 + 0: The total amount of wall time = 355.454468 + 0: The maximum resident set size (KB) = 748012 Test 221 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_gnu Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7496,14 +7496,14 @@ Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 631.534921 - 0: The maximum resident set size (KB) = 803532 + 0: The total amount of wall time = 622.909581 + 0: The maximum resident set size (KB) = 804520 Test 222 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_gnu Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7550,14 +7550,14 @@ Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.792468 - 0: The maximum resident set size (KB) = 814684 + 0: The total amount of wall time = 305.705708 + 0: The maximum resident set size (KB) = 805892 Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_gnu Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7604,14 +7604,14 @@ Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 351.896889 - 0: The maximum resident set size (KB) = 749348 + 0: The total amount of wall time = 352.538569 + 0: The maximum resident set size (KB) = 746216 Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_gnu Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7650,28 +7650,28 @@ Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 526.713416 - 0: The maximum resident set size (KB) = 594756 + 0: The total amount of wall time = 517.257788 + 0: The maximum resident set size (KB) = 592932 Test 225 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_gnu Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.051875 - 0: The maximum resident set size (KB) = 584392 + 0: The total amount of wall time = 185.821866 + 0: The maximum resident set size (KB) = 582260 Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_gnu Checking test 227 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7687,40 +7687,40 @@ Checking test 227 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 237.901392 - 0: The maximum resident set size (KB) = 901060 + 0: The total amount of wall time = 241.101873 + 0: The maximum resident set size (KB) = 899848 Test 227 conus13km_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_gnu Checking test 228 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.776535 - 0: The maximum resident set size (KB) = 937072 + 0: The total amount of wall time = 99.783553 + 0: The maximum resident set size (KB) = 937436 Test 228 conus13km_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_gnu Checking test 229 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.313436 - 0: The maximum resident set size (KB) = 600832 + 0: The total amount of wall time = 127.730944 + 0: The maximum resident set size (KB) = 599308 Test 229 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_gnu Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7767,42 +7767,42 @@ Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.947899 - 0: The maximum resident set size (KB) = 782644 + 0: The total amount of wall time = 407.328008 + 0: The maximum resident set size (KB) = 787716 Test 230 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_gnu Checking test 231 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.632430 - 0: The maximum resident set size (KB) = 762164 + 0: The total amount of wall time = 141.061955 + 0: The maximum resident set size (KB) = 763912 Test 231 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_gnu Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.820539 - 0: The maximum resident set size (KB) = 762324 + 0: The total amount of wall time = 138.516894 + 0: The maximum resident set size (KB) = 762000 Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_gnu Checking test 233 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7816,14 +7816,14 @@ Checking test 233 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 415.827265 - 0: The maximum resident set size (KB) = 920564 + 0: The total amount of wall time = 415.930622 + 0: The maximum resident set size (KB) = 917172 Test 233 conus13km_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_gnu Checking test 234 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7837,56 +7837,56 @@ Checking test 234 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 426.875680 - 0: The maximum resident set size (KB) = 635624 + 0: The total amount of wall time = 415.411982 + 0: The maximum resident set size (KB) = 637428 Test 234 conus13km_debug_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_debug_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_gnu Checking test 235 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 251.480665 - 0: The maximum resident set size (KB) = 956152 + 0: The total amount of wall time = 250.018445 + 0: The maximum resident set size (KB) = 955564 Test 235 conus13km_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/conus13km_radar_tten_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_gnu Checking test 236 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 411.098192 - 0: The maximum resident set size (KB) = 986952 + 0: The total amount of wall time = 415.685734 + 0: The maximum resident set size (KB) = 976656 Test 236 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_gnu Checking test 237 rap_control_dyn64_phy32_debug_gnu 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.792686 - 0: The maximum resident set size (KB) = 787444 + 0: The total amount of wall time = 144.307142 + 0: The maximum resident set size (KB) = 792460 Test 237 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_gnu Checking test 238 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7951,14 +7951,14 @@ Checking test 238 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 629.363051 - 0: The maximum resident set size (KB) = 1511956 + 0: The total amount of wall time = 630.737741 + 0: The maximum resident set size (KB) = 1508960 Test 238 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_gnu Checking test 239 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8020,14 +8020,14 @@ Checking test 239 cpld_control_nowave_noaero_p8_gnu 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 = 374.149647 - 0: The maximum resident set size (KB) = 1406204 + 0: The total amount of wall time = 376.902625 + 0: The maximum resident set size (KB) = 1405548 Test 239 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_gnu Checking test 240 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8080,14 +8080,14 @@ Checking test 240 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.473349 - 0: The maximum resident set size (KB) = 1519488 + 0: The total amount of wall time = 365.690517 + 0: The maximum resident set size (KB) = 1520780 Test 240 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_control_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_gnu Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8151,14 +8151,14 @@ Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1305.915616 - 0: The maximum resident set size (KB) = 1378840 + 0: The total amount of wall time = 1309.292695 + 0: The maximum resident set size (KB) = 1381772 Test 241 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_gnu Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8210,25 +8210,25 @@ Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 749.003228 - 0: The maximum resident set size (KB) = 1385740 + 0: The total amount of wall time = 762.149234 + 0: The maximum resident set size (KB) = 1387380 Test 242 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_38570/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_gnu Checking test 243 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 170.884111 - 0: The maximum resident set size (KB) = 697716 + 0: The total amount of wall time = 164.064629 + 0: The maximum resident set size (KB) = 695084 Test 243 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 9 04:43:44 UTC 2024 -Elapsed time: 02h:01m:05s. Have a nice day! +Mon Feb 12 21:38:25 UTC 2024 +Elapsed time: 01h:50m:34s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index f23ba5ab87..52d0eb537b 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Thu Feb 8 17:53:11 CST 2024 +Mon Feb 12 02:35:49 PM CST 2024 Start Regression test -Testing UFSWM Hash: 42bbb1e7688c9f531d6f85396851975981cadda1 +Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) -+c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (heads/block_atmos_copy_bug) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 220 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 507 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 370 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 249 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 414 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 393 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 383 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 449 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 580 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 568 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 221 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 308 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 900 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 43 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 574 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 164 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 639 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 602 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 529 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 369 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 144 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 883 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 622 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 357 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 706 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 337 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 239 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 914 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 889 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 733 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1054 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 233 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 387 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 851 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 923 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 510 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 601 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 424 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 253 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 803 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 719 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 721 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 744 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 637 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 745 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 646 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 250 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 427 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 842 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 221 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 831 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 772 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 244 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 819 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 779 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 652 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 626 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 957 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 916 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 701 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1165 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 414 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 700 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1084 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 948 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1045 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 285 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 967 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 490 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1098 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 430.551336 - 0: The maximum resident set size (KB) = 1890576 + 0: The total amount of wall time = 451.823372 + 0: The maximum resident set size (KB) = 1889368 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 783.981906 - 0: The maximum resident set size (KB) = 1785560 + 0: The total amount of wall time = 783.487041 + 0: The maximum resident set size (KB) = 1765228 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 829.172560 - 0: The maximum resident set size (KB) = 2165104 + 0: The total amount of wall time = 837.817324 + 0: The maximum resident set size (KB) = 2151536 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 370.372125 - 0: The maximum resident set size (KB) = 1169496 + 0: The total amount of wall time = 380.010740 + 0: The maximum resident set size (KB) = 1174540 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 894.098335 - 0: The maximum resident set size (KB) = 1699572 + 0: The total amount of wall time = 892.480567 + 0: The maximum resident set size (KB) = 1689272 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1205.819574 - 0: The maximum resident set size (KB) = 1731696 + 0: The total amount of wall time = 1203.667275 + 0: The maximum resident set size (KB) = 1733732 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.274498 - 0: The maximum resident set size (KB) = 2063756 + 0: The total amount of wall time = 446.297803 + 0: The maximum resident set size (KB) = 2077260 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.285201 - 0: The maximum resident set size (KB) = 2092632 + 0: The total amount of wall time = 461.152058 + 0: The maximum resident set size (KB) = 2057152 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 242.086652 - 0: The maximum resident set size (KB) = 1982236 + 0: The total amount of wall time = 254.110310 + 0: The maximum resident set size (KB) = 1978604 Test 009 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 441.286202 - 0: The maximum resident set size (KB) = 1983244 + 0: The total amount of wall time = 458.574330 + 0: The maximum resident set size (KB) = 1992252 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 241.976440 - 0: The maximum resident set size (KB) = 1741020 + 0: The total amount of wall time = 266.614398 + 0: The maximum resident set size (KB) = 1747240 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 540.920443 - 0: The maximum resident set size (KB) = 2482208 + 0: The total amount of wall time = 550.067206 + 0: The maximum resident set size (KB) = 2493752 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 440.830683 - 0: The maximum resident set size (KB) = 2062560 + 0: The total amount of wall time = 476.512382 + 0: The maximum resident set size (KB) = 2057736 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 370.215536 - 0: The maximum resident set size (KB) = 1900140 + 0: The total amount of wall time = 401.178588 + 0: The maximum resident set size (KB) = 1883144 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.533744 - 0: The maximum resident set size (KB) = 2092868 + 0: The total amount of wall time = 462.374245 + 0: The maximum resident set size (KB) = 2096304 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 941.018889 - 0: The maximum resident set size (KB) = 2805860 + 0: The total amount of wall time = 916.721771 + 0: The maximum resident set size (KB) = 2807628 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 328.363025 - 0: The maximum resident set size (KB) = 2927324 + 0: The total amount of wall time = 347.504287 + 0: The maximum resident set size (KB) = 2923888 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 482.035387 - 0: The maximum resident set size (KB) = 3623532 + 0: The total amount of wall time = 527.530983 + 0: The maximum resident set size (KB) = 3626832 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.674077 - 0: The maximum resident set size (KB) = 3622612 + 0: The total amount of wall time = 361.132627 + 0: The maximum resident set size (KB) = 3611344 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 283.122530 - 0: The maximum resident set size (KB) = 2056368 + 0: The total amount of wall time = 299.062655 + 0: The maximum resident set size (KB) = 2015620 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 400.368736 - 0: The maximum resident set size (KB) = 1774836 + 0: The total amount of wall time = 413.026049 + 0: The maximum resident set size (KB) = 1776820 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 224.538006 - 0: The maximum resident set size (KB) = 1823780 + 0: The total amount of wall time = 230.327785 + 0: The maximum resident set size (KB) = 1815740 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.792409 - 0: The maximum resident set size (KB) = 2059020 + 0: The total amount of wall time = 414.437688 + 0: The maximum resident set size (KB) = 2067420 Test 023 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 268.191668 - 0: The maximum resident set size (KB) = 1785568 + 0: The total amount of wall time = 275.501105 + 0: The maximum resident set size (KB) = 1789356 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 225.810803 - 0: The maximum resident set size (KB) = 1829460 + 0: The total amount of wall time = 234.104777 + 0: The maximum resident set size (KB) = 1817736 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 425.989730 - 0: The maximum resident set size (KB) = 2836632 + 0: The total amount of wall time = 427.710294 + 0: The maximum resident set size (KB) = 2840708 Test 026 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 420.378922 - 0: The maximum resident set size (KB) = 2072848 + 0: The total amount of wall time = 439.255864 + 0: The maximum resident set size (KB) = 2077380 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 814.685799 - 0: The maximum resident set size (KB) = 1810172 + 0: The total amount of wall time = 819.728581 + 0: The maximum resident set size (KB) = 1803056 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.496348 - 0: The maximum resident set size (KB) = 1303752 + 0: The total amount of wall time = 396.266881 + 0: The maximum resident set size (KB) = 1286388 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 903.394383 - 0: The maximum resident set size (KB) = 1741320 + 0: The total amount of wall time = 928.820630 + 0: The maximum resident set size (KB) = 1721252 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1273.059948 - 0: The maximum resident set size (KB) = 1789012 + 0: The total amount of wall time = 1286.314019 + 0: The maximum resident set size (KB) = 1764500 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 159.943091 - 0: The maximum resident set size (KB) = 711016 + 0: The total amount of wall time = 162.518769 + 0: The maximum resident set size (KB) = 705340 Test 032 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,18 +2094,18 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 114.260992 - 0: The maximum resident set size (KB) = 670176 + 0: The total amount of wall time = 117.220259 + 0: The maximum resident set size (KB) = 659600 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel 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 cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.694421 - 0: The maximum resident set size (KB) = 668660 + 0: The total amount of wall time = 125.322944 + 0: The maximum resident set size (KB) = 668656 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_latlon_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,32 +2134,32 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.581534 - 0: The maximum resident set size (KB) = 675996 + 0: The total amount of wall time = 116.347518 + 0: The maximum resident set size (KB) = 670628 Test 035 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......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 = 122.289495 - 0: The maximum resident set size (KB) = 670148 + 0: The total amount of wall time = 119.598980 + 0: The maximum resident set size (KB) = 673448 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 337.978757 -0: The maximum resident set size (KB) = 865740 +0: The total amount of wall time = 340.966705 +0: The maximum resident set size (KB) = 870532 Test 037 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 338.723507 -0: The maximum resident set size (KB) = 861396 +0: The total amount of wall time = 341.901668 +0: The maximum resident set size (KB) = 864788 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c192_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 449.395290 - 0: The maximum resident set size (KB) = 961848 + 0: The total amount of wall time = 468.140966 + 0: The maximum resident set size (KB) = 990168 Test 039 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 469.094595 - 0: The maximum resident set size (KB) = 1445964 + 0: The total amount of wall time = 483.806495 + 0: The maximum resident set size (KB) = 1451244 Test 040 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c384gdas_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.271984 - 0: The maximum resident set size (KB) = 1527500 + 0: The total amount of wall time = 417.955903 + 0: The maximum resident set size (KB) = 1551488 Test 041 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 76.271868 - 0: The maximum resident set size (KB) = 675804 + 0: The total amount of wall time = 78.151974 + 0: The maximum resident set size (KB) = 679428 Test 042 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 43.037293 - 0: The maximum resident set size (KB) = 538436 + 0: The total amount of wall time = 44.506409 + 0: The maximum resident set size (KB) = 543916 Test 043 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.369905 - 0: The maximum resident set size (KB) = 672884 + 0: The total amount of wall time = 72.350384 + 0: The maximum resident set size (KB) = 662704 Test 044 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr4_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 118.932850 - 0: The maximum resident set size (KB) = 665692 + 0: The total amount of wall time = 116.144709 + 0: The maximum resident set size (KB) = 666700 Test 045 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_iovr5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.521707 - 0: The maximum resident set size (KB) = 675384 + 0: The total amount of wall time = 117.385820 + 0: The maximum resident set size (KB) = 663936 Test 046 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.899096 - 0: The maximum resident set size (KB) = 1635572 + 0: The total amount of wall time = 142.946430 + 0: The maximum resident set size (KB) = 1634152 Test 047 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.355960 - 0: The maximum resident set size (KB) = 1637228 + 0: The total amount of wall time = 149.457964 + 0: The maximum resident set size (KB) = 1638208 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.703376 - 0: The maximum resident set size (KB) = 1641012 + 0: The total amount of wall time = 139.416227 + 0: The maximum resident set size (KB) = 1632740 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 74.659397 - 0: The maximum resident set size (KB) = 920884 + 0: The total amount of wall time = 78.641960 + 0: The maximum resident set size (KB) = 929628 Test 050 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 137.530339 - 0: The maximum resident set size (KB) = 1630116 + 0: The total amount of wall time = 141.786512 + 0: The maximum resident set size (KB) = 1624048 Test 051 control_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 72.759465 - 0: The maximum resident set size (KB) = 974524 + 0: The total amount of wall time = 77.637286 + 0: The maximum resident set size (KB) = 990728 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.279497 - 0: The maximum resident set size (KB) = 1635532 + 0: The total amount of wall time = 149.273172 + 0: The maximum resident set size (KB) = 1622124 Test 053 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 129.798695 - 0: The maximum resident set size (KB) = 1727108 + 0: The total amount of wall time = 136.116915 + 0: The maximum resident set size (KB) = 1736152 Test 054 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 254.924152 - 0: The maximum resident set size (KB) = 1645332 + 0: The total amount of wall time = 260.213517 + 0: The maximum resident set size (KB) = 1641020 Test 055 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.979787 - 0: The maximum resident set size (KB) = 1729464 + 0: The total amount of wall time = 198.070882 + 0: The maximum resident set size (KB) = 1710156 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_mynn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.779806 - 0: The maximum resident set size (KB) = 1650480 + 0: The total amount of wall time = 146.573683 + 0: The maximum resident set size (KB) = 1642184 Test 057 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/merra2_thompson_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.723689 - 0: The maximum resident set size (KB) = 1650188 + 0: The total amount of wall time = 171.456241 + 0: The maximum resident set size (KB) = 1663880 Test 058 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 259.114558 - 0: The maximum resident set size (KB) = 960056 + 0: The total amount of wall time = 259.633951 + 0: The maximum resident set size (KB) = 959536 Test 059 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 137.083464 - 0: The maximum resident set size (KB) = 1104240 + 0: The total amount of wall time = 139.219117 + 0: The maximum resident set size (KB) = 1109672 Test 060 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 271.999807 - 0: The maximum resident set size (KB) = 948576 + 0: The total amount of wall time = 273.319411 + 0: The maximum resident set size (KB) = 948460 Test 061 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 157.324716 - 0: The maximum resident set size (KB) = 917924 + 0: The total amount of wall time = 161.847975 + 0: The maximum resident set size (KB) = 915912 Test 062 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_noquilt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 248.820110 - 0: The maximum resident set size (KB) = 1487488 + 0: The total amount of wall time = 250.977806 + 0: The maximum resident set size (KB) = 1491020 Test 063 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 254.792054 - 0: The maximum resident set size (KB) = 963704 + 0: The total amount of wall time = 259.553735 + 0: The maximum resident set size (KB) = 959712 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.021290 - 0: The maximum resident set size (KB) = 958696 + 0: The total amount of wall time = 261.383526 + 0: The maximum resident set size (KB) = 957184 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_wofs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 320.187631 - 0: The maximum resident set size (KB) = 2105652 + 0: The total amount of wall time = 324.421182 + 0: The maximum resident set size (KB) = 2082948 Test 066 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.238343 - 0: The maximum resident set size (KB) = 1205512 + 0: The total amount of wall time = 379.742196 + 0: The maximum resident set size (KB) = 1225884 Test 067 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 196.173734 - 0: The maximum resident set size (KB) = 1411816 + 0: The total amount of wall time = 215.790207 + 0: The maximum resident set size (KB) = 1423432 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 399.083779 - 0: The maximum resident set size (KB) = 1131372 + 0: The total amount of wall time = 406.547752 + 0: The maximum resident set size (KB) = 1127368 Test 069 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.753366 - 0: The maximum resident set size (KB) = 1356252 + 0: The total amount of wall time = 360.956121 + 0: The maximum resident set size (KB) = 1376068 Test 070 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.483670 - 0: The maximum resident set size (KB) = 1161324 + 0: The total amount of wall time = 197.135055 + 0: The maximum resident set size (KB) = 1132988 Test 071 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.129535 - 0: The maximum resident set size (KB) = 1196708 + 0: The total amount of wall time = 381.916787 + 0: The maximum resident set size (KB) = 1200984 Test 072 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.621999 - 0: The maximum resident set size (KB) = 1126548 + 0: The total amount of wall time = 404.106020 + 0: The maximum resident set size (KB) = 1152168 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.838209 - 0: The maximum resident set size (KB) = 1188400 + 0: The total amount of wall time = 284.430079 + 0: The maximum resident set size (KB) = 1197900 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.040405 - 0: The maximum resident set size (KB) = 1075740 + 0: The total amount of wall time = 194.480464 + 0: The maximum resident set size (KB) = 1080892 Test 075 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.239536 - 0: The maximum resident set size (KB) = 1049380 + 0: The total amount of wall time = 199.963608 + 0: The maximum resident set size (KB) = 1046196 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.371282 - 0: The maximum resident set size (KB) = 1119060 + 0: The total amount of wall time = 179.669285 + 0: The maximum resident set size (KB) = 1122176 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.911859 - 0: The maximum resident set size (KB) = 1036780 + 0: The total amount of wall time = 103.070538 + 0: The maximum resident set size (KB) = 1023032 Test 078 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.743285 - 0: The maximum resident set size (KB) = 1197472 + 0: The total amount of wall time = 372.842344 + 0: The maximum resident set size (KB) = 1182788 Test 079 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 445.018269 - 0: The maximum resident set size (KB) = 2006388 + 0: The total amount of wall time = 447.510074 + 0: The maximum resident set size (KB) = 2008324 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 434.179462 - 0: The maximum resident set size (KB) = 2176536 + 0: The total amount of wall time = 438.584415 + 0: The maximum resident set size (KB) = 2204660 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 293.795215 - 0: The maximum resident set size (KB) = 814284 + 0: The total amount of wall time = 297.202958 + 0: The maximum resident set size (KB) = 824780 Test 082 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.487385 - 0: The maximum resident set size (KB) = 827296 + 0: The total amount of wall time = 293.619005 + 0: The maximum resident set size (KB) = 812024 Test 083 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 160.406571 - 0: The maximum resident set size (KB) = 813000 + 0: The total amount of wall time = 161.707212 + 0: The maximum resident set size (KB) = 804772 Test 084 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wam_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 104.047968 - 0: The maximum resident set size (KB) = 779400 + 0: The total amount of wall time = 104.166406 + 0: The maximum resident set size (KB) = 778964 Test 085 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 124.388469 - 0: The maximum resident set size (KB) = 1635612 + 0: The total amount of wall time = 127.818467 + 0: The maximum resident set size (KB) = 1643476 Test 086 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_control_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 230.542141 - 0: The maximum resident set size (KB) = 959392 + 0: The total amount of wall time = 238.523916 + 0: The maximum resident set size (KB) = 959356 Test 087 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 126.577079 - 0: The maximum resident set size (KB) = 824628 + 0: The total amount of wall time = 125.782640 + 0: The maximum resident set size (KB) = 819084 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 122.709979 - 0: The maximum resident set size (KB) = 832824 + 0: The total amount of wall time = 127.994595 + 0: The maximum resident set size (KB) = 819952 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.036237 - 0: The maximum resident set size (KB) = 826416 + 0: The total amount of wall time = 143.153287 + 0: The maximum resident set size (KB) = 827488 Test 090 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.397013 - 0: The maximum resident set size (KB) = 824372 + 0: The total amount of wall time = 126.544030 + 0: The maximum resident set size (KB) = 827372 Test 091 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.215812 - 0: The maximum resident set size (KB) = 885464 + 0: The total amount of wall time = 194.499395 + 0: The maximum resident set size (KB) = 869788 Test 092 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel 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.642472 - 0: The maximum resident set size (KB) = 878036 + 0: The total amount of wall time = 192.764425 + 0: The maximum resident set size (KB) = 875248 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.617555 - 0: The maximum resident set size (KB) = 837184 + 0: The total amount of wall time = 130.002758 + 0: The maximum resident set size (KB) = 837256 Test 094 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.152381 - 0: The maximum resident set size (KB) = 886324 + 0: The total amount of wall time = 133.513938 + 0: The maximum resident set size (KB) = 885620 Test 095 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 132.830157 - 0: The maximum resident set size (KB) = 1665044 + 0: The total amount of wall time = 140.720409 + 0: The maximum resident set size (KB) = 1656892 Test 096 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 831.502402 - 0: The maximum resident set size (KB) = 893832 + 0: The total amount of wall time = 829.274606 + 0: The maximum resident set size (KB) = 892732 Test 097 regional_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.610455 - 0: The maximum resident set size (KB) = 1225900 + 0: The total amount of wall time = 232.527061 + 0: The maximum resident set size (KB) = 1210304 Test 098 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.198852 - 0: The maximum resident set size (KB) = 1210908 + 0: The total amount of wall time = 227.264416 + 0: The maximum resident set size (KB) = 1212192 Test 099 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.146257 - 0: The maximum resident set size (KB) = 1229700 + 0: The total amount of wall time = 232.100184 + 0: The maximum resident set size (KB) = 1220684 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.230965 - 0: The maximum resident set size (KB) = 1224180 + 0: The total amount of wall time = 231.184425 + 0: The maximum resident set size (KB) = 1231276 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.715269 - 0: The maximum resident set size (KB) = 1221896 + 0: The total amount of wall time = 232.787908 + 0: The maximum resident set size (KB) = 1224388 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.354062 - 0: The maximum resident set size (KB) = 1311048 + 0: The total amount of wall time = 240.458386 + 0: The maximum resident set size (KB) = 1297844 Test 103 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.381935 - 0: The maximum resident set size (KB) = 1223132 + 0: The total amount of wall time = 235.120548 + 0: The maximum resident set size (KB) = 1221280 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.262413 - 0: The maximum resident set size (KB) = 1230052 + 0: The total amount of wall time = 239.889945 + 0: The maximum resident set size (KB) = 1214292 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.296686 - 0: The maximum resident set size (KB) = 1221732 + 0: The total amount of wall time = 234.519153 + 0: The maximum resident set size (KB) = 1220196 Test 106 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.670011 - 0: The maximum resident set size (KB) = 1221088 + 0: The total amount of wall time = 232.861170 + 0: The maximum resident set size (KB) = 1221332 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.694099 - 0: The maximum resident set size (KB) = 1218216 + 0: The total amount of wall time = 227.819438 + 0: The maximum resident set size (KB) = 1218328 Test 108 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.642036 - 0: The maximum resident set size (KB) = 1219408 + 0: The total amount of wall time = 233.096337 + 0: The maximum resident set size (KB) = 1220268 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 373.997451 - 0: The maximum resident set size (KB) = 1222624 + 0: The total amount of wall time = 376.561220 + 0: The maximum resident set size (KB) = 1218744 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel 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.915838 - 0: The maximum resident set size (KB) = 1217512 + 0: The total amount of wall time = 225.766613 + 0: The maximum resident set size (KB) = 1214064 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel 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.114888 - 0: The maximum resident set size (KB) = 1223320 + 0: The total amount of wall time = 283.147903 + 0: The maximum resident set size (KB) = 1224352 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.954161 - 0: The maximum resident set size (KB) = 1216368 + 0: The total amount of wall time = 229.552976 + 0: The maximum resident set size (KB) = 1212004 Test 113 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,14 +4377,14 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 398.184483 - 0: The maximum resident set size (KB) = 1227312 + 0: The total amount of wall time = 400.873320 + 0: The maximum resident set size (KB) = 1220204 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4395,14 +4395,14 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 183.619126 - 0: The maximum resident set size (KB) = 1328728 + 0: The total amount of wall time = 199.680414 + 0: The maximum resident set size (KB) = 1309708 Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_intel Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4449,14 +4449,14 @@ Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.550287 - 0: The maximum resident set size (KB) = 1149312 + 0: The total amount of wall time = 315.328400 + 0: The maximum resident set size (KB) = 1142588 Test 116 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_intel Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4503,14 +4503,14 @@ Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.100803 - 0: The maximum resident set size (KB) = 1037152 + 0: The total amount of wall time = 164.941527 + 0: The maximum resident set size (KB) = 1044892 Test 117 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_intel Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4557,14 +4557,14 @@ Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.638169 - 0: The maximum resident set size (KB) = 1291208 + 0: The total amount of wall time = 311.950802 + 0: The maximum resident set size (KB) = 1295056 Test 118 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_intel Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4611,14 +4611,14 @@ Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.291909 - 0: The maximum resident set size (KB) = 1050528 + 0: The total amount of wall time = 155.379397 + 0: The maximum resident set size (KB) = 1034512 Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_intel Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4665,14 +4665,14 @@ Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.297567 - 0: The maximum resident set size (KB) = 982244 + 0: The total amount of wall time = 171.440603 + 0: The maximum resident set size (KB) = 1035132 Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_intel Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4711,28 +4711,28 @@ Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.462005 - 0: The maximum resident set size (KB) = 1102020 + 0: The total amount of wall time = 235.193640 + 0: The maximum resident set size (KB) = 1089964 Test 121 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_intel Checking test 122 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.772033 - 0: The maximum resident set size (KB) = 953852 + 0: The total amount of wall time = 87.134745 + 0: The maximum resident set size (KB) = 962400 Test 122 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_intel Checking test 123 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4748,40 +4748,40 @@ Checking test 123 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 93.302324 - 0: The maximum resident set size (KB) = 1307100 + 0: The total amount of wall time = 106.720304 + 0: The maximum resident set size (KB) = 1300616 Test 123 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_intel Checking test 124 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 36.696331 - 0: The maximum resident set size (KB) = 1205612 + 0: The total amount of wall time = 44.354665 + 0: The maximum resident set size (KB) = 1201024 Test 124 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_intel Checking test 125 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 53.510029 - 0: The maximum resident set size (KB) = 1153620 + 0: The total amount of wall time = 57.671850 + 0: The maximum resident set size (KB) = 1163784 Test 125 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_intel Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4828,42 +4828,42 @@ Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 208.281048 - 0: The maximum resident set size (KB) = 1095292 + 0: The total amount of wall time = 214.198639 + 0: The maximum resident set size (KB) = 1097568 Test 126 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_intel Checking test 127 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.905917 - 0: The maximum resident set size (KB) = 1095928 + 0: The total amount of wall time = 229.496279 + 0: The maximum resident set size (KB) = 1095320 Test 127 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_intel Checking test 128 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 219.551667 - 0: The maximum resident set size (KB) = 1097796 + 0: The total amount of wall time = 221.393731 + 0: The maximum resident set size (KB) = 1098620 Test 128 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_intel Checking test 129 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 129 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 695.001955 - 0: The maximum resident set size (KB) = 1342144 + 0: The total amount of wall time = 697.576904 + 0: The maximum resident set size (KB) = 1347488 Test 129 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_intel Checking test 130 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4898,81 +4898,81 @@ Checking test 130 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 699.562751 - 0: The maximum resident set size (KB) = 989116 + 0: The total amount of wall time = 712.898446 + 0: The maximum resident set size (KB) = 995268 Test 130 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_intel Checking test 131 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 390.803202 - 0: The maximum resident set size (KB) = 1238820 + 0: The total amount of wall time = 405.093150 + 0: The maximum resident set size (KB) = 1245404 Test 131 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_intel Checking test 132 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 689.266474 - 0: The maximum resident set size (KB) = 1400400 + 0: The total amount of wall time = 706.565714 + 0: The maximum resident set size (KB) = 1416416 Test 132 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_intel Checking test 133 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.235417 - 0: The maximum resident set size (KB) = 1147672 + 0: The total amount of wall time = 233.120107 + 0: The maximum resident set size (KB) = 1144896 Test 133 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_intel Checking test 134 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 305.359074 - 0: The maximum resident set size (KB) = 872868 + 0: The total amount of wall time = 324.134135 + 0: The maximum resident set size (KB) = 867448 Test 134 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_thompson_gfdlsf_intel Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 281.945532 - 0: The maximum resident set size (KB) = 1278760 + 0: The total amount of wall time = 299.811518 + 0: The maximum resident set size (KB) = 1281516 Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_intel Checking test 136 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4981,14 +4981,14 @@ Checking test 136 hafs_regional_atm_ocn_intel 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 = 367.761185 - 0: The maximum resident set size (KB) = 952228 + 0: The total amount of wall time = 384.082116 + 0: The maximum resident set size (KB) = 954740 Test 136 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_wav_intel Checking test 137 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4997,14 +4997,14 @@ Checking test 137 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 811.240530 - 0: The maximum resident set size (KB) = 986732 + 0: The total amount of wall time = 834.316678 + 0: The maximum resident set size (KB) = 1014528 Test 137 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_wav_intel Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,14 +5015,14 @@ Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 890.138569 - 0: The maximum resident set size (KB) = 1005336 + 0: The total amount of wall time = 889.318521 + 0: The maximum resident set size (KB) = 1018204 Test 138 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_1nest_atm_intel Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5040,18 +5040,18 @@ Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 311.983926 - 0: The maximum resident set size (KB) = 606452 + 0: The total amount of wall time = 315.474492 + 0: The maximum resident set size (KB) = 604820 Test 139 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_telescopic_2nests_atm_intel Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5060,14 +5060,14 @@ Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 396.035240 - 0: The maximum resident set size (KB) = 619516 + 0: The total amount of wall time = 413.920523 + 0: The maximum resident set size (KB) = 619996 Test 140 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_1nest_atm_intel Checking test 141 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5099,14 +5099,14 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK @@ -5114,14 +5114,14 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 153.453691 - 0: The maximum resident set size (KB) = 436604 + 0: The total amount of wall time = 166.823503 + 0: The maximum resident set size (KB) = 433484 Test 141 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_multiple_4nests_atm_intel Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5141,13 +5141,13 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK @@ -5156,12 +5156,12 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK @@ -5170,16 +5170,16 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK @@ -5188,8 +5188,8 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK @@ -5203,14 +5203,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 441.514735 - 0: The maximum resident set size (KB) = 541824 + 0: The total amount of wall time = 463.133874 + 0: The maximum resident set size (KB) = 542580 Test 142 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_specified_moving_1nest_atm_intel Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 213.903087 - 0: The maximum resident set size (KB) = 618724 + 0: The total amount of wall time = 228.262745 + 0: The maximum resident set size (KB) = 617732 Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_intel Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5243,19 +5243,19 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 204.562187 - 0: The maximum resident set size (KB) = 622252 + 0: The total amount of wall time = 217.938963 + 0: The maximum resident set size (KB) = 619936 Test 144 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5264,97 +5264,43 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 275.803428 - 0: The maximum resident set size (KB) = 671616 + 0: The total amount of wall time = 280.162490 + 0: The maximum resident set size (KB) = 685828 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel 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 = 71.418089 - 0: The maximum resident set size (KB) = 445600 + 0: The total amount of wall time = 78.540171 + 0: The maximum resident set size (KB) = 451104 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_nested_intel -Checking test 147 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 243.796081 - 0: The maximum resident set size (KB) = 901624 - -Test 147 gnv1_nested_intel FAIL Tries: 2 - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 654.771092 - 0: The maximum resident set size (KB) = 633120 + 0: The total amount of wall time = 676.364143 + 0: The maximum resident set size (KB) = 636996 -Test 148 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5364,15 +5310,15 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 986.917162 - 0: The maximum resident set size (KB) = 747040 + 0: The total amount of wall time = 963.542316 + 0: The maximum resident set size (KB) = 747144 -Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5382,15 +5328,15 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 988.690132 - 0: The maximum resident set size (KB) = 811176 + 0: The total amount of wall time = 1039.318020 + 0: The maximum resident set size (KB) = 841392 -Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS +Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK Comparing atm.nest02.f003.nc .........OK @@ -5399,162 +5345,162 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 608.465934 + 0: The total amount of wall time = 618.068101 0: The maximum resident set size (KB) = 832012 -Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS +Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_intel -Checking test 152 hafs_regional_docn_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_intel +Checking test 151 hafs_regional_docn_intel 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 = 308.682139 - 0: The maximum resident set size (KB) = 962392 + 0: The total amount of wall time = 324.611754 + 0: The maximum resident set size (KB) = 936884 -Test 152 hafs_regional_docn_intel PASS +Test 151 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_docn_oisst_intel -Checking test 153 hafs_regional_docn_oisst_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_oisst_intel +Checking test 152 hafs_regional_docn_oisst_intel 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 = 309.584798 - 0: The maximum resident set size (KB) = 931412 + 0: The total amount of wall time = 328.495838 + 0: The maximum resident set size (KB) = 928916 -Test 153 hafs_regional_docn_oisst_intel PASS +Test 152 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hafs_regional_datm_cdeps_intel -Checking test 154 hafs_regional_datm_cdeps_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_datm_cdeps_intel +Checking test 153 hafs_regional_datm_cdeps_intel 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 = 970.774864 - 0: The maximum resident set size (KB) = 1339792 + 0: The total amount of wall time = 975.713199 + 0: The maximum resident set size (KB) = 1341288 -Test 154 hafs_regional_datm_cdeps_intel PASS +Test 153 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_intel -Checking test 155 datm_cdeps_control_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_intel +Checking test 154 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.385172 - 0: The maximum resident set size (KB) = 1127364 + 0: The total amount of wall time = 122.496421 + 0: The maximum resident set size (KB) = 1131496 -Test 155 datm_cdeps_control_cfsr_intel PASS +Test 154 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_restart_cfsr_intel -Checking test 156 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_restart_cfsr_intel +Checking test 155 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 72.371422 - 0: The maximum resident set size (KB) = 1106520 + 0: The total amount of wall time = 74.615006 + 0: The maximum resident set size (KB) = 1091708 -Test 156 datm_cdeps_restart_cfsr_intel PASS +Test 155 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_gefs_intel -Checking test 157 datm_cdeps_control_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_gefs_intel +Checking test 156 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 116.316837 - 0: The maximum resident set size (KB) = 1007612 + 0: The total amount of wall time = 117.480557 + 0: The maximum resident set size (KB) = 1013700 -Test 157 datm_cdeps_control_gefs_intel PASS +Test 156 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_iau_gefs_intel -Checking test 158 datm_cdeps_iau_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_iau_gefs_intel +Checking test 157 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.410368 - 0: The maximum resident set size (KB) = 1012700 + 0: The total amount of wall time = 120.175501 + 0: The maximum resident set size (KB) = 1006792 -Test 158 datm_cdeps_iau_gefs_intel PASS +Test 157 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_stochy_gefs_intel -Checking test 159 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_stochy_gefs_intel +Checking test 158 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.136809 - 0: The maximum resident set size (KB) = 1013252 + 0: The total amount of wall time = 119.361014 + 0: The maximum resident set size (KB) = 1002272 -Test 159 datm_cdeps_stochy_gefs_intel PASS +Test 158 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_ciceC_cfsr_intel -Checking test 160 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_ciceC_cfsr_intel +Checking test 159 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.433967 - 0: The maximum resident set size (KB) = 1150568 + 0: The total amount of wall time = 122.936189 + 0: The maximum resident set size (KB) = 1147940 -Test 160 datm_cdeps_ciceC_cfsr_intel PASS +Test 159 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_cfsr_intel -Checking test 161 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_cfsr_intel +Checking test 160 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.201909 - 0: The maximum resident set size (KB) = 1142140 + 0: The total amount of wall time = 120.559403 + 0: The maximum resident set size (KB) = 1148308 -Test 161 datm_cdeps_bulk_cfsr_intel PASS +Test 160 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_bulk_gefs_intel -Checking test 162 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_gefs_intel +Checking test 161 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 116.895143 - 0: The maximum resident set size (KB) = 1012868 + 0: The total amount of wall time = 117.235872 + 0: The maximum resident set size (KB) = 1013792 -Test 162 datm_cdeps_bulk_gefs_intel PASS +Test 161 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_cfsr_intel -Checking test 163 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_cfsr_intel +Checking test 162 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5562,15 +5508,15 @@ Checking test 163 datm_cdeps_mx025_cfsr_intel 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 = 281.031125 - 0: The maximum resident set size (KB) = 1169008 + 0: The total amount of wall time = 285.435487 + 0: The maximum resident set size (KB) = 1157008 -Test 163 datm_cdeps_mx025_cfsr_intel PASS +Test 162 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_mx025_gefs_intel -Checking test 164 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_gefs_intel +Checking test 163 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5578,78 +5524,78 @@ Checking test 164 datm_cdeps_mx025_gefs_intel 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 = 276.809644 - 0: The maximum resident set size (KB) = 1151748 + 0: The total amount of wall time = 282.435475 + 0: The maximum resident set size (KB) = 1148160 -Test 164 datm_cdeps_mx025_gefs_intel PASS +Test 163 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_multiple_files_cfsr_intel -Checking test 165 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_multiple_files_cfsr_intel +Checking test 164 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.189175 - 0: The maximum resident set size (KB) = 1147892 + 0: The total amount of wall time = 125.206900 + 0: The maximum resident set size (KB) = 1149528 -Test 165 datm_cdeps_multiple_files_cfsr_intel PASS +Test 164 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_3072x1536_cfsr_intel -Checking test 166 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_3072x1536_cfsr_intel +Checking test 165 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 173.860347 - 0: The maximum resident set size (KB) = 2386708 + 0: The total amount of wall time = 175.291794 + 0: The maximum resident set size (KB) = 2438792 -Test 166 datm_cdeps_3072x1536_cfsr_intel PASS +Test 165 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_gfs_intel -Checking test 167 datm_cdeps_gfs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_gfs_intel +Checking test 166 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 173.775039 - 0: The maximum resident set size (KB) = 2441660 + 0: The total amount of wall time = 180.006985 + 0: The maximum resident set size (KB) = 2377084 -Test 167 datm_cdeps_gfs_intel PASS +Test 166 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_debug_cfsr_intel -Checking test 168 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_debug_cfsr_intel +Checking test 167 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 298.432820 - 0: The maximum resident set size (KB) = 1077744 + 0: The total amount of wall time = 301.226193 + 0: The maximum resident set size (KB) = 1075328 -Test 168 datm_cdeps_debug_cfsr_intel PASS +Test 167 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_control_cfsr_faster_intel -Checking test 169 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_faster_intel +Checking test 168 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.920799 - 0: The maximum resident set size (KB) = 1145184 + 0: The total amount of wall time = 122.741765 + 0: The maximum resident set size (KB) = 1137512 -Test 169 datm_cdeps_control_cfsr_faster_intel PASS +Test 168 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_gswp3_intel -Checking test 170 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_gswp3_intel +Checking test 169 datm_cdeps_lnd_gswp3_intel 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 @@ -5657,15 +5603,15 @@ Checking test 170 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 43.721790 - 0: The maximum resident set size (KB) = 328884 + 0: The total amount of wall time = 46.105725 + 0: The maximum resident set size (KB) = 329128 -Test 170 datm_cdeps_lnd_gswp3_intel PASS +Test 169 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_intel -Checking test 171 datm_cdeps_lnd_era5_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_intel +Checking test 170 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5673,15 +5619,15 @@ Checking test 171 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 39.572909 - 0: The maximum resident set size (KB) = 557740 + 0: The total amount of wall time = 44.455630 + 0: The maximum resident set size (KB) = 557844 -Test 171 datm_cdeps_lnd_era5_intel PASS +Test 170 datm_cdeps_lnd_era5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/datm_cdeps_lnd_era5_rst_intel -Checking test 172 datm_cdeps_lnd_era5_rst_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_rst_intel +Checking test 171 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5689,15 +5635,15 @@ Checking test 172 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 23.499585 - 0: The maximum resident set size (KB) = 557872 + 0: The total amount of wall time = 34.204514 + 0: The maximum resident set size (KB) = 563280 -Test 172 datm_cdeps_lnd_era5_rst_intel PASS +Test 171 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_sbs_intel -Checking test 173 control_p8_atmlnd_sbs_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_sbs_intel +Checking test 172 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5785,15 +5731,15 @@ Checking test 173 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 338.795293 - 0: The maximum resident set size (KB) = 1649392 + 0: The total amount of wall time = 344.546305 + 0: The maximum resident set size (KB) = 1634600 -Test 173 control_p8_atmlnd_sbs_intel PASS +Test 172 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_atmlnd_intel -Checking test 174 control_p8_atmlnd_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_intel +Checking test 173 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5881,15 +5827,15 @@ Checking test 174 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 326.915840 - 0: The maximum resident set size (KB) = 1642416 + 0: The total amount of wall time = 347.393013 + 0: The maximum resident set size (KB) = 1644492 -Test 174 control_p8_atmlnd_intel PASS +Test 173 control_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_restart_p8_atmlnd_intel -Checking test 175 control_restart_p8_atmlnd_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_atmlnd_intel +Checking test 174 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5909,15 +5855,15 @@ Checking test 175 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 173.458248 - 0: The maximum resident set size (KB) = 945696 + 0: The total amount of wall time = 183.711025 + 0: The maximum resident set size (KB) = 948208 -Test 175 control_restart_p8_atmlnd_intel PASS +Test 174 control_restart_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmwav_control_noaero_p8_intel -Checking test 176 atmwav_control_noaero_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmwav_control_noaero_p8_intel +Checking test 175 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5959,15 +5905,15 @@ Checking test 176 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 80.157693 - 0: The maximum resident set size (KB) = 1699552 + 0: The total amount of wall time = 82.007732 + 0: The maximum resident set size (KB) = 1703500 -Test 176 atmwav_control_noaero_p8_intel PASS +Test 175 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_atmwav_intel -Checking test 177 control_atmwav_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_atmwav_intel +Checking test 176 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -6010,15 +5956,15 @@ Checking test 177 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 76.513338 - 0: The maximum resident set size (KB) = 696804 + 0: The total amount of wall time = 81.983347 + 0: The maximum resident set size (KB) = 682412 -Test 177 control_atmwav_intel PASS +Test 176 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_intel -Checking test 178 atmaero_control_p8_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_intel +Checking test 177 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6061,15 +6007,15 @@ Checking test 178 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.068527 - 0: The maximum resident set size (KB) = 1790736 + 0: The total amount of wall time = 201.812942 + 0: The maximum resident set size (KB) = 1792108 -Test 178 atmaero_control_p8_intel PASS +Test 177 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_intel -Checking test 179 atmaero_control_p8_rad_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_intel +Checking test 178 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6112,15 +6058,15 @@ Checking test 179 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.939072 - 0: The maximum resident set size (KB) = 1802620 + 0: The total amount of wall time = 246.158755 + 0: The maximum resident set size (KB) = 1802676 -Test 179 atmaero_control_p8_rad_intel PASS +Test 178 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/atmaero_control_p8_rad_micro_intel -Checking test 180 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_micro_intel +Checking test 179 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6163,15 +6109,15 @@ Checking test 180 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.830563 - 0: The maximum resident set size (KB) = 1828312 + 0: The total amount of wall time = 257.884852 + 0: The maximum resident set size (KB) = 1834884 -Test 180 atmaero_control_p8_rad_micro_intel PASS +Test 179 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_atmaq_debug_intel -Checking test 181 regional_atmaq_debug_intel results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_atmaq_debug_intel +Checking test 180 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -6184,15 +6130,15 @@ Checking test 181 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 953.457712 - 0: The maximum resident set size (KB) = 4597748 + 0: The total amount of wall time = 978.115169 + 0: The maximum resident set size (KB) = 4593772 -Test 181 regional_atmaq_debug_intel PASS +Test 180 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_c48_gnu -Checking test 182 control_c48_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_gnu +Checking test 181 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6230,15 +6176,15 @@ Checking test 182 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 561.978146 -0: The maximum resident set size (KB) = 860524 +0: The total amount of wall time = 562.407920 +0: The maximum resident set size (KB) = 861728 -Test 182 control_c48_gnu PASS +Test 181 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_gnu -Checking test 183 control_stochy_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_gnu +Checking test 182 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -6248,15 +6194,15 @@ Checking test 183 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.123349 - 0: The maximum resident set size (KB) = 726696 + 0: The total amount of wall time = 126.449389 + 0: The maximum resident set size (KB) = 730208 -Test 183 control_stochy_gnu PASS +Test 182 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_gnu -Checking test 184 control_ras_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_gnu +Checking test 183 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6266,15 +6212,15 @@ Checking test 184 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.569943 - 0: The maximum resident set size (KB) = 729044 + 0: The total amount of wall time = 223.435886 + 0: The maximum resident set size (KB) = 729576 -Test 184 control_ras_gnu PASS +Test 183 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_gnu -Checking test 185 control_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_gnu +Checking test 184 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6320,15 +6266,15 @@ Checking test 185 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.442414 - 0: The maximum resident set size (KB) = 1507488 + 0: The total amount of wall time = 210.478077 + 0: The maximum resident set size (KB) = 1508236 -Test 185 control_p8_gnu PASS +Test 184 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_p8_ugwpv1_gnu -Checking test 186 control_p8_ugwpv1_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_gnu +Checking test 185 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6374,15 +6320,15 @@ Checking test 186 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.813328 - 0: The maximum resident set size (KB) = 1512828 + 0: The total amount of wall time = 201.030465 + 0: The maximum resident set size (KB) = 1509384 -Test 186 control_p8_ugwpv1_gnu PASS +Test 185 control_p8_ugwpv1_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_flake_gnu -Checking test 187 control_flake_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_gnu +Checking test 186 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6392,15 +6338,15 @@ Checking test 187 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.028430 - 0: The maximum resident set size (KB) = 809992 + 0: The total amount of wall time = 253.293231 + 0: The maximum resident set size (KB) = 809676 -Test 187 control_flake_gnu PASS +Test 186 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_gnu -Checking test 188 rap_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_gnu +Checking test 187 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6446,15 +6392,15 @@ Checking test 188 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.609031 - 0: The maximum resident set size (KB) = 1086096 + 0: The total amount of wall time = 458.109550 + 0: The maximum resident set size (KB) = 1085788 -Test 188 rap_control_gnu PASS +Test 187 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_decomp_gnu -Checking test 189 rap_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_gnu +Checking test 188 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6500,15 +6446,15 @@ Checking test 189 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.488267 - 0: The maximum resident set size (KB) = 1086220 + 0: The total amount of wall time = 457.975421 + 0: The maximum resident set size (KB) = 1084668 -Test 189 rap_decomp_gnu PASS +Test 188 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_gnu -Checking test 190 rap_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_gnu +Checking test 189 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6554,15 +6500,15 @@ Checking test 190 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 421.283563 - 0: The maximum resident set size (KB) = 1129256 + 0: The total amount of wall time = 419.861946 + 0: The maximum resident set size (KB) = 1120928 -Test 190 rap_2threads_gnu PASS +Test 189 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_gnu -Checking test 191 rap_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_gnu +Checking test 190 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6600,15 +6546,15 @@ Checking test 191 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.808061 - 0: The maximum resident set size (KB) = 884168 + 0: The total amount of wall time = 229.989517 + 0: The maximum resident set size (KB) = 891592 -Test 191 rap_restart_gnu PASS +Test 190 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_gnu -Checking test 192 rap_sfcdiff_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_gnu +Checking test 191 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6654,15 +6600,15 @@ Checking test 192 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.905865 - 0: The maximum resident set size (KB) = 1087004 + 0: The total amount of wall time = 447.159703 + 0: The maximum resident set size (KB) = 1084764 -Test 192 rap_sfcdiff_gnu PASS +Test 191 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_decomp_gnu -Checking test 193 rap_sfcdiff_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_gnu +Checking test 192 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6708,15 +6654,15 @@ Checking test 193 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.020921 - 0: The maximum resident set size (KB) = 1086416 + 0: The total amount of wall time = 457.859465 + 0: The maximum resident set size (KB) = 1084528 -Test 193 rap_sfcdiff_decomp_gnu PASS +Test 192 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_sfcdiff_restart_gnu -Checking test 194 rap_sfcdiff_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_gnu +Checking test 193 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6754,15 +6700,15 @@ Checking test 194 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.250180 - 0: The maximum resident set size (KB) = 883156 + 0: The total amount of wall time = 333.801555 + 0: The maximum resident set size (KB) = 885360 -Test 194 rap_sfcdiff_restart_gnu PASS +Test 193 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_gnu -Checking test 195 hrrr_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_gnu +Checking test 194 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6808,15 +6754,15 @@ Checking test 195 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.697489 - 0: The maximum resident set size (KB) = 1074528 + 0: The total amount of wall time = 230.559443 + 0: The maximum resident set size (KB) = 1072176 -Test 195 hrrr_control_gnu PASS +Test 194 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_noqr_gnu -Checking test 196 hrrr_control_noqr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_noqr_gnu +Checking test 195 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6862,15 +6808,15 @@ Checking test 196 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.255953 - 0: The maximum resident set size (KB) = 1139336 + 0: The total amount of wall time = 234.509912 + 0: The maximum resident set size (KB) = 1137940 -Test 196 hrrr_control_noqr_gnu PASS +Test 195 hrrr_control_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_gnu -Checking test 197 hrrr_control_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_gnu +Checking test 196 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6916,15 +6862,15 @@ Checking test 197 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.651039 - 0: The maximum resident set size (KB) = 1043716 + 0: The total amount of wall time = 210.340335 + 0: The maximum resident set size (KB) = 1026960 -Test 197 hrrr_control_2threads_gnu PASS +Test 196 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_gnu -Checking test 198 hrrr_control_decomp_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_gnu +Checking test 197 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6970,43 +6916,43 @@ Checking test 198 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.287590 - 0: The maximum resident set size (KB) = 1081896 + 0: The total amount of wall time = 233.094716 + 0: The maximum resident set size (KB) = 1070540 -Test 198 hrrr_control_decomp_gnu PASS +Test 197 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_gnu -Checking test 199 hrrr_control_restart_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_gnu +Checking test 198 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.516912 - 0: The maximum resident set size (KB) = 882512 + 0: The total amount of wall time = 116.893900 + 0: The maximum resident set size (KB) = 877896 -Test 199 hrrr_control_restart_gnu PASS +Test 198 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_noqr_gnu -Checking test 200 hrrr_control_restart_noqr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_noqr_gnu +Checking test 199 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 113.521939 - 0: The maximum resident set size (KB) = 934456 + 0: The total amount of wall time = 115.499942 + 0: The maximum resident set size (KB) = 932900 -Test 200 hrrr_control_restart_noqr_gnu PASS +Test 199 hrrr_control_restart_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_gnu -Checking test 201 rrfs_v1beta_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_gnu +Checking test 200 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7052,225 +6998,225 @@ Checking test 201 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 438.346028 - 0: The maximum resident set size (KB) = 1085940 + 0: The total amount of wall time = 450.897627 + 0: The maximum resident set size (KB) = 1074076 -Test 201 rrfs_v1beta_gnu PASS +Test 200 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_diag_debug_gnu -Checking test 202 control_diag_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_gnu +Checking test 201 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 64.560259 - 0: The maximum resident set size (KB) = 774620 + 0: The total amount of wall time = 71.600716 + 0: The maximum resident set size (KB) = 774652 -Test 202 control_diag_debug_gnu PASS +Test 201 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/regional_debug_gnu -Checking test 203 regional_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_gnu +Checking test 202 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 367.432213 - 0: The maximum resident set size (KB) = 926380 + 0: The total amount of wall time = 373.713261 + 0: The maximum resident set size (KB) = 924384 -Test 203 regional_debug_gnu PASS +Test 202 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_gnu -Checking test 204 rap_control_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_gnu +Checking test 203 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 111.760079 - 0: The maximum resident set size (KB) = 1098156 + 0: The total amount of wall time = 115.568370 + 0: The maximum resident set size (KB) = 1098296 -Test 204 rap_control_debug_gnu PASS +Test 203 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_gnu -Checking test 205 hrrr_control_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_gnu +Checking test 204 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.101135 - 0: The maximum resident set size (KB) = 1088160 + 0: The total amount of wall time = 113.490563 + 0: The maximum resident set size (KB) = 1089352 -Test 205 hrrr_control_debug_gnu PASS +Test 204 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_gf_debug_gnu -Checking test 206 hrrr_gf_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_gnu +Checking test 205 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.228348 - 0: The maximum resident set size (KB) = 1095944 + 0: The total amount of wall time = 114.840029 + 0: The maximum resident set size (KB) = 1090928 -Test 206 hrrr_gf_debug_gnu PASS +Test 205 hrrr_gf_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_c3_debug_gnu -Checking test 207 hrrr_c3_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_gnu +Checking test 206 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.986261 - 0: The maximum resident set size (KB) = 1092828 + 0: The total amount of wall time = 115.127629 + 0: The maximum resident set size (KB) = 1101068 -Test 207 hrrr_c3_debug_gnu PASS +Test 206 hrrr_c3_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_diag_debug_gnu -Checking test 208 rap_diag_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_gnu +Checking test 207 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.353311 - 0: The maximum resident set size (KB) = 1269224 + 0: The total amount of wall time = 121.168447 + 0: The maximum resident set size (KB) = 1267304 -Test 208 rap_diag_debug_gnu PASS +Test 207 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.568800 - 0: The maximum resident set size (KB) = 1094040 + 0: The total amount of wall time = 180.172818 + 0: The maximum resident set size (KB) = 1094248 -Test 209 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_progcld_thompson_debug_gnu -Checking test 210 rap_progcld_thompson_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_gnu +Checking test 209 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.519735 - 0: The maximum resident set size (KB) = 1096472 + 0: The total amount of wall time = 113.917695 + 0: The maximum resident set size (KB) = 1098148 -Test 210 rap_progcld_thompson_debug_gnu PASS +Test 209 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rrfs_v1beta_debug_gnu -Checking test 211 rrfs_v1beta_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_gnu +Checking test 210 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.664822 - 0: The maximum resident set size (KB) = 1093560 + 0: The total amount of wall time = 113.555284 + 0: The maximum resident set size (KB) = 1090400 -Test 211 rrfs_v1beta_debug_gnu PASS +Test 210 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_ras_debug_gnu -Checking test 212 control_ras_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_gnu +Checking test 211 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 62.881807 - 0: The maximum resident set size (KB) = 727592 + 0: The total amount of wall time = 67.098186 + 0: The maximum resident set size (KB) = 724572 -Test 212 control_ras_debug_gnu PASS +Test 211 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_stochy_debug_gnu -Checking test 213 control_stochy_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_gnu +Checking test 212 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 69.700142 - 0: The maximum resident set size (KB) = 719244 + 0: The total amount of wall time = 73.337569 + 0: The maximum resident set size (KB) = 724176 -Test 213 control_stochy_debug_gnu PASS +Test 212 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/control_debug_p8_gnu -Checking test 214 control_debug_p8_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_gnu +Checking test 213 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 67.356416 - 0: The maximum resident set size (KB) = 1504580 + 0: The total amount of wall time = 74.128440 + 0: The maximum resident set size (KB) = 1507316 -Test 214 control_debug_p8_gnu PASS +Test 213 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_flake_debug_gnu -Checking test 215 rap_flake_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_gnu +Checking test 214 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.236425 - 0: The maximum resident set size (KB) = 1096424 + 0: The total amount of wall time = 113.201113 + 0: The maximum resident set size (KB) = 1107424 -Test 215 rap_flake_debug_gnu PASS +Test 214 rap_flake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_clm_lake_debug_gnu -Checking test 216 rap_clm_lake_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_gnu +Checking test 215 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 122.126095 - 0: The maximum resident set size (KB) = 1098848 + 0: The total amount of wall time = 123.714615 + 0: The maximum resident set size (KB) = 1102944 -Test 216 rap_clm_lake_debug_gnu PASS +Test 215 rap_clm_lake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/gnv1_c96_no_nest_debug_gnu -Checking test 217 gnv1_c96_no_nest_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_gnu +Checking test 216 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7310,15 +7256,15 @@ Checking test 217 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.964902 - 0: The maximum resident set size (KB) = 1098112 + 0: The total amount of wall time = 191.315302 + 0: The maximum resident set size (KB) = 1100892 -Test 217 gnv1_c96_no_nest_debug_gnu PASS +Test 216 gnv1_c96_no_nest_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn32_phy32_gnu -Checking test 218 rap_control_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_gnu +Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7364,15 +7310,15 @@ Checking test 218 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 424.026492 - 0: The maximum resident set size (KB) = 964848 + 0: The total amount of wall time = 435.176866 + 0: The maximum resident set size (KB) = 963976 -Test 218 rap_control_dyn32_phy32_gnu PASS +Test 217 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_dyn32_phy32_gnu -Checking test 219 hrrr_control_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_gnu +Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7418,15 +7364,15 @@ Checking test 219 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.832194 - 0: The maximum resident set size (KB) = 953684 + 0: The total amount of wall time = 222.575669 + 0: The maximum resident set size (KB) = 953520 -Test 219 hrrr_control_dyn32_phy32_gnu PASS +Test 218 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_2threads_dyn32_phy32_gnu -Checking test 220 rap_2threads_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_gnu +Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7472,15 +7418,15 @@ Checking test 220 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.667958 - 0: The maximum resident set size (KB) = 997812 + 0: The total amount of wall time = 394.702233 + 0: The maximum resident set size (KB) = 968160 -Test 220 rap_2threads_dyn32_phy32_gnu PASS +Test 219 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7526,15 +7472,15 @@ Checking test 221 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.050604 - 0: The maximum resident set size (KB) = 878708 + 0: The total amount of wall time = 202.404189 + 0: The maximum resident set size (KB) = 893360 -Test 221 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7580,15 +7526,15 @@ Checking test 222 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.044644 - 0: The maximum resident set size (KB) = 952888 + 0: The total amount of wall time = 224.330151 + 0: The maximum resident set size (KB) = 951496 -Test 222 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_restart_dyn32_phy32_gnu -Checking test 223 rap_restart_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_gnu +Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7626,29 +7572,29 @@ Checking test 223 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 317.090656 - 0: The maximum resident set size (KB) = 858080 + 0: The total amount of wall time = 320.306204 + 0: The maximum resident set size (KB) = 856744 -Test 223 rap_restart_dyn32_phy32_gnu PASS +Test 222 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_restart_dyn32_phy32_gnu -Checking test 224 hrrr_control_restart_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_gnu +Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 110.685069 - 0: The maximum resident set size (KB) = 856152 + 0: The total amount of wall time = 115.277208 + 0: The maximum resident set size (KB) = 855976 -Test 224 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_control_gnu -Checking test 225 conus13km_control_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_gnu +Checking test 224 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7663,41 +7609,41 @@ Checking test 225 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 140.749904 - 0: The maximum resident set size (KB) = 1267240 + 0: The total amount of wall time = 152.926750 + 0: The maximum resident set size (KB) = 1270380 -Test 225 conus13km_control_gnu PASS +Test 224 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_2threads_gnu -Checking test 226 conus13km_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_gnu +Checking test 225 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 55.463281 - 0: The maximum resident set size (KB) = 1174488 + 0: The total amount of wall time = 58.148834 + 0: The maximum resident set size (KB) = 1178076 -Test 226 conus13km_2threads_gnu PASS +Test 225 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_restart_mismatch_gnu -Checking test 227 conus13km_restart_mismatch_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_gnu +Checking test 226 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.317376 - 0: The maximum resident set size (KB) = 929236 + 0: The total amount of wall time = 78.144792 + 0: The maximum resident set size (KB) = 935668 -Test 227 conus13km_restart_mismatch_gnu PASS +Test 226 conus13km_restart_mismatch_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_gnu -Checking test 228 rap_control_dyn64_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_gnu +Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7743,43 +7689,43 @@ Checking test 228 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.040512 - 0: The maximum resident set size (KB) = 994068 + 0: The total amount of wall time = 255.829008 + 0: The maximum resident set size (KB) = 989516 -Test 228 rap_control_dyn64_phy32_gnu PASS +Test 227 rap_control_dyn64_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_debug_dyn32_phy32_gnu -Checking test 229 rap_control_debug_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_gnu +Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 107.025441 - 0: The maximum resident set size (KB) = 974008 + 0: The total amount of wall time = 112.127121 + 0: The maximum resident set size (KB) = 976768 -Test 229 rap_control_debug_dyn32_phy32_gnu PASS +Test 228 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/hrrr_control_debug_dyn32_phy32_gnu -Checking test 230 hrrr_control_debug_dyn32_phy32_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_gnu +Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.161131 - 0: The maximum resident set size (KB) = 966456 + 0: The total amount of wall time = 108.850939 + 0: The maximum resident set size (KB) = 966744 -Test 230 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_gnu -Checking test 231 conus13km_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_gnu +Checking test 230 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7792,15 +7738,15 @@ Checking test 231 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 315.742595 - 0: The maximum resident set size (KB) = 1279968 + 0: The total amount of wall time = 323.770786 + 0: The maximum resident set size (KB) = 1279396 -Test 231 conus13km_debug_gnu PASS +Test 230 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_qr_gnu -Checking test 232 conus13km_debug_qr_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_gnu +Checking test 231 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7813,57 +7759,54 @@ Checking test 232 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 326.074337 - 0: The maximum resident set size (KB) = 966772 + 0: The total amount of wall time = 340.840468 + 0: The maximum resident set size (KB) = 971656 -Test 232 conus13km_debug_qr_gnu PASS +Test 231 conus13km_debug_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_debug_2threads_gnu -Checking test 233 conus13km_debug_2threads_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_gnu +Checking test 232 conus13km_debug_2threads_gnu 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.887508 - 0: The maximum resident set size (KB) = 1189540 + 0: The total amount of wall time = 191.519083 + 0: The maximum resident set size (KB) = 1187968 -Test 233 conus13km_debug_2threads_gnu PASS +Test 232 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/conus13km_radar_tten_debug_gnu -Checking test 234 conus13km_radar_tten_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_gnu +Checking test 233 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 316.370118 - 0: The maximum resident set size (KB) = 1349260 + 0: The total amount of wall time = 322.923830 + 0: The maximum resident set size (KB) = 1350024 -Test 234 conus13km_radar_tten_debug_gnu PASS +Test 233 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2634567/rap_control_dyn64_phy32_debug_gnu -Checking test 235 rap_control_dyn64_phy32_debug_gnu results .... +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_gnu +Checking test 234 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.466745 - 0: The maximum resident set size (KB) = 1000468 + 0: The total amount of wall time = 114.511763 + 0: The maximum resident set size (KB) = 1002056 -Test 235 rap_control_dyn64_phy32_debug_gnu PASS +Test 234 rap_control_dyn64_phy32_debug_gnu PASS -FAILED TESTS: -147 gnv1_nested_intel failed in check_result -gnv1_nested_intel 147 failed in run_test -REGRESSION TEST FAILED -Thu Feb 8 19:13:28 CST 2024 -Elapsed time: 01h:20m:18s. Have a nice day! +REGRESSION TEST WAS SUCCESSFUL +Tue Feb 13 02:57:32 AM CST 2024 +Elapsed time: 12h:21m:45s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index d104ba27da..c3f73d0673 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,40 +1,56 @@ -Compile atm_debug_dyn32_intel elapsed time 367 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 2021 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1839 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1786 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1966 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1872 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1822 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1840 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 215 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 485 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 484 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 101 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1845 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1964 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2534 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1799 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1882 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 s2s_intel elapsed time 1870 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 294 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2027 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 295 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2723 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2279 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 2919 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 330 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5475 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2277 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel 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 wam_intel elapsed time 1741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_mixedmode_intel +Mon Feb 12 21:36:05 UTC 2024 +Start Regression test + +Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atm_debug_dyn32_intel elapsed time 382 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 2039 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1847 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1797 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 2229 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1862 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1827 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 493 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1835 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1968 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2535 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1891 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1915 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 s2s_intel elapsed time 1896 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 343 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 2184 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 324 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 2814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2315 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 3316 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 536 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5517 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2344 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -99,14 +115,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 417.598625 - 0: The maximum resident set size (KB) = 1746664 + 0: The total amount of wall time = 534.782062 + 0: The maximum resident set size (KB) = 1751836 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -170,14 +186,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1238.097157 - 0: The maximum resident set size (KB) = 1644756 + 0: The total amount of wall time = 1230.188918 + 0: The maximum resident set size (KB) = 1636516 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_gfsv17_iau_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -223,14 +239,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1330.746161 - 0: The maximum resident set size (KB) = 1851840 + 0: The total amount of wall time = 1334.672577 + 0: The maximum resident set size (KB) = 1866968 -Test 003 cpld_control_gfsv17_iau_intel PASS +Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -283,14 +299,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 590.575476 - 0: The maximum resident set size (KB) = 967860 + 0: The total amount of wall time = 599.499592 + 0: The maximum resident set size (KB) = 983572 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -354,15 +370,15 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1445.554274 - 0: The maximum resident set size (KB) = 1607720 + 0: The total amount of wall time = 1426.469561 + 0: The maximum resident set size (KB) = 1610028 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_intel +Checking test 006 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -426,15 +442,15 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.099353 - 0: The maximum resident set size (KB) = 1800900 + 0: The total amount of wall time = 491.753492 + 0: The maximum resident set size (KB) = 1790460 -Test 007 cpld_control_p8_intel PASS +Test 006 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8.v2.sfc_intel +Checking test 007 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -498,15 +514,15 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.857445 - 0: The maximum resident set size (KB) = 1810948 + 0: The total amount of wall time = 478.170698 + 0: The maximum resident set size (KB) = 1792156 -Test 008 cpld_control_p8.v2.sfc_intel PASS +Test 007 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_p8_intel +Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -558,15 +574,15 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.397053 - 0: The maximum resident set size (KB) = 1688380 + 0: The total amount of wall time = 293.603567 + 0: The maximum resident set size (KB) = 1696248 -Test 009 cpld_restart_p8_intel PASS +Test 008 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_qr_p8_intel +Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -630,15 +646,15 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 466.190185 - 0: The maximum resident set size (KB) = 1843488 + 0: The total amount of wall time = 564.552994 + 0: The maximum resident set size (KB) = 1825052 -Test 010 cpld_control_qr_p8_intel PASS +Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_qr_p8_intel +Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -690,15 +706,15 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.020730 - 0: The maximum resident set size (KB) = 1707008 + 0: The total amount of wall time = 305.745305 + 0: The maximum resident set size (KB) = 1715528 -Test 011 cpld_restart_qr_p8_intel PASS +Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_2threads_p8_intel -Checking test 012 cpld_2threads_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_2threads_p8_intel +Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -750,15 +766,15 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.399304 - 0: The maximum resident set size (KB) = 2188248 + 0: The total amount of wall time = 436.673774 + 0: The maximum resident set size (KB) = 2206236 -Test 012 cpld_2threads_p8_intel PASS +Test 011 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_decomp_p8_intel -Checking test 013 cpld_decomp_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_decomp_p8_intel +Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -810,15 +826,15 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 462.329677 - 0: The maximum resident set size (KB) = 1792224 + 0: The total amount of wall time = 457.465121 + 0: The maximum resident set size (KB) = 1778628 -Test 013 cpld_decomp_p8_intel PASS +Test 012 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_p8_intel -Checking test 014 cpld_mpi_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_p8_intel +Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -870,15 +886,15 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 382.894695 - 0: The maximum resident set size (KB) = 1755624 + 0: The total amount of wall time = 387.756619 + 0: The maximum resident set size (KB) = 1751480 -Test 014 cpld_mpi_p8_intel PASS +Test 013 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_ciceC_p8_intel -Checking test 015 cpld_control_ciceC_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_ciceC_p8_intel +Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -942,15 +958,15 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 475.656668 - 0: The maximum resident set size (KB) = 1782680 + 0: The total amount of wall time = 487.231050 + 0: The maximum resident set size (KB) = 1791472 -Test 015 cpld_control_ciceC_p8_intel PASS +Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_s2sa_p8_intel -Checking test 016 cpld_s2sa_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_s2sa_p8_intel +Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1000,15 +1016,15 @@ Checking test 016 cpld_s2sa_p8_intel 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 = 435.462329 - 0: The maximum resident set size (KB) = 1774616 + 0: The total amount of wall time = 431.756247 + 0: The maximum resident set size (KB) = 1758056 -Test 016 cpld_s2sa_p8_intel PASS +Test 015 cpld_s2sa_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_intel -Checking test 017 cpld_control_noaero_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_intel +Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1071,15 +1087,15 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 397.346400 - 0: The maximum resident set size (KB) = 1637616 + 0: The total amount of wall time = 358.569615 + 0: The maximum resident set size (KB) = 1647968 -Test 017 cpld_control_noaero_p8_intel PASS +Test 016 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_nowave_noaero_p8_intel -Checking test 018 cpld_control_nowave_noaero_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_nowave_noaero_p8_intel +Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1140,15 +1156,15 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 371.761917 - 0: The maximum resident set size (KB) = 1700940 + 0: The total amount of wall time = 347.086253 + 0: The maximum resident set size (KB) = 1690144 -Test 018 cpld_control_nowave_noaero_p8_intel PASS +Test 017 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_p8_intel -Checking test 019 cpld_debug_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_p8_intel +Checking test 018 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1200,15 +1216,15 @@ Checking test 019 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 642.641170 - 0: The maximum resident set size (KB) = 1812596 + 0: The total amount of wall time = 637.913018 + 0: The maximum resident set size (KB) = 1818084 -Test 019 cpld_debug_p8_intel PASS +Test 018 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_noaero_p8_intel -Checking test 020 cpld_debug_noaero_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_noaero_p8_intel +Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1259,15 +1275,15 @@ Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 440.187541 - 0: The maximum resident set size (KB) = 1651300 + 0: The total amount of wall time = 423.784444 + 0: The maximum resident set size (KB) = 1653324 -Test 020 cpld_debug_noaero_p8_intel PASS +Test 019 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_noaero_p8_agrid_intel -Checking test 021 cpld_control_noaero_p8_agrid_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_agrid_intel +Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1328,15 +1344,15 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 371.197133 - 0: The maximum resident set size (KB) = 1694912 + 0: The total amount of wall time = 362.460804 + 0: The maximum resident set size (KB) = 1688728 -Test 021 cpld_control_noaero_p8_agrid_intel PASS +Test 020 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_c48_intel -Checking test 022 cpld_control_c48_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_c48_intel +Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1385,15 +1401,15 @@ Checking test 022 cpld_control_c48_intel 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 = 766.704053 - 0: The maximum resident set size (KB) = 2783000 + 0: The total amount of wall time = 769.214714 + 0: The maximum resident set size (KB) = 2781404 -Test 022 cpld_control_c48_intel PASS +Test 021 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_p8_faster_intel -Checking test 023 cpld_control_p8_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_faster_intel +Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1457,15 +1473,15 @@ Checking test 023 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 441.675255 - 0: The maximum resident set size (KB) = 1810020 + 0: The total amount of wall time = 423.335587 + 0: The maximum resident set size (KB) = 1816108 -Test 023 cpld_control_p8_faster_intel PASS +Test 022 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_control_pdlib_p8_intel -Checking test 024 cpld_control_pdlib_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_pdlib_p8_intel +Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1528,15 +1544,15 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1240.111555 - 0: The maximum resident set size (KB) = 1677944 + 0: The total amount of wall time = 1246.127718 + 0: The maximum resident set size (KB) = 1665064 -Test 024 cpld_control_pdlib_p8_intel PASS +Test 023 cpld_control_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_restart_pdlib_p8_intel -Checking test 025 cpld_restart_pdlib_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_pdlib_p8_intel +Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1587,15 +1603,15 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 596.241255 - 0: The maximum resident set size (KB) = 1020012 + 0: The total amount of wall time = 617.156240 + 0: The maximum resident set size (KB) = 1029984 -Test 025 cpld_restart_pdlib_p8_intel PASS +Test 024 cpld_restart_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_mpi_pdlib_p8_intel -Checking test 026 cpld_mpi_pdlib_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_pdlib_p8_intel +Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1658,15 +1674,15 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1442.768959 - 0: The maximum resident set size (KB) = 1634632 + 0: The total amount of wall time = 1346.369940 + 0: The maximum resident set size (KB) = 1652932 -Test 026 cpld_mpi_pdlib_p8_intel PASS +Test 025 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/cpld_debug_pdlib_p8_intel -Checking test 027 cpld_debug_pdlib_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_pdlib_p8_intel +Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1717,15 +1733,15 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1913.180413 - 0: The maximum resident set size (KB) = 1679084 + 0: The total amount of wall time = 1911.438958 + 0: The maximum resident set size (KB) = 1669388 -Test 027 cpld_debug_pdlib_p8_intel PASS +Test 026 cpld_debug_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_flake_intel -Checking test 028 control_flake_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_flake_intel +Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1735,15 +1751,15 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 285.289548 - 0: The maximum resident set size (KB) = 642168 + 0: The total amount of wall time = 286.222758 + 0: The maximum resident set size (KB) = 642372 -Test 028 control_flake_intel PASS +Test 027 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_intel -Checking test 029 control_CubedSphereGrid_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_intel +Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1769,37 +1785,37 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 201.700142 - 0: The maximum resident set size (KB) = 598164 + 0: The total amount of wall time = 187.681016 + 0: The maximum resident set size (KB) = 589304 -Test 029 control_CubedSphereGrid_intel PASS +Test 028 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_parallel_intel -Checking test 030 control_CubedSphereGrid_parallel_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_parallel_intel +Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK + Comparing cubed_sphere_grid_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 = 206.658632 - 0: The maximum resident set size (KB) = 598076 + 0: The total amount of wall time = 203.384104 + 0: The maximum resident set size (KB) = 599528 -Test 030 control_CubedSphereGrid_parallel_intel PASS +Test 029 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_latlon_intel -Checking test 031 control_latlon_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_latlon_intel +Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1809,15 +1825,15 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.203586 - 0: The maximum resident set size (KB) = 588164 + 0: The total amount of wall time = 209.873735 + 0: The maximum resident set size (KB) = 597932 -Test 031 control_latlon_intel PASS +Test 030 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_intel -Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_intel +Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1827,15 +1843,15 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.682711 - 0: The maximum resident set size (KB) = 592908 + 0: The total amount of wall time = 214.792128 + 0: The maximum resident set size (KB) = 591220 -Test 032 control_wrtGauss_netcdf_parallel_intel PASS +Test 031 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48_intel -Checking test 033 control_c48_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48_intel +Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1873,15 +1889,15 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 605.899308 -0: The maximum resident set size (KB) = 839620 +0: The total amount of wall time = 606.579441 +0: The maximum resident set size (KB) = 842612 -Test 033 control_c48_intel PASS +Test 032 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c48.v2.sfc_intel -Checking test 034 control_c48.v2.sfc_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48.v2.sfc_intel +Checking test 033 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1919,15 +1935,15 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 604.762516 -0: The maximum resident set size (KB) = 845876 +0: The total amount of wall time = 606.975364 +0: The maximum resident set size (KB) = 844904 -Test 034 control_c48.v2.sfc_intel PASS +Test 033 control_c48.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c192_intel -Checking test 035 control_c192_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c192_intel +Checking test 034 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1937,15 +1953,15 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 747.144683 - 0: The maximum resident set size (KB) = 724176 + 0: The total amount of wall time = 752.567605 + 0: The maximum resident set size (KB) = 727536 -Test 035 control_c192_intel PASS +Test 034 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384_intel -Checking test 036 control_c384_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384_intel +Checking test 035 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1955,15 +1971,15 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1036.489847 - 0: The maximum resident set size (KB) = 898244 + 0: The total amount of wall time = 1019.889235 + 0: The maximum resident set size (KB) = 891060 -Test 036 control_c384_intel PASS +Test 035 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_c384gdas_intel -Checking test 037 control_c384gdas_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384gdas_intel +Checking test 036 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1974,9 +1990,9 @@ Checking test 037 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK @@ -1985,35 +2001,35 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 863.081916 - 0: The maximum resident set size (KB) = 1013596 + 0: The total amount of wall time = 874.560142 + 0: The maximum resident set size (KB) = 1018424 -Test 037 control_c384gdas_intel PASS +Test 036 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_intel -Checking test 038 control_stochy_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_intel +Checking test 037 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2023,29 +2039,29 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 126.430949 - 0: The maximum resident set size (KB) = 596656 + 0: The total amount of wall time = 125.015567 + 0: The maximum resident set size (KB) = 601880 -Test 038 control_stochy_intel PASS +Test 037 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_restart_intel -Checking test 039 control_stochy_restart_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_restart_intel +Checking test 038 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 70.047857 - 0: The maximum resident set size (KB) = 432020 + 0: The total amount of wall time = 69.934029 + 0: The maximum resident set size (KB) = 428924 -Test 039 control_stochy_restart_intel PASS +Test 038 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_intel -Checking test 040 control_lndp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_intel +Checking test 039 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2055,15 +2071,15 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 121.136305 - 0: The maximum resident set size (KB) = 602596 + 0: The total amount of wall time = 116.805499 + 0: The maximum resident set size (KB) = 596772 -Test 040 control_lndp_intel PASS +Test 039 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr4_intel -Checking test 041 control_iovr4_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr4_intel +Checking test 040 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2077,15 +2093,15 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1393.365752 - 0: The maximum resident set size (KB) = 591436 + 0: The total amount of wall time = 213.949351 + 0: The maximum resident set size (KB) = 593408 -Test 041 control_iovr4_intel PASS +Test 040 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_iovr5_intel -Checking test 042 control_iovr5_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr5_intel +Checking test 041 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2099,15 +2115,15 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.163161 - 0: The maximum resident set size (KB) = 591840 + 0: The total amount of wall time = 208.976749 + 0: The maximum resident set size (KB) = 596468 -Test 042 control_iovr5_intel PASS +Test 041 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_intel -Checking test 043 control_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_intel +Checking test 042 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2153,15 +2169,15 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.613032 - 0: The maximum resident set size (KB) = 1573544 + 0: The total amount of wall time = 230.259030 + 0: The maximum resident set size (KB) = 1558272 -Test 043 control_p8_intel PASS +Test 042 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8.v2.sfc_intel -Checking test 044 control_p8.v2.sfc_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8.v2.sfc_intel +Checking test 043 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2207,15 +2223,15 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 225.941040 - 0: The maximum resident set size (KB) = 1574172 + 0: The total amount of wall time = 228.546037 + 0: The maximum resident set size (KB) = 1565240 -Test 044 control_p8.v2.sfc_intel PASS +Test 043 control_p8.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_ugwpv1_intel -Checking test 045 control_p8_ugwpv1_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_ugwpv1_intel +Checking test 044 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2261,15 +2277,15 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.835795 - 0: The maximum resident set size (KB) = 1569424 + 0: The total amount of wall time = 221.330175 + 0: The maximum resident set size (KB) = 1575000 -Test 045 control_p8_ugwpv1_intel PASS +Test 044 control_p8_ugwpv1_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_intel -Checking test 046 control_restart_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_intel +Checking test 045 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2307,15 +2323,15 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 119.504831 - 0: The maximum resident set size (KB) = 808512 + 0: The total amount of wall time = 124.103869 + 0: The maximum resident set size (KB) = 810300 -Test 046 control_restart_p8_intel PASS +Test 045 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_noqr_p8_intel -Checking test 047 control_noqr_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_noqr_p8_intel +Checking test 046 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2361,15 +2377,15 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 221.939531 - 0: The maximum resident set size (KB) = 1555528 + 0: The total amount of wall time = 223.966687 + 0: The maximum resident set size (KB) = 1549348 -Test 047 control_noqr_p8_intel PASS +Test 046 control_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_noqr_p8_intel -Checking test 048 control_restart_noqr_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_noqr_p8_intel +Checking test 047 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2407,15 +2423,15 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 118.207898 - 0: The maximum resident set size (KB) = 833268 + 0: The total amount of wall time = 120.227079 + 0: The maximum resident set size (KB) = 835180 -Test 048 control_restart_noqr_p8_intel PASS +Test 047 control_restart_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_decomp_p8_intel -Checking test 049 control_decomp_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_decomp_p8_intel +Checking test 048 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2457,15 +2473,15 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 237.613789 - 0: The maximum resident set size (KB) = 1564292 + 0: The total amount of wall time = 237.362702 + 0: The maximum resident set size (KB) = 1548184 -Test 049 control_decomp_p8_intel PASS +Test 048 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_2threads_p8_intel -Checking test 050 control_2threads_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_2threads_p8_intel +Checking test 049 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2507,15 +2523,15 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 219.680945 - 0: The maximum resident set size (KB) = 1658808 + 0: The total amount of wall time = 223.751944 + 0: The maximum resident set size (KB) = 1645176 -Test 050 control_2threads_p8_intel PASS +Test 049 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_lndp_intel -Checking test 051 control_p8_lndp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_lndp_intel +Checking test 050 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2533,15 +2549,15 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 410.990355 - 0: The maximum resident set size (KB) = 1568508 + 0: The total amount of wall time = 417.231482 + 0: The maximum resident set size (KB) = 1560648 -Test 051 control_p8_lndp_intel PASS +Test 050 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_rrtmgp_intel -Checking test 052 control_p8_rrtmgp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_rrtmgp_intel +Checking test 051 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2587,15 +2603,15 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 324.274315 - 0: The maximum resident set size (KB) = 1618368 + 0: The total amount of wall time = 298.422724 + 0: The maximum resident set size (KB) = 1635200 -Test 052 control_p8_rrtmgp_intel PASS +Test 051 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_mynn_intel -Checking test 053 control_p8_mynn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_mynn_intel +Checking test 052 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2641,15 +2657,15 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.131373 - 0: The maximum resident set size (KB) = 1561660 + 0: The total amount of wall time = 228.568739 + 0: The maximum resident set size (KB) = 1580556 -Test 053 control_p8_mynn_intel PASS +Test 052 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/merra2_thompson_intel -Checking test 054 merra2_thompson_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/merra2_thompson_intel +Checking test 053 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2695,15 +2711,15 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 264.924860 - 0: The maximum resident set size (KB) = 1564736 + 0: The total amount of wall time = 267.610727 + 0: The maximum resident set size (KB) = 1585996 -Test 054 merra2_thompson_intel PASS +Test 053 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_intel -Checking test 055 regional_control_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_intel +Checking test 054 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2713,29 +2729,29 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 429.991218 - 0: The maximum resident set size (KB) = 753972 + 0: The total amount of wall time = 430.572297 + 0: The maximum resident set size (KB) = 758916 -Test 055 regional_control_intel PASS +Test 054 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_restart_intel -Checking test 056 regional_restart_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_restart_intel +Checking test 055 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 219.814728 - 0: The maximum resident set size (KB) = 927712 + 0: The total amount of wall time = 219.037545 + 0: The maximum resident set size (KB) = 935416 -Test 056 regional_restart_intel PASS +Test 055 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_decomp_intel -Checking test 057 regional_decomp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_decomp_intel +Checking test 056 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2745,15 +2761,15 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 451.522213 - 0: The maximum resident set size (KB) = 749776 + 0: The total amount of wall time = 455.034196 + 0: The maximum resident set size (KB) = 748772 -Test 057 regional_decomp_intel PASS +Test 056 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2threads_intel -Checking test 058 regional_2threads_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2threads_intel +Checking test 057 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2763,29 +2779,29 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.918671 - 0: The maximum resident set size (KB) = 747508 + 0: The total amount of wall time = 264.108947 + 0: The maximum resident set size (KB) = 750308 -Test 058 regional_2threads_intel PASS +Test 057 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_netcdf_parallel_intel -Checking test 059 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_netcdf_parallel_intel +Checking test 058 regional_netcdf_parallel_intel results .... + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 419.753136 - 0: The maximum resident set size (KB) = 757676 + 0: The total amount of wall time = 416.634061 + 0: The maximum resident set size (KB) = 752540 -Test 059 regional_netcdf_parallel_intel PASS +Test 058 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_2dwrtdecomp_intel -Checking test 060 regional_2dwrtdecomp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2dwrtdecomp_intel +Checking test 059 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2795,15 +2811,15 @@ Checking test 060 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 423.971494 - 0: The maximum resident set size (KB) = 755008 + 0: The total amount of wall time = 426.296210 + 0: The maximum resident set size (KB) = 756220 -Test 060 regional_2dwrtdecomp_intel PASS +Test 059 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_intel -Checking test 061 rap_control_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_intel +Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2849,15 +2865,15 @@ Checking test 061 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 641.015804 - 0: The maximum resident set size (KB) = 968076 + 0: The total amount of wall time = 595.012302 + 0: The maximum resident set size (KB) = 979152 -Test 061 rap_control_intel PASS +Test 060 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_intel -Checking test 062 regional_spp_sppt_shum_skeb_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_intel +Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2867,15 +2883,15 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 334.033315 - 0: The maximum resident set size (KB) = 1206652 + 0: The total amount of wall time = 336.578899 + 0: The maximum resident set size (KB) = 1203488 -Test 062 regional_spp_sppt_shum_skeb_intel PASS +Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_decomp_intel -Checking test 063 rap_decomp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_decomp_intel +Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2921,15 +2937,15 @@ Checking test 063 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 630.055127 - 0: The maximum resident set size (KB) = 958116 + 0: The total amount of wall time = 636.071325 + 0: The maximum resident set size (KB) = 971688 -Test 063 rap_decomp_intel PASS +Test 062 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_intel -Checking test 064 rap_2threads_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_intel +Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2975,15 +2991,15 @@ Checking test 064 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 571.681731 - 0: The maximum resident set size (KB) = 1064824 + 0: The total amount of wall time = 579.475226 + 0: The maximum resident set size (KB) = 1061520 -Test 064 rap_2threads_intel PASS +Test 063 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_intel -Checking test 065 rap_restart_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_intel +Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3021,15 +3037,15 @@ Checking test 065 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.813615 - 0: The maximum resident set size (KB) = 984572 + 0: The total amount of wall time = 320.380683 + 0: The maximum resident set size (KB) = 983312 -Test 065 rap_restart_intel PASS +Test 064 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_intel -Checking test 066 rap_sfcdiff_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_intel +Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3075,15 +3091,15 @@ Checking test 066 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 603.504721 - 0: The maximum resident set size (KB) = 969532 + 0: The total amount of wall time = 607.543247 + 0: The maximum resident set size (KB) = 981920 -Test 066 rap_sfcdiff_intel PASS +Test 065 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_decomp_intel -Checking test 067 rap_sfcdiff_decomp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_decomp_intel +Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3129,15 +3145,15 @@ Checking test 067 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 639.061808 - 0: The maximum resident set size (KB) = 979304 + 0: The total amount of wall time = 631.456578 + 0: The maximum resident set size (KB) = 961208 -Test 067 rap_sfcdiff_decomp_intel PASS +Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_restart_intel -Checking test 068 rap_sfcdiff_restart_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_restart_intel +Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3175,15 +3191,15 @@ Checking test 068 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.003018 - 0: The maximum resident set size (KB) = 986380 + 0: The total amount of wall time = 467.410399 + 0: The maximum resident set size (KB) = 990640 -Test 068 rap_sfcdiff_restart_intel PASS +Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_intel -Checking test 069 hrrr_control_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_intel +Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3229,15 +3245,15 @@ Checking test 069 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 306.543021 - 0: The maximum resident set size (KB) = 978476 + 0: The total amount of wall time = 307.642296 + 0: The maximum resident set size (KB) = 974528 -Test 069 hrrr_control_intel PASS +Test 068 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_intel -Checking test 070 hrrr_control_decomp_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_intel +Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3283,15 +3299,15 @@ Checking test 070 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 321.295290 - 0: The maximum resident set size (KB) = 966180 + 0: The total amount of wall time = 318.398241 + 0: The maximum resident set size (KB) = 965840 -Test 070 hrrr_control_decomp_intel PASS +Test 069 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_intel -Checking test 071 hrrr_control_2threads_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_intel +Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3337,29 +3353,29 @@ Checking test 071 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.108260 - 0: The maximum resident set size (KB) = 1051444 + 0: The total amount of wall time = 282.476061 + 0: The maximum resident set size (KB) = 1051404 -Test 071 hrrr_control_2threads_intel PASS +Test 070 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_intel -Checking test 072 hrrr_control_restart_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_intel +Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 167.645004 - 0: The maximum resident set size (KB) = 903024 + 0: The total amount of wall time = 163.094490 + 0: The maximum resident set size (KB) = 912224 -Test 072 hrrr_control_restart_intel PASS +Test 071 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_intel -Checking test 073 rrfs_v1beta_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_intel +Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3405,15 +3421,15 @@ Checking test 073 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 587.432205 - 0: The maximum resident set size (KB) = 979612 + 0: The total amount of wall time = 601.257205 + 0: The maximum resident set size (KB) = 969496 -Test 073 rrfs_v1beta_intel PASS +Test 072 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_intel -Checking test 074 rrfs_v1nssl_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_intel +Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3427,15 +3443,15 @@ Checking test 074 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 718.128208 - 0: The maximum resident set size (KB) = 1926676 + 0: The total amount of wall time = 760.476294 + 0: The maximum resident set size (KB) = 1927008 -Test 074 rrfs_v1nssl_intel PASS +Test 073 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1nssl_nohailnoccn_intel -Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_nohailnoccn_intel +Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3449,15 +3465,15 @@ Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 723.775643 - 0: The maximum resident set size (KB) = 1921892 + 0: The total amount of wall time = 732.994073 + 0: The maximum resident set size (KB) = 1924848 -Test 075 rrfs_v1nssl_nohailnoccn_intel PASS +Test 074 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_intel -Checking test 076 control_csawmg_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_intel +Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3467,15 +3483,15 @@ Checking test 076 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 499.872926 - 0: The maximum resident set size (KB) = 682884 + 0: The total amount of wall time = 476.475224 + 0: The maximum resident set size (KB) = 683096 -Test 076 control_csawmg_intel PASS +Test 075 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_intel -Checking test 077 control_csawmgt_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_intel +Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3485,15 +3501,15 @@ Checking test 077 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 492.512279 - 0: The maximum resident set size (KB) = 685628 + 0: The total amount of wall time = 463.147967 + 0: The maximum resident set size (KB) = 682252 -Test 077 control_csawmgt_intel PASS +Test 076 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_intel -Checking test 078 control_ras_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_intel +Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3503,27 +3519,27 @@ Checking test 078 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 259.949395 - 0: The maximum resident set size (KB) = 650968 + 0: The total amount of wall time = 264.195431 + 0: The maximum resident set size (KB) = 653372 -Test 078 control_ras_intel PASS +Test 077 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_intel -Checking test 079 control_wam_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_intel +Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 193.060547 - 0: The maximum resident set size (KB) = 497092 + 0: The total amount of wall time = 159.515892 + 0: The maximum resident set size (KB) = 488696 -Test 079 control_wam_intel PASS +Test 078 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_faster_intel -Checking test 080 control_p8_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_faster_intel +Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3569,15 +3585,15 @@ Checking test 080 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.283087 - 0: The maximum resident set size (KB) = 1566732 + 0: The total amount of wall time = 211.100612 + 0: The maximum resident set size (KB) = 1568516 -Test 080 control_p8_faster_intel PASS +Test 079 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_control_faster_intel -Checking test 081 regional_control_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_faster_intel +Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3587,15 +3603,15 @@ Checking test 081 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 391.178962 - 0: The maximum resident set size (KB) = 756524 + 0: The total amount of wall time = 388.027608 + 0: The maximum resident set size (KB) = 755708 -Test 081 regional_control_faster_intel PASS +Test 080 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_CubedSphereGrid_debug_intel -Checking test 082 control_CubedSphereGrid_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_debug_intel +Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3621,365 +3637,365 @@ Checking test 082 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 197.758614 - 0: The maximum resident set size (KB) = 750332 + 0: The total amount of wall time = 197.949405 + 0: The maximum resident set size (KB) = 748288 -Test 082 control_CubedSphereGrid_debug_intel PASS +Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 083 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.756653 - 0: The maximum resident set size (KB) = 749352 + 0: The total amount of wall time = 195.934017 + 0: The maximum resident set size (KB) = 749784 -Test 083 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_stochy_debug_intel -Checking test 084 control_stochy_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_debug_intel +Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.936950 - 0: The maximum resident set size (KB) = 757704 + 0: The total amount of wall time = 216.788547 + 0: The maximum resident set size (KB) = 755992 -Test 084 control_stochy_debug_intel PASS +Test 083 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_lndp_debug_intel -Checking test 085 control_lndp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_debug_intel +Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.491477 - 0: The maximum resident set size (KB) = 751528 + 0: The total amount of wall time = 192.031486 + 0: The maximum resident set size (KB) = 752912 -Test 085 control_lndp_debug_intel PASS +Test 084 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmg_debug_intel -Checking test 086 control_csawmg_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_debug_intel +Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.610104 - 0: The maximum resident set size (KB) = 799636 + 0: The total amount of wall time = 304.862940 + 0: The maximum resident set size (KB) = 802476 -Test 086 control_csawmg_debug_intel PASS +Test 085 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_csawmgt_debug_intel -Checking test 087 control_csawmgt_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_debug_intel +Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.314693 - 0: The maximum resident set size (KB) = 800548 + 0: The total amount of wall time = 300.893166 + 0: The maximum resident set size (KB) = 804564 -Test 087 control_csawmgt_debug_intel PASS +Test 086 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_ras_debug_intel -Checking test 088 control_ras_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_debug_intel +Checking test 087 control_ras_debug_intel 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.164043 - 0: The maximum resident set size (KB) = 759824 + 0: The total amount of wall time = 192.756996 + 0: The maximum resident set size (KB) = 764108 -Test 088 control_ras_debug_intel PASS +Test 087 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_diag_debug_intel -Checking test 089 control_diag_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_diag_debug_intel +Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.738466 - 0: The maximum resident set size (KB) = 808968 + 0: The total amount of wall time = 196.879806 + 0: The maximum resident set size (KB) = 816552 -Test 089 control_diag_debug_intel PASS +Test 088 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_debug_p8_intel -Checking test 090 control_debug_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_debug_p8_intel +Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.269743 - 0: The maximum resident set size (KB) = 1574496 + 0: The total amount of wall time = 216.684691 + 0: The maximum resident set size (KB) = 1578496 -Test 090 control_debug_p8_intel PASS +Test 089 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_debug_intel -Checking test 091 regional_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_debug_intel +Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1293.778089 - 0: The maximum resident set size (KB) = 776296 + 0: The total amount of wall time = 1294.906142 + 0: The maximum resident set size (KB) = 764884 -Test 091 regional_debug_intel PASS +Test 090 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_intel -Checking test 092 rap_control_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_intel +Checking test 091 rap_control_debug_intel 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.838602 - 0: The maximum resident set size (KB) = 1147756 + 0: The total amount of wall time = 362.037117 + 0: The maximum resident set size (KB) = 1142484 -Test 092 rap_control_debug_intel PASS +Test 091 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_intel -Checking test 093 hrrr_control_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_intel +Checking test 092 hrrr_control_debug_intel 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.105955 - 0: The maximum resident set size (KB) = 1146008 + 0: The total amount of wall time = 353.948917 + 0: The maximum resident set size (KB) = 1126728 -Test 093 hrrr_control_debug_intel PASS +Test 092 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_gf_debug_intel -Checking test 094 hrrr_gf_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_gf_debug_intel +Checking test 093 hrrr_gf_debug_intel 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.784158 - 0: The maximum resident set size (KB) = 1131788 + 0: The total amount of wall time = 358.088782 + 0: The maximum resident set size (KB) = 1138236 -Test 094 hrrr_gf_debug_intel PASS +Test 093 hrrr_gf_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_c3_debug_intel -Checking test 095 hrrr_c3_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_c3_debug_intel +Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.417002 - 0: The maximum resident set size (KB) = 1152760 + 0: The total amount of wall time = 361.937057 + 0: The maximum resident set size (KB) = 1146536 -Test 095 hrrr_c3_debug_intel PASS +Test 094 hrrr_c3_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_drag_suite_debug_intel -Checking test 096 rap_unified_drag_suite_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_drag_suite_debug_intel +Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.600282 - 0: The maximum resident set size (KB) = 1141192 + 0: The total amount of wall time = 373.384664 + 0: The maximum resident set size (KB) = 1133048 -Test 096 rap_unified_drag_suite_debug_intel PASS +Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_diag_debug_intel -Checking test 097 rap_diag_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_diag_debug_intel +Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 379.489750 - 0: The maximum resident set size (KB) = 1226544 + 0: The total amount of wall time = 375.569447 + 0: The maximum resident set size (KB) = 1227640 -Test 097 rap_diag_debug_intel PASS +Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_cires_ugwp_debug_intel -Checking test 098 rap_cires_ugwp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_cires_ugwp_debug_intel +Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.378069 - 0: The maximum resident set size (KB) = 1148512 + 0: The total amount of wall time = 372.837048 + 0: The maximum resident set size (KB) = 1140416 -Test 098 rap_cires_ugwp_debug_intel PASS +Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_unified_ugwp_debug_intel -Checking test 099 rap_unified_ugwp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_ugwp_debug_intel +Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.869012 - 0: The maximum resident set size (KB) = 1138680 + 0: The total amount of wall time = 369.619346 + 0: The maximum resident set size (KB) = 1154948 -Test 099 rap_unified_ugwp_debug_intel PASS +Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_lndp_debug_intel -Checking test 100 rap_lndp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_lndp_debug_intel +Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.196931 - 0: The maximum resident set size (KB) = 1146640 + 0: The total amount of wall time = 362.167227 + 0: The maximum resident set size (KB) = 1139720 -Test 100 rap_lndp_debug_intel PASS +Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_progcld_thompson_debug_intel -Checking test 101 rap_progcld_thompson_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_progcld_thompson_debug_intel +Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.841576 - 0: The maximum resident set size (KB) = 1149568 + 0: The total amount of wall time = 366.477841 + 0: The maximum resident set size (KB) = 1149552 -Test 101 rap_progcld_thompson_debug_intel PASS +Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_debug_intel -Checking test 102 rap_noah_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_debug_intel +Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.251145 - 0: The maximum resident set size (KB) = 1148052 + 0: The total amount of wall time = 351.444512 + 0: The maximum resident set size (KB) = 1138908 -Test 102 rap_noah_debug_intel PASS +Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_sfcdiff_debug_intel -Checking test 103 rap_sfcdiff_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_debug_intel +Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.731212 - 0: The maximum resident set size (KB) = 1137804 + 0: The total amount of wall time = 369.048524 + 0: The maximum resident set size (KB) = 1140032 -Test 103 rap_sfcdiff_debug_intel PASS +Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 595.297882 - 0: The maximum resident set size (KB) = 1128252 + 0: The total amount of wall time = 584.564107 + 0: The maximum resident set size (KB) = 1145208 -Test 104 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rrfs_v1beta_debug_intel -Checking test 105 rrfs_v1beta_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_debug_intel +Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.407557 - 0: The maximum resident set size (KB) = 1122084 + 0: The total amount of wall time = 354.524565 + 0: The maximum resident set size (KB) = 1134284 -Test 105 rrfs_v1beta_debug_intel PASS +Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_clm_lake_debug_intel -Checking test 106 rap_clm_lake_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_clm_lake_debug_intel +Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 433.994598 - 0: The maximum resident set size (KB) = 1145636 + 0: The total amount of wall time = 482.702399 + 0: The maximum resident set size (KB) = 1143736 -Test 106 rap_clm_lake_debug_intel PASS +Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_flake_debug_intel -Checking test 107 rap_flake_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_flake_debug_intel +Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.874789 - 0: The maximum resident set size (KB) = 1142260 + 0: The total amount of wall time = 362.257679 + 0: The maximum resident set size (KB) = 1139584 -Test 107 rap_flake_debug_intel PASS +Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_c96_no_nest_debug_intel -Checking test 108 gnv1_c96_no_nest_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_c96_no_nest_debug_intel +Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4019,27 +4035,27 @@ Checking test 108 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 618.361430 - 0: The maximum resident set size (KB) = 1147508 + 0: The total amount of wall time = 621.988842 + 0: The maximum resident set size (KB) = 1144000 -Test 108 gnv1_c96_no_nest_debug_intel PASS +Test 107 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_wam_debug_intel -Checking test 109 control_wam_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_debug_intel +Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 362.721922 - 0: The maximum resident set size (KB) = 431872 + 0: The total amount of wall time = 368.732194 + 0: The maximum resident set size (KB) = 431620 -Test 109 control_wam_debug_intel PASS +Test 108 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4049,15 +4065,15 @@ Checking test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 307.133271 - 0: The maximum resident set size (KB) = 1080296 + 0: The total amount of wall time = 307.325745 + 0: The maximum resident set size (KB) = 1080112 -Test 110 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn32_phy32_intel -Checking test 111 rap_control_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn32_phy32_intel +Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4103,15 +4119,15 @@ Checking test 111 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 500.959708 - 0: The maximum resident set size (KB) = 902444 + 0: The total amount of wall time = 493.646222 + 0: The maximum resident set size (KB) = 897736 -Test 111 rap_control_dyn32_phy32_intel PASS +Test 110 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_dyn32_phy32_intel -Checking test 112 hrrr_control_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_dyn32_phy32_intel +Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4157,15 +4173,15 @@ Checking test 112 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 265.466812 - 0: The maximum resident set size (KB) = 868560 + 0: The total amount of wall time = 254.459983 + 0: The maximum resident set size (KB) = 869524 -Test 112 hrrr_control_dyn32_phy32_intel PASS +Test 111 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_2threads_dyn32_phy32_intel -Checking test 113 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_dyn32_phy32_intel +Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4211,15 +4227,15 @@ Checking test 113 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.145173 - 0: The maximum resident set size (KB) = 935308 + 0: The total amount of wall time = 474.654727 + 0: The maximum resident set size (KB) = 935216 -Test 113 rap_2threads_dyn32_phy32_intel PASS +Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_2threads_dyn32_phy32_intel -Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_dyn32_phy32_intel +Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4265,15 +4281,15 @@ Checking test 114 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.668838 - 0: The maximum resident set size (KB) = 903052 + 0: The total amount of wall time = 243.951425 + 0: The maximum resident set size (KB) = 900808 -Test 114 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_decomp_dyn32_phy32_intel -Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_dyn32_phy32_intel +Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4319,15 +4335,15 @@ Checking test 115 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.473166 - 0: The maximum resident set size (KB) = 851364 + 0: The total amount of wall time = 273.511755 + 0: The maximum resident set size (KB) = 858584 -Test 115 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_restart_dyn32_phy32_intel -Checking test 116 rap_restart_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_dyn32_phy32_intel +Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4365,29 +4381,29 @@ Checking test 116 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.073550 - 0: The maximum resident set size (KB) = 898488 + 0: The total amount of wall time = 371.795143 + 0: The maximum resident set size (KB) = 895716 -Test 116 rap_restart_dyn32_phy32_intel PASS +Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_restart_dyn32_phy32_intel -Checking test 117 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_dyn32_phy32_intel +Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 142.832455 - 0: The maximum resident set size (KB) = 844956 + 0: The total amount of wall time = 135.689696 + 0: The maximum resident set size (KB) = 846412 -Test 117 hrrr_control_restart_dyn32_phy32_intel PASS +Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_control_intel -Checking test 118 conus13km_control_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_control_intel +Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4402,41 +4418,41 @@ Checking test 118 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 165.856415 - 0: The maximum resident set size (KB) = 1095036 + 0: The total amount of wall time = 166.741815 + 0: The maximum resident set size (KB) = 1094164 -Test 118 conus13km_control_intel PASS +Test 117 conus13km_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_2threads_intel -Checking test 119 conus13km_2threads_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_2threads_intel +Checking test 118 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 75.806853 - 0: The maximum resident set size (KB) = 1045708 + 0: The total amount of wall time = 71.137121 + 0: The maximum resident set size (KB) = 1045464 -Test 119 conus13km_2threads_intel PASS +Test 118 conus13km_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_restart_mismatch_intel -Checking test 120 conus13km_restart_mismatch_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_restart_mismatch_intel +Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 92.105403 - 0: The maximum resident set size (KB) = 1013256 + 0: The total amount of wall time = 90.363616 + 0: The maximum resident set size (KB) = 1009008 -Test 120 conus13km_restart_mismatch_intel PASS +Test 119 conus13km_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_intel -Checking test 121 rap_control_dyn64_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_intel +Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4482,43 +4498,43 @@ Checking test 121 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 321.830459 - 0: The maximum resident set size (KB) = 890804 + 0: The total amount of wall time = 337.286470 + 0: The maximum resident set size (KB) = 894768 -Test 121 rap_control_dyn64_phy32_intel PASS +Test 120 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_debug_dyn32_phy32_intel -Checking test 122 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_dyn32_phy32_intel +Checking test 121 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.354090 - 0: The maximum resident set size (KB) = 1009812 + 0: The total amount of wall time = 347.118740 + 0: The maximum resident set size (KB) = 1024996 -Test 122 rap_control_debug_dyn32_phy32_intel PASS +Test 121 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hrrr_control_debug_dyn32_phy32_intel -Checking test 123 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_dyn32_phy32_intel +Checking test 122 hrrr_control_debug_dyn32_phy32_intel 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.902322 - 0: The maximum resident set size (KB) = 1006496 + 0: The total amount of wall time = 341.435940 + 0: The maximum resident set size (KB) = 1015840 -Test 123 hrrr_control_debug_dyn32_phy32_intel PASS +Test 122 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_intel -Checking test 124 conus13km_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_intel +Checking test 123 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4531,15 +4547,15 @@ Checking test 124 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1107.364253 - 0: The maximum resident set size (KB) = 1129452 + 0: The total amount of wall time = 1087.950847 + 0: The maximum resident set size (KB) = 1129212 -Test 124 conus13km_debug_intel PASS +Test 123 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_qr_intel -Checking test 125 conus13km_debug_qr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_qr_intel +Checking test 124 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4552,82 +4568,82 @@ Checking test 125 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1110.480045 - 0: The maximum resident set size (KB) = 866948 + 0: The total amount of wall time = 1097.144274 + 0: The maximum resident set size (KB) = 844612 -Test 125 conus13km_debug_qr_intel PASS +Test 124 conus13km_debug_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_debug_2threads_intel -Checking test 126 conus13km_debug_2threads_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_2threads_intel +Checking test 125 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 637.560550 - 0: The maximum resident set size (KB) = 1078496 + 0: The total amount of wall time = 625.508257 + 0: The maximum resident set size (KB) = 1082896 -Test 126 conus13km_debug_2threads_intel PASS +Test 125 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/conus13km_radar_tten_debug_intel -Checking test 127 conus13km_radar_tten_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_radar_tten_debug_intel +Checking test 126 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1099.356619 - 0: The maximum resident set size (KB) = 1188200 + 0: The total amount of wall time = 1090.871099 + 0: The maximum resident set size (KB) = 1189200 -Test 127 conus13km_radar_tten_debug_intel PASS +Test 126 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/rap_control_dyn64_phy32_debug_intel -Checking test 128 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_debug_intel +Checking test 127 rap_control_dyn64_phy32_debug_intel 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.325797 - 0: The maximum resident set size (KB) = 1057176 + 0: The total amount of wall time = 358.218954 + 0: The maximum resident set size (KB) = 1052784 -Test 128 rap_control_dyn64_phy32_debug_intel PASS +Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_intel -Checking test 129 hafs_regional_atm_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_intel +Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 448.402913 - 0: The maximum resident set size (KB) = 713116 + 0: The total amount of wall time = 440.317584 + 0: The maximum resident set size (KB) = 708940 -Test 129 hafs_regional_atm_intel PASS +Test 128 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 130 hafs_regional_atm_thompson_gfdlsf_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 419.088800 - 0: The maximum resident set size (KB) = 1075140 + 0: The total amount of wall time = 426.575343 + 0: The maximum resident set size (KB) = 1076816 -Test 130 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_intel -Checking test 131 hafs_regional_atm_ocn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_intel +Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4635,15 +4651,15 @@ Checking test 131 hafs_regional_atm_ocn_intel 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 = 575.033300 - 0: The maximum resident set size (KB) = 770572 + 0: The total amount of wall time = 554.398133 + 0: The maximum resident set size (KB) = 769104 -Test 131 hafs_regional_atm_ocn_intel PASS +Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_wav_intel -Checking test 132 hafs_regional_atm_wav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_wav_intel +Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4651,15 +4667,15 @@ Checking test 132 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 976.562276 - 0: The maximum resident set size (KB) = 792536 + 0: The total amount of wall time = 980.919386 + 0: The maximum resident set size (KB) = 806804 -Test 132 hafs_regional_atm_wav_intel PASS +Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_atm_ocn_wav_intel -Checking test 133 hafs_regional_atm_ocn_wav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_wav_intel +Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4669,15 +4685,15 @@ Checking test 133 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1078.231692 - 0: The maximum resident set size (KB) = 811952 + 0: The total amount of wall time = 1079.750200 + 0: The maximum resident set size (KB) = 817652 -Test 133 hafs_regional_atm_ocn_wav_intel PASS +Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/gnv1_nested_intel -Checking test 134 gnv1_nested_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_nested_intel +Checking test 133 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4686,186 +4702,186 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 358.577272 - 0: The maximum resident set size (KB) = 767144 + 0: The total amount of wall time = 381.266198 + 0: The maximum resident set size (KB) = 769868 -Test 134 gnv1_nested_intel PASS +Test 133 gnv1_nested_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_intel -Checking test 135 hafs_regional_docn_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_intel +Checking test 134 hafs_regional_docn_intel 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 = 517.975084 - 0: The maximum resident set size (KB) = 764020 + 0: The total amount of wall time = 583.656699 + 0: The maximum resident set size (KB) = 768212 -Test 135 hafs_regional_docn_intel PASS +Test 134 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/hafs_regional_docn_oisst_intel -Checking test 136 hafs_regional_docn_oisst_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_oisst_intel +Checking test 135 hafs_regional_docn_oisst_intel 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 = 510.845201 - 0: The maximum resident set size (KB) = 752572 + 0: The total amount of wall time = 551.298794 + 0: The maximum resident set size (KB) = 750556 -Test 136 hafs_regional_docn_oisst_intel PASS +Test 135 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_intel -Checking test 137 datm_cdeps_control_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_intel +Checking test 136 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.084611 - 0: The maximum resident set size (KB) = 1038208 + 0: The total amount of wall time = 205.916667 + 0: The maximum resident set size (KB) = 1037632 -Test 137 datm_cdeps_control_cfsr_intel PASS +Test 136 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_restart_cfsr_intel -Checking test 138 datm_cdeps_restart_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_restart_cfsr_intel +Checking test 137 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.927646 - 0: The maximum resident set size (KB) = 1008848 + 0: The total amount of wall time = 125.908070 + 0: The maximum resident set size (KB) = 1017344 -Test 138 datm_cdeps_restart_cfsr_intel PASS +Test 137 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_gefs_intel -Checking test 139 datm_cdeps_control_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_gefs_intel +Checking test 138 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.348850 - 0: The maximum resident set size (KB) = 907984 + 0: The total amount of wall time = 200.714077 + 0: The maximum resident set size (KB) = 913544 -Test 139 datm_cdeps_control_gefs_intel PASS +Test 138 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_iau_gefs_intel -Checking test 140 datm_cdeps_iau_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_iau_gefs_intel +Checking test 139 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.087845 - 0: The maximum resident set size (KB) = 912576 + 0: The total amount of wall time = 204.003941 + 0: The maximum resident set size (KB) = 907476 -Test 140 datm_cdeps_iau_gefs_intel PASS +Test 139 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_stochy_gefs_intel -Checking test 141 datm_cdeps_stochy_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_stochy_gefs_intel +Checking test 140 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.808442 - 0: The maximum resident set size (KB) = 911044 + 0: The total amount of wall time = 203.927272 + 0: The maximum resident set size (KB) = 912740 -Test 141 datm_cdeps_stochy_gefs_intel PASS +Test 140 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_ciceC_cfsr_intel -Checking test 142 datm_cdeps_ciceC_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_ciceC_cfsr_intel +Checking test 141 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.940846 - 0: The maximum resident set size (KB) = 1042756 + 0: The total amount of wall time = 207.831267 + 0: The maximum resident set size (KB) = 1036912 -Test 142 datm_cdeps_ciceC_cfsr_intel PASS +Test 141 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_cfsr_intel -Checking test 143 datm_cdeps_bulk_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_cfsr_intel +Checking test 142 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.690824 - 0: The maximum resident set size (KB) = 1033488 + 0: The total amount of wall time = 208.755974 + 0: The maximum resident set size (KB) = 1038776 -Test 143 datm_cdeps_bulk_cfsr_intel PASS +Test 142 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_bulk_gefs_intel -Checking test 144 datm_cdeps_bulk_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_gefs_intel +Checking test 143 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.587131 - 0: The maximum resident set size (KB) = 911468 + 0: The total amount of wall time = 201.449011 + 0: The maximum resident set size (KB) = 911748 -Test 144 datm_cdeps_bulk_gefs_intel PASS +Test 143 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_cfsr_intel -Checking test 145 datm_cdeps_mx025_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_cfsr_intel +Checking test 144 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4873,15 +4889,15 @@ Checking test 145 datm_cdeps_mx025_cfsr_intel 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 = 474.570408 - 0: The maximum resident set size (KB) = 877516 + 0: The total amount of wall time = 479.046727 + 0: The maximum resident set size (KB) = 878704 -Test 145 datm_cdeps_mx025_cfsr_intel PASS +Test 144 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_mx025_gefs_intel -Checking test 146 datm_cdeps_mx025_gefs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_gefs_intel +Checking test 145 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -4889,78 +4905,78 @@ Checking test 146 datm_cdeps_mx025_gefs_intel 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 = 472.764301 - 0: The maximum resident set size (KB) = 829076 + 0: The total amount of wall time = 467.773115 + 0: The maximum resident set size (KB) = 833532 -Test 146 datm_cdeps_mx025_gefs_intel PASS +Test 145 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_multiple_files_cfsr_intel -Checking test 147 datm_cdeps_multiple_files_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_multiple_files_cfsr_intel +Checking test 146 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.967265 - 0: The maximum resident set size (KB) = 1044896 + 0: The total amount of wall time = 206.298024 + 0: The maximum resident set size (KB) = 1039060 -Test 147 datm_cdeps_multiple_files_cfsr_intel PASS +Test 146 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_3072x1536_cfsr_intel -Checking test 148 datm_cdeps_3072x1536_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_3072x1536_cfsr_intel +Checking test 147 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 325.277481 - 0: The maximum resident set size (KB) = 2387176 + 0: The total amount of wall time = 288.865062 + 0: The maximum resident set size (KB) = 2393528 -Test 148 datm_cdeps_3072x1536_cfsr_intel PASS +Test 147 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_gfs_intel -Checking test 149 datm_cdeps_gfs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_gfs_intel +Checking test 148 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 295.452555 - 0: The maximum resident set size (KB) = 2385104 + 0: The total amount of wall time = 326.031952 + 0: The maximum resident set size (KB) = 2400924 -Test 149 datm_cdeps_gfs_intel PASS +Test 148 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_debug_cfsr_intel -Checking test 150 datm_cdeps_debug_cfsr_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_debug_cfsr_intel +Checking test 149 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 473.479611 - 0: The maximum resident set size (KB) = 989492 + 0: The total amount of wall time = 462.707412 + 0: The maximum resident set size (KB) = 983568 -Test 150 datm_cdeps_debug_cfsr_intel PASS +Test 149 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_control_cfsr_faster_intel -Checking test 151 datm_cdeps_control_cfsr_faster_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_faster_intel +Checking test 150 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.070149 - 0: The maximum resident set size (KB) = 1040356 + 0: The total amount of wall time = 205.142029 + 0: The maximum resident set size (KB) = 1034996 -Test 151 datm_cdeps_control_cfsr_faster_intel PASS +Test 150 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_gswp3_intel -Checking test 152 datm_cdeps_lnd_gswp3_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_gswp3_intel +Checking test 151 datm_cdeps_lnd_gswp3_intel 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 @@ -4968,15 +4984,15 @@ Checking test 152 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 83.206067 - 0: The maximum resident set size (KB) = 227632 + 0: The total amount of wall time = 83.281912 + 0: The maximum resident set size (KB) = 229072 -Test 152 datm_cdeps_lnd_gswp3_intel PASS +Test 151 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_intel -Checking test 153 datm_cdeps_lnd_era5_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_intel +Checking test 152 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -4984,15 +5000,15 @@ Checking test 153 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 67.461536 - 0: The maximum resident set size (KB) = 249512 + 0: The total amount of wall time = 78.268524 + 0: The maximum resident set size (KB) = 248892 -Test 153 datm_cdeps_lnd_era5_intel PASS +Test 152 datm_cdeps_lnd_era5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/datm_cdeps_lnd_era5_rst_intel -Checking test 154 datm_cdeps_lnd_era5_rst_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_rst_intel +Checking test 153 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK @@ -5000,15 +5016,15 @@ Checking test 154 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 35.689501 - 0: The maximum resident set size (KB) = 246412 + 0: The total amount of wall time = 47.332999 + 0: The maximum resident set size (KB) = 244912 -Test 154 datm_cdeps_lnd_era5_rst_intel PASS +Test 153 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_sbs_intel -Checking test 155 control_p8_atmlnd_sbs_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_sbs_intel +Checking test 154 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5096,15 +5112,15 @@ Checking test 155 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 673.173633 - 0: The maximum resident set size (KB) = 1575508 + 0: The total amount of wall time = 852.187129 + 0: The maximum resident set size (KB) = 1589464 -Test 155 control_p8_atmlnd_sbs_intel PASS +Test 154 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_p8_atmlnd_intel -Checking test 156 control_p8_atmlnd_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_intel +Checking test 155 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5192,15 +5208,15 @@ Checking test 156 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 678.583389 - 0: The maximum resident set size (KB) = 1593852 + 0: The total amount of wall time = 789.772449 + 0: The maximum resident set size (KB) = 1589472 -Test 156 control_p8_atmlnd_intel PASS +Test 155 control_p8_atmlnd_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_restart_p8_atmlnd_intel -Checking test 157 control_restart_p8_atmlnd_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_atmlnd_intel +Checking test 156 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -5220,15 +5236,15 @@ Checking test 157 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 311.978616 - 0: The maximum resident set size (KB) = 860248 + 0: The total amount of wall time = 331.709767 + 0: The maximum resident set size (KB) = 857560 -Test 157 control_restart_p8_atmlnd_intel PASS +Test 156 control_restart_p8_atmlnd_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmwav_control_noaero_p8_intel -Checking test 158 atmwav_control_noaero_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmwav_control_noaero_p8_intel +Checking test 157 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5270,15 +5286,15 @@ Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 132.181556 - 0: The maximum resident set size (KB) = 1577344 + 0: The total amount of wall time = 126.989919 + 0: The maximum resident set size (KB) = 1591356 -Test 158 atmwav_control_noaero_p8_intel PASS +Test 157 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/control_atmwav_intel -Checking test 159 control_atmwav_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_atmwav_intel +Checking test 158 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5321,15 +5337,15 @@ Checking test 159 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 121.718619 - 0: The maximum resident set size (KB) = 602416 + 0: The total amount of wall time = 125.291813 + 0: The maximum resident set size (KB) = 601844 -Test 159 control_atmwav_intel PASS +Test 158 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_intel -Checking test 160 atmaero_control_p8_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_intel +Checking test 159 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5372,15 +5388,15 @@ Checking test 160 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.460434 - 0: The maximum resident set size (KB) = 1657076 + 0: The total amount of wall time = 332.964639 + 0: The maximum resident set size (KB) = 1687164 -Test 160 atmaero_control_p8_intel PASS +Test 159 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_intel -Checking test 161 atmaero_control_p8_rad_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_intel +Checking test 160 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5423,15 +5439,15 @@ Checking test 161 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.691250 - 0: The maximum resident set size (KB) = 1702356 + 0: The total amount of wall time = 404.525502 + 0: The maximum resident set size (KB) = 1698704 -Test 161 atmaero_control_p8_rad_intel PASS +Test 160 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_133930/atmaero_control_p8_rad_micro_intel -Checking test 162 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_micro_intel +Checking test 161 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5474,89 +5490,12 @@ Checking test 162 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.031312 - 0: The maximum resident set size (KB) = 1711716 - -Test 162 atmaero_control_p8_rad_micro_intel PASS - -Fri Feb 9 16:26:20 UTC 2024 -Start Regression test - -Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile s2swa_32bit_pdlib_debug_intel elapsed time 362 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_73249/cpld_debug_gfsv17_intel -Checking test 001 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1809.368354 - 0: The maximum resident set size (KB) = 1649888 + 0: The total amount of wall time = 424.769735 + 0: The maximum resident set size (KB) = 1722428 -Test 001 cpld_debug_gfsv17_intel PASS +Test 161 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 9 17:38:33 UTC 2024 -Elapsed time: 01h:12m:14s. Have a nice day! +Tue Feb 13 01:18:49 UTC 2024 +Elapsed time: 03h:42m:45s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 97d126f2f7..e0179741c8 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,62 +1,62 @@ -Thu Feb 8 20:42:14 CST 2024 +Tue Feb 13 07:21:08 CST 2024 Start Regression test -Testing UFSWM Hash: ab59359c8e510c1425cb2a984f1cc0cb03434372 +Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/block_atmos_copy_bug) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 642 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 642 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 277 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 837 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 699 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 469 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 374 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 71 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 717 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 829 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 253 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 793 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 748 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 795 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 691 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 763 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 770 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 818 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 883 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1112 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 320 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1183 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 929 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 271 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 854 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 251 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1036 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 722 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 207 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 655 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 314 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 912 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 724 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 805 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 755 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 436 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 424 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 67 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 770 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 898 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 309 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 816 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 841 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 825 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 828 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 835 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 358 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1201 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 335 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1230 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 995 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 289 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1331 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 298.039066 - 0: The maximum resident set size (KB) = 3180508 + 0: The total amount of wall time = 320.137770 + 0: The maximum resident set size (KB) = 3183292 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 974.208501 - 0: The maximum resident set size (KB) = 1707908 + 0: The total amount of wall time = 976.818741 + 0: The maximum resident set size (KB) = 1742672 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1033.016947 - 0: The maximum resident set size (KB) = 2025296 + 0: The total amount of wall time = 1040.753397 + 0: The maximum resident set size (KB) = 2026528 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 472.712040 - 0: The maximum resident set size (KB) = 1111192 + 0: The total amount of wall time = 482.902179 + 0: The maximum resident set size (KB) = 1108260 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1198.694967 - 0: The maximum resident set size (KB) = 1646924 + 0: The total amount of wall time = 1164.770831 + 0: The maximum resident set size (KB) = 1657560 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1361.811780 - 0: The maximum resident set size (KB) = 1685880 + 0: The total amount of wall time = 1374.497143 + 0: The maximum resident set size (KB) = 1690716 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.470748 - 0: The maximum resident set size (KB) = 3216240 + 0: The total amount of wall time = 340.202045 + 0: The maximum resident set size (KB) = 3209212 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.518986 - 0: The maximum resident set size (KB) = 3207432 + 0: The total amount of wall time = 340.271358 + 0: The maximum resident set size (KB) = 3211404 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 189.689573 - 0: The maximum resident set size (KB) = 3256608 + 0: The total amount of wall time = 191.803666 + 0: The maximum resident set size (KB) = 3254740 Test 009 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.245525 - 0: The maximum resident set size (KB) = 3236120 + 0: The total amount of wall time = 340.472232 + 0: The maximum resident set size (KB) = 3242128 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 189.662642 - 0: The maximum resident set size (KB) = 3270020 + 0: The total amount of wall time = 192.945679 + 0: The maximum resident set size (KB) = 3273608 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.962267 - 0: The maximum resident set size (KB) = 3553924 + 0: The total amount of wall time = 372.238535 + 0: The maximum resident set size (KB) = 3556092 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 331.356860 - 0: The maximum resident set size (KB) = 3200692 + 0: The total amount of wall time = 333.537062 + 0: The maximum resident set size (KB) = 3205596 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 271.209812 - 0: The maximum resident set size (KB) = 3065708 + 0: The total amount of wall time = 296.900474 + 0: The maximum resident set size (KB) = 3068824 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.777753 - 0: The maximum resident set size (KB) = 3212436 + 0: The total amount of wall time = 334.226686 + 0: The maximum resident set size (KB) = 3211628 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 588.636094 - 0: The maximum resident set size (KB) = 3339972 + 0: The total amount of wall time = 616.960230 + 0: The maximum resident set size (KB) = 3337716 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 362.148764 - 0: The maximum resident set size (KB) = 3625788 + 0: The total amount of wall time = 365.798148 + 0: The maximum resident set size (KB) = 3621536 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 633.746221 - 0: The maximum resident set size (KB) = 4129220 + 0: The total amount of wall time = 655.426186 + 0: The maximum resident set size (KB) = 4126352 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 379.662269 - 0: The maximum resident set size (KB) = 4373184 + 0: The total amount of wall time = 406.394888 + 0: The maximum resident set size (KB) = 4374104 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 313.134752 - 0: The maximum resident set size (KB) = 3178564 + 0: The total amount of wall time = 318.934259 + 0: The maximum resident set size (KB) = 3174240 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 253.613545 - 0: The maximum resident set size (KB) = 1737436 + 0: The total amount of wall time = 273.590493 + 0: The maximum resident set size (KB) = 1733960 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 251.065952 - 0: The maximum resident set size (KB) = 1780032 + 0: The total amount of wall time = 265.003925 + 0: The maximum resident set size (KB) = 1782116 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 506.121689 - 0: The maximum resident set size (KB) = 3244880 + 0: The total amount of wall time = 517.927542 + 0: The maximum resident set size (KB) = 3245532 Test 023 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.774736 - 0: The maximum resident set size (KB) = 1752380 + 0: The total amount of wall time = 352.849740 + 0: The maximum resident set size (KB) = 1753388 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 248.786187 - 0: The maximum resident set size (KB) = 1782164 + 0: The total amount of wall time = 266.353843 + 0: The maximum resident set size (KB) = 1780576 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel 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 = 473.644494 - 0: The maximum resident set size (KB) = 2830328 + 0: The total amount of wall time = 485.509805 + 0: The maximum resident set size (KB) = 2833696 Test 026 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.542927 - 0: The maximum resident set size (KB) = 3149508 + 0: The total amount of wall time = 315.741561 + 0: The maximum resident set size (KB) = 3210468 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 968.732853 - 0: The maximum resident set size (KB) = 1779372 + 0: The total amount of wall time = 981.770244 + 0: The maximum resident set size (KB) = 1771984 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 470.943603 - 0: The maximum resident set size (KB) = 1175700 + 0: The total amount of wall time = 503.765702 + 0: The maximum resident set size (KB) = 1164720 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1093.114881 - 0: The maximum resident set size (KB) = 1683132 + 0: The total amount of wall time = 1094.704687 + 0: The maximum resident set size (KB) = 1679976 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1481.760940 - 0: The maximum resident set size (KB) = 1719788 + 0: The total amount of wall time = 1489.069965 + 0: The maximum resident set size (KB) = 1720612 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.951444 - 0: The maximum resident set size (KB) = 702668 + 0: The total amount of wall time = 206.006941 + 0: The maximum resident set size (KB) = 703636 Test 032 control_flake_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2080,16 +2080,16 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 137.507904 - 0: The maximum resident set size (KB) = 648040 + 0: The total amount of wall time = 141.920380 + 0: The maximum resident set size (KB) = 647620 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 142.481581 - 0: The maximum resident set size (KB) = 659324 + 0: The total amount of wall time = 148.580511 + 0: The maximum resident set size (KB) = 650364 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.508980 - 0: The maximum resident set size (KB) = 653252 + 0: The total amount of wall time = 143.877974 + 0: The maximum resident set size (KB) = 648308 Test 035 control_latlon_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.276714 - 0: The maximum resident set size (KB) = 651556 + 0: The total amount of wall time = 146.092259 + 0: The maximum resident set size (KB) = 648664 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 349.676307 -0: The maximum resident set size (KB) = 872904 +0: The total amount of wall time = 353.688719 +0: The maximum resident set size (KB) = 876488 Test 037 control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c48.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 351.353319 -0: The maximum resident set size (KB) = 871584 +0: The total amount of wall time = 355.015281 +0: The maximum resident set size (KB) = 871244 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 532.084365 - 0: The maximum resident set size (KB) = 859228 + 0: The total amount of wall time = 544.880487 + 0: The maximum resident set size (KB) = 852544 Test 039 control_c192_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 588.229208 - 0: The maximum resident set size (KB) = 1248720 + 0: The total amount of wall time = 601.418782 + 0: The maximum resident set size (KB) = 1242232 Test 040 control_c384_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2287,11 +2287,11 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK @@ -2304,7 +2304,7 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 520.652450 - 0: The maximum resident set size (KB) = 1351476 + 0: The total amount of wall time = 542.340370 + 0: The maximum resident set size (KB) = 1354860 Test 041 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 92.381567 - 0: The maximum resident set size (KB) = 611964 + 0: The total amount of wall time = 95.657819 + 0: The maximum resident set size (KB) = 658584 Test 042 control_stochy_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.715170 - 0: The maximum resident set size (KB) = 498604 + 0: The total amount of wall time = 52.409910 + 0: The maximum resident set size (KB) = 506568 Test 043 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.076985 - 0: The maximum resident set size (KB) = 653536 + 0: The total amount of wall time = 91.197690 + 0: The maximum resident set size (KB) = 649152 Test 044 control_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr4_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.463585 - 0: The maximum resident set size (KB) = 649000 + 0: The total amount of wall time = 144.944760 + 0: The maximum resident set size (KB) = 653948 Test 045 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_iovr5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.284260 - 0: The maximum resident set size (KB) = 607556 + 0: The total amount of wall time = 144.120040 + 0: The maximum resident set size (KB) = 654868 Test 046 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.341566 - 0: The maximum resident set size (KB) = 1628468 + 0: The total amount of wall time = 175.744714 + 0: The maximum resident set size (KB) = 1634244 Test 047 control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.321609 - 0: The maximum resident set size (KB) = 1622200 + 0: The total amount of wall time = 168.258009 + 0: The maximum resident set size (KB) = 1633372 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_ugwpv1_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.965089 - 0: The maximum resident set size (KB) = 1629200 + 0: The total amount of wall time = 164.634120 + 0: The maximum resident set size (KB) = 1637332 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 89.950962 - 0: The maximum resident set size (KB) = 883044 + 0: The total amount of wall time = 93.817179 + 0: The maximum resident set size (KB) = 887880 Test 050 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_noqr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 161.231247 - 0: The maximum resident set size (KB) = 1619460 + 0: The total amount of wall time = 168.838200 + 0: The maximum resident set size (KB) = 1609924 Test 051 control_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_noqr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 87.343937 - 0: The maximum resident set size (KB) = 927724 + 0: The total amount of wall time = 88.086273 + 0: The maximum resident set size (KB) = 930232 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 169.811067 - 0: The maximum resident set size (KB) = 1613156 + 0: The total amount of wall time = 171.440079 + 0: The maximum resident set size (KB) = 1613048 Test 053 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 172.276249 - 0: The maximum resident set size (KB) = 1718744 + 0: The total amount of wall time = 173.265497 + 0: The maximum resident set size (KB) = 1722552 Test 054 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 301.114908 - 0: The maximum resident set size (KB) = 1632856 + 0: The total amount of wall time = 304.616880 + 0: The maximum resident set size (KB) = 1632628 Test 055 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.499107 - 0: The maximum resident set size (KB) = 1695336 + 0: The total amount of wall time = 226.478061 + 0: The maximum resident set size (KB) = 1691784 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_mynn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.365276 - 0: The maximum resident set size (KB) = 1640496 + 0: The total amount of wall time = 169.165263 + 0: The maximum resident set size (KB) = 1636764 Test 057 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/merra2_thompson_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.201113 - 0: The maximum resident set size (KB) = 1587404 + 0: The total amount of wall time = 198.388047 + 0: The maximum resident set size (KB) = 1640672 Test 058 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.753692 - 0: The maximum resident set size (KB) = 858388 + 0: The total amount of wall time = 300.787254 + 0: The maximum resident set size (KB) = 856192 Test 059 regional_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 155.165825 - 0: The maximum resident set size (KB) = 1019736 + 0: The total amount of wall time = 154.257351 + 0: The maximum resident set size (KB) = 1021732 Test 060 regional_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 320.184600 - 0: The maximum resident set size (KB) = 850756 + 0: The total amount of wall time = 322.155953 + 0: The maximum resident set size (KB) = 846760 Test 061 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 210.835261 - 0: The maximum resident set size (KB) = 842908 + 0: The total amount of wall time = 210.109307 + 0: The maximum resident set size (KB) = 843420 Test 062 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_noquilt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel 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 = 296.817520 - 0: The maximum resident set size (KB) = 1363148 + 0: The total amount of wall time = 296.505225 + 0: The maximum resident set size (KB) = 1360944 Test 063 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 297.601989 - 0: The maximum resident set size (KB) = 856792 + 0: The total amount of wall time = 301.588209 + 0: The maximum resident set size (KB) = 856660 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.924365 - 0: The maximum resident set size (KB) = 855880 + 0: The total amount of wall time = 301.572668 + 0: The maximum resident set size (KB) = 855720 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_wofs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 389.207388 - 0: The maximum resident set size (KB) = 1918760 + 0: The total amount of wall time = 388.610672 + 0: The maximum resident set size (KB) = 1921536 Test 066 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 453.938262 - 0: The maximum resident set size (KB) = 1111596 + 0: The total amount of wall time = 455.002541 + 0: The maximum resident set size (KB) = 1101696 Test 067 rap_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 268.822382 - 0: The maximum resident set size (KB) = 1297596 + 0: The total amount of wall time = 278.679811 + 0: The maximum resident set size (KB) = 1295948 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.155583 - 0: The maximum resident set size (KB) = 1030756 + 0: The total amount of wall time = 475.513808 + 0: The maximum resident set size (KB) = 1031808 Test 069 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.476521 - 0: The maximum resident set size (KB) = 1126444 + 0: The total amount of wall time = 463.205573 + 0: The maximum resident set size (KB) = 1181644 Test 070 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.910373 - 0: The maximum resident set size (KB) = 1100572 + 0: The total amount of wall time = 231.790556 + 0: The maximum resident set size (KB) = 1101304 Test 071 rap_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 454.695009 - 0: The maximum resident set size (KB) = 1097788 + 0: The total amount of wall time = 449.987491 + 0: The maximum resident set size (KB) = 1098676 Test 072 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.455282 - 0: The maximum resident set size (KB) = 1032772 + 0: The total amount of wall time = 476.195657 + 0: The maximum resident set size (KB) = 1035948 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.819157 - 0: The maximum resident set size (KB) = 1131732 + 0: The total amount of wall time = 340.521897 + 0: The maximum resident set size (KB) = 1136416 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.512688 - 0: The maximum resident set size (KB) = 1042128 + 0: The total amount of wall time = 228.874974 + 0: The maximum resident set size (KB) = 1031240 Test 075 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.069047 - 0: The maximum resident set size (KB) = 1029972 + 0: The total amount of wall time = 234.722682 + 0: The maximum resident set size (KB) = 1025744 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.390324 - 0: The maximum resident set size (KB) = 1111352 + 0: The total amount of wall time = 196.696297 + 0: The maximum resident set size (KB) = 1108096 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.323650 - 0: The maximum resident set size (KB) = 994316 + 0: The total amount of wall time = 120.963484 + 0: The maximum resident set size (KB) = 1000016 Test 078 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.055273 - 0: The maximum resident set size (KB) = 1099736 + 0: The total amount of wall time = 445.826785 + 0: The maximum resident set size (KB) = 1104644 Test 079 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 537.188206 - 0: The maximum resident set size (KB) = 1998200 + 0: The total amount of wall time = 540.880889 + 0: The maximum resident set size (KB) = 1996392 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 523.547397 - 0: The maximum resident set size (KB) = 2076828 + 0: The total amount of wall time = 524.891853 + 0: The maximum resident set size (KB) = 2074640 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.210791 - 0: The maximum resident set size (KB) = 748176 + 0: The total amount of wall time = 347.602505 + 0: The maximum resident set size (KB) = 750596 Test 082 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.619819 - 0: The maximum resident set size (KB) = 752644 + 0: The total amount of wall time = 340.345273 + 0: The maximum resident set size (KB) = 749620 Test 083 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.382452 - 0: The maximum resident set size (KB) = 745756 + 0: The total amount of wall time = 186.574288 + 0: The maximum resident set size (KB) = 739860 Test 084 control_ras_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.957087 - 0: The maximum resident set size (KB) = 658120 + 0: The total amount of wall time = 114.072251 + 0: The maximum resident set size (KB) = 656612 Test 085 control_wam_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.301351 - 0: The maximum resident set size (KB) = 1627188 + 0: The total amount of wall time = 151.246167 + 0: The maximum resident set size (KB) = 1632840 Test 086 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_control_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.713383 - 0: The maximum resident set size (KB) = 852856 + 0: The total amount of wall time = 270.600584 + 0: The maximum resident set size (KB) = 850360 Test 087 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 150.846461 - 0: The maximum resident set size (KB) = 811668 + 0: The total amount of wall time = 158.781980 + 0: The maximum resident set size (KB) = 817936 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.169795 - 0: The maximum resident set size (KB) = 808568 + 0: The total amount of wall time = 147.984889 + 0: The maximum resident set size (KB) = 813672 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_stochy_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.626201 - 0: The maximum resident set size (KB) = 819012 + 0: The total amount of wall time = 184.036182 + 0: The maximum resident set size (KB) = 812488 Test 090 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.965746 - 0: The maximum resident set size (KB) = 814880 + 0: The total amount of wall time = 162.001549 + 0: The maximum resident set size (KB) = 816176 Test 091 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.999053 - 0: The maximum resident set size (KB) = 861204 + 0: The total amount of wall time = 238.795480 + 0: The maximum resident set size (KB) = 866976 Test 092 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel 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.143428 - 0: The maximum resident set size (KB) = 860500 + 0: The total amount of wall time = 235.943895 + 0: The maximum resident set size (KB) = 864720 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_ras_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_debug_intel Checking test 094 control_ras_debug_intel 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.371620 - 0: The maximum resident set size (KB) = 828748 + 0: The total amount of wall time = 160.796367 + 0: The maximum resident set size (KB) = 827464 Test 094 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.278820 - 0: The maximum resident set size (KB) = 872912 + 0: The total amount of wall time = 161.813592 + 0: The maximum resident set size (KB) = 874568 Test 095 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.552670 - 0: The maximum resident set size (KB) = 1640284 + 0: The total amount of wall time = 163.643867 + 0: The maximum resident set size (KB) = 1639572 Test 096 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1036.579759 - 0: The maximum resident set size (KB) = 841848 + 0: The total amount of wall time = 997.857687 + 0: The maximum resident set size (KB) = 842436 Test 097 regional_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_intel Checking test 098 rap_control_debug_intel 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.558769 - 0: The maximum resident set size (KB) = 1153520 + 0: The total amount of wall time = 278.848999 + 0: The maximum resident set size (KB) = 1200748 Test 098 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.604177 - 0: The maximum resident set size (KB) = 1199992 + 0: The total amount of wall time = 281.894333 + 0: The maximum resident set size (KB) = 1205652 Test 099 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_gf_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel 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.610181 - 0: The maximum resident set size (KB) = 1199800 + 0: The total amount of wall time = 283.903194 + 0: The maximum resident set size (KB) = 1200536 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_c3_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 295.630034 - 0: The maximum resident set size (KB) = 1198752 + 0: The total amount of wall time = 280.577737 + 0: The maximum resident set size (KB) = 1197872 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel 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.199762 - 0: The maximum resident set size (KB) = 1201536 + 0: The total amount of wall time = 298.876541 + 0: The maximum resident set size (KB) = 1203680 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.768250 - 0: The maximum resident set size (KB) = 1289956 + 0: The total amount of wall time = 302.671210 + 0: The maximum resident set size (KB) = 1284240 Test 103 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel 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.747602 - 0: The maximum resident set size (KB) = 1201172 + 0: The total amount of wall time = 293.559141 + 0: The maximum resident set size (KB) = 1202408 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.835579 - 0: The maximum resident set size (KB) = 1208392 + 0: The total amount of wall time = 296.039251 + 0: The maximum resident set size (KB) = 1210684 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.920296 - 0: The maximum resident set size (KB) = 1203996 + 0: The total amount of wall time = 291.733280 + 0: The maximum resident set size (KB) = 1203416 Test 106 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.579174 - 0: The maximum resident set size (KB) = 1201056 + 0: The total amount of wall time = 285.473001 + 0: The maximum resident set size (KB) = 1203888 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.949188 - 0: The maximum resident set size (KB) = 1200044 + 0: The total amount of wall time = 281.147913 + 0: The maximum resident set size (KB) = 1194952 Test 108 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.488081 - 0: The maximum resident set size (KB) = 1201356 + 0: The total amount of wall time = 288.344693 + 0: The maximum resident set size (KB) = 1201816 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 466.038447 - 0: The maximum resident set size (KB) = 1196428 + 0: The total amount of wall time = 471.073616 + 0: The maximum resident set size (KB) = 1198576 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel 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.294814 - 0: The maximum resident set size (KB) = 1206368 + 0: The total amount of wall time = 276.476746 + 0: The maximum resident set size (KB) = 1195068 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.228323 - 0: The maximum resident set size (KB) = 1196484 + 0: The total amount of wall time = 337.077867 + 0: The maximum resident set size (KB) = 1203376 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_flake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.990390 - 0: The maximum resident set size (KB) = 1202476 + 0: The total amount of wall time = 288.719924 + 0: The maximum resident set size (KB) = 1202444 Test 113 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_c96_no_nest_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 489.100602 - 0: The maximum resident set size (KB) = 1202292 + 0: The total amount of wall time = 483.587321 + 0: The maximum resident set size (KB) = 1199812 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_wam_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 284.310012 - 0: The maximum resident set size (KB) = 507392 + 0: The total amount of wall time = 291.105171 + 0: The maximum resident set size (KB) = 505868 Test 115 control_wam_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 255.848043 - 0: The maximum resident set size (KB) = 1161604 + 0: The total amount of wall time = 259.393839 + 0: The maximum resident set size (KB) = 1167240 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.940363 - 0: The maximum resident set size (KB) = 1047788 + 0: The total amount of wall time = 378.838074 + 0: The maximum resident set size (KB) = 1049032 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.975014 - 0: The maximum resident set size (KB) = 981060 + 0: The total amount of wall time = 193.249031 + 0: The maximum resident set size (KB) = 993904 Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.181370 - 0: The maximum resident set size (KB) = 1094564 + 0: The total amount of wall time = 397.779542 + 0: The maximum resident set size (KB) = 1086992 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.479975 - 0: The maximum resident set size (KB) = 973336 + 0: The total amount of wall time = 168.259225 + 0: The maximum resident set size (KB) = 965660 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.518108 - 0: The maximum resident set size (KB) = 865300 + 0: The total amount of wall time = 211.174262 + 0: The maximum resident set size (KB) = 936728 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.216252 - 0: The maximum resident set size (KB) = 1033560 + 0: The total amount of wall time = 278.525637 + 0: The maximum resident set size (KB) = 1037772 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.979892 - 0: The maximum resident set size (KB) = 926932 + 0: The total amount of wall time = 102.169043 + 0: The maximum resident set size (KB) = 923184 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.700529 - 0: The maximum resident set size (KB) = 1201792 + 0: The total amount of wall time = 114.477522 + 0: The maximum resident set size (KB) = 1202640 Test 124 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 51.162391 - 0: The maximum resident set size (KB) = 1121880 + 0: The total amount of wall time = 50.636063 + 0: The maximum resident set size (KB) = 1121968 Test 125 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 66.102676 - 0: The maximum resident set size (KB) = 1111472 + 0: The total amount of wall time = 68.473048 + 0: The maximum resident set size (KB) = 1064972 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.297127 - 0: The maximum resident set size (KB) = 989120 + 0: The total amount of wall time = 245.460714 + 0: The maximum resident set size (KB) = 995000 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.346323 - 0: The maximum resident set size (KB) = 1082752 + 0: The total amount of wall time = 277.674209 + 0: The maximum resident set size (KB) = 1084072 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel 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.529476 - 0: The maximum resident set size (KB) = 1079384 + 0: The total amount of wall time = 274.174193 + 0: The maximum resident set size (KB) = 1084692 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 875.303385 - 0: The maximum resident set size (KB) = 1234548 + 0: The total amount of wall time = 858.046640 + 0: The maximum resident set size (KB) = 1228476 Test 130 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 868.324797 - 0: The maximum resident set size (KB) = 926388 + 0: The total amount of wall time = 886.257909 + 0: The maximum resident set size (KB) = 923892 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 492.495900 - 0: The maximum resident set size (KB) = 1148948 + 0: The total amount of wall time = 487.724543 + 0: The maximum resident set size (KB) = 1153664 Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 832.899060 - 0: The maximum resident set size (KB) = 1296112 + 0: The total amount of wall time = 880.303019 + 0: The maximum resident set size (KB) = 1293376 Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel 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.662530 - 0: The maximum resident set size (KB) = 1121028 + 0: The total amount of wall time = 291.813123 + 0: The maximum resident set size (KB) = 1117312 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 314.283442 - 0: The maximum resident set size (KB) = 742852 + 0: The total amount of wall time = 326.815762 + 0: The maximum resident set size (KB) = 739728 Test 135 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 339.148588 - 0: The maximum resident set size (KB) = 1113460 + 0: The total amount of wall time = 351.147113 + 0: The maximum resident set size (KB) = 1119708 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel 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 = 401.732275 - 0: The maximum resident set size (KB) = 835864 + 0: The total amount of wall time = 412.286472 + 0: The maximum resident set size (KB) = 828212 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 754.920080 - 0: The maximum resident set size (KB) = 866088 + 0: The total amount of wall time = 772.792483 + 0: The maximum resident set size (KB) = 863476 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 853.792262 - 0: The maximum resident set size (KB) = 880624 + 0: The total amount of wall time = 864.136423 + 0: The maximum resident set size (KB) = 886000 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 354.089585 - 0: The maximum resident set size (KB) = 499096 + 0: The total amount of wall time = 371.077882 + 0: The maximum resident set size (KB) = 500792 Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 431.798671 - 0: The maximum resident set size (KB) = 469484 + 0: The total amount of wall time = 442.028429 + 0: The maximum resident set size (KB) = 521768 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5080,14 +5080,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5096,30 +5096,30 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 177.637872 - 0: The maximum resident set size (KB) = 376032 + 0: The total amount of wall time = 184.650281 + 0: The maximum resident set size (KB) = 370728 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5157,17 +5157,17 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK @@ -5178,13 +5178,13 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 460.683556 - 0: The maximum resident set size (KB) = 473856 + 0: The total amount of wall time = 473.950464 + 0: The maximum resident set size (KB) = 467056 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 235.175327 - 0: The maximum resident set size (KB) = 532640 + 0: The total amount of wall time = 243.959253 + 0: The maximum resident set size (KB) = 532552 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 223.996179 - 0: The maximum resident set size (KB) = 532276 + 0: The total amount of wall time = 230.519592 + 0: The maximum resident set size (KB) = 531148 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5262,28 +5262,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 304.287952 - 0: The maximum resident set size (KB) = 589116 + 0: The total amount of wall time = 318.111875 + 0: The maximum resident set size (KB) = 594608 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 76.659948 - 0: The maximum resident set size (KB) = 405384 + 0: The total amount of wall time = 73.974122 + 0: The maximum resident set size (KB) = 405436 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/gnv1_nested_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/gnv1_nested_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5294,7 +5294,7 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK @@ -5305,7 +5305,7 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5320,7 +5320,7 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5330,28 +5330,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 256.205309 - 0: The maximum resident set size (KB) = 805832 + 0: The total amount of wall time = 265.992543 + 0: The maximum resident set size (KB) = 809036 -Test 148 gnv1_nested_intel PASS +Test 148 gnv1_nested_intel PASS Tries: 2 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 771.111837 - 0: The maximum resident set size (KB) = 572380 + 0: The total amount of wall time = 791.890844 + 0: The maximum resident set size (KB) = 578968 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 554.352393 - 0: The maximum resident set size (KB) = 673184 + 0: The total amount of wall time = 574.391096 + 0: The maximum resident set size (KB) = 676728 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 567.324064 - 0: The maximum resident set size (KB) = 747672 + 0: The total amount of wall time = 567.054858 + 0: The maximum resident set size (KB) = 711308 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 399.997019 - 0: The maximum resident set size (KB) = 728868 + 0: The total amount of wall time = 414.011432 + 0: The maximum resident set size (KB) = 731488 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel 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 = 365.553306 - 0: The maximum resident set size (KB) = 826820 + 0: The total amount of wall time = 377.463284 + 0: The maximum resident set size (KB) = 830280 Test 153 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel 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 = 367.249025 - 0: The maximum resident set size (KB) = 816728 + 0: The total amount of wall time = 375.348019 + 0: The maximum resident set size (KB) = 817940 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 943.886495 - 0: The maximum resident set size (KB) = 1208780 + 0: The total amount of wall time = 961.509856 + 0: The maximum resident set size (KB) = 1211824 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.008567 - 0: The maximum resident set size (KB) = 1109144 + 0: The total amount of wall time = 155.659234 + 0: The maximum resident set size (KB) = 1100676 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 88.554449 - 0: The maximum resident set size (KB) = 1082632 + 0: The total amount of wall time = 94.960814 + 0: The maximum resident set size (KB) = 1088100 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.543241 - 0: The maximum resident set size (KB) = 1016124 + 0: The total amount of wall time = 144.088906 + 0: The maximum resident set size (KB) = 1011320 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.871812 - 0: The maximum resident set size (KB) = 1011232 + 0: The total amount of wall time = 150.868252 + 0: The maximum resident set size (KB) = 1008800 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.578206 - 0: The maximum resident set size (KB) = 1016564 + 0: The total amount of wall time = 148.832993 + 0: The maximum resident set size (KB) = 1020416 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.171922 - 0: The maximum resident set size (KB) = 1127752 + 0: The total amount of wall time = 149.837693 + 0: The maximum resident set size (KB) = 1144264 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.382170 - 0: The maximum resident set size (KB) = 1133640 + 0: The total amount of wall time = 152.743569 + 0: The maximum resident set size (KB) = 1139092 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.306499 - 0: The maximum resident set size (KB) = 1010588 + 0: The total amount of wall time = 144.103990 + 0: The maximum resident set size (KB) = 1014016 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel 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 = 340.697052 - 0: The maximum resident set size (KB) = 1055112 + 0: The total amount of wall time = 348.519925 + 0: The maximum resident set size (KB) = 1060008 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 339.187984 - 0: The maximum resident set size (KB) = 1036108 + 0: The total amount of wall time = 338.533738 + 0: The maximum resident set size (KB) = 1046004 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.430726 - 0: The maximum resident set size (KB) = 1117572 + 0: The total amount of wall time = 147.239029 + 0: The maximum resident set size (KB) = 1128924 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.192992 - 0: The maximum resident set size (KB) = 2447380 + 0: The total amount of wall time = 216.424833 + 0: The maximum resident set size (KB) = 2452904 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 206.172268 - 0: The maximum resident set size (KB) = 2485264 + 0: The total amount of wall time = 208.716914 + 0: The maximum resident set size (KB) = 2491112 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 366.503827 - 0: The maximum resident set size (KB) = 1060856 + 0: The total amount of wall time = 372.658357 + 0: The maximum resident set size (KB) = 1073980 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.160580 - 0: The maximum resident set size (KB) = 1136836 + 0: The total amount of wall time = 150.238847 + 0: The maximum resident set size (KB) = 1117860 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 37.960240 - 0: The maximum resident set size (KB) = 231004 + 0: The total amount of wall time = 42.544200 + 0: The maximum resident set size (KB) = 258140 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 39.319878 - 0: The maximum resident set size (KB) = 325604 + 0: The total amount of wall time = 44.188053 + 0: The maximum resident set size (KB) = 319844 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/datm_cdeps_lnd_era5_rst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 22.124823 - 0: The maximum resident set size (KB) = 319916 + 0: The total amount of wall time = 26.864296 + 0: The maximum resident set size (KB) = 324004 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 242.730129 - 0: The maximum resident set size (KB) = 1610668 + 0: The total amount of wall time = 248.860392 + 0: The maximum resident set size (KB) = 1610064 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_p8_atmlnd_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 241.495057 - 0: The maximum resident set size (KB) = 1611060 + 0: The total amount of wall time = 248.172545 + 0: The maximum resident set size (KB) = 1601908 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_restart_p8_atmlnd_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 125.538764 - 0: The maximum resident set size (KB) = 900192 + 0: The total amount of wall time = 128.325973 + 0: The maximum resident set size (KB) = 905048 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 93.465656 - 0: The maximum resident set size (KB) = 1665080 + 0: The total amount of wall time = 96.368620 + 0: The maximum resident set size (KB) = 1662076 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/control_atmwav_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/control_atmwav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 88.695176 - 0: The maximum resident set size (KB) = 671484 + 0: The total amount of wall time = 94.819646 + 0: The maximum resident set size (KB) = 675536 Test 178 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.067385 - 0: The maximum resident set size (KB) = 3023484 + 0: The total amount of wall time = 227.627200 + 0: The maximum resident set size (KB) = 3027264 Test 179 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 274.634783 - 0: The maximum resident set size (KB) = 3086836 + 0: The total amount of wall time = 278.310815 + 0: The maximum resident set size (KB) = 3090976 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 293.587906 - 0: The maximum resident set size (KB) = 3105680 + 0: The total amount of wall time = 301.730404 + 0: The maximum resident set size (KB) = 3109836 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_288764/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6182,12 +6182,12 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1234.349031 - 0: The maximum resident set size (KB) = 4578348 + 0: The total amount of wall time = 1275.399529 + 0: The maximum resident set size (KB) = 4574848 Test 182 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 8 22:09:31 CST 2024 -Elapsed time: 01h:27m:19s. Have a nice day! +Tue Feb 13 08:55:49 CST 2024 +Elapsed time: 01h:34m:42s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 8e62724435..acadb652df 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,54 +1,54 @@ -Fri Feb 9 18:49:33 UTC 2024 +Tue Feb 13 14:08:04 UTC 2024 Start Regression test -Testing UFSWM Hash: 5f6e4f02a0c2d917f7f0b1cb9aec86fdf4114f18 +Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - c082c3b31b78af05ccd76ccbf44d62798271b40f FV3 (remotes/origin/HEAD-2-gc082c3b) + 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (remotes/origin/HEAD) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 1094 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 717 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 1135 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 1002 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 784 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 1561 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 704 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 989 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 485 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1060 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 1237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 937 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 1258 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1191 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 662 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 1401 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 686 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1712 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 664 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 694 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 911 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 662 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 351 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 986 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 574 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 1139 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 821 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 1184 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 828 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 920 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 950 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 1275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 898 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 682 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 859 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1263 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 950 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1926 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 649 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 614 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 675 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1085 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 322.520334 -The maximum resident set size (KB) = 2973440 +The total amount of wall time = 331.863056 +The maximum resident set size (KB) = 2979448 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 914.666202 -The maximum resident set size (KB) = 1592256 +The total amount of wall time = 930.280986 +The maximum resident set size (KB) = 1592472 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 991.256489 -The maximum resident set size (KB) = 1708572 +The total amount of wall time = 988.600915 +The maximum resident set size (KB) = 1709036 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 464.757647 -The maximum resident set size (KB) = 844528 +The total amount of wall time = 511.775827 +The maximum resident set size (KB) = 844884 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1059.436174 -The maximum resident set size (KB) = 1573448 +The total amount of wall time = 1058.114943 +The maximum resident set size (KB) = 1574192 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1515.127358 -The maximum resident set size (KB) = 1600216 +The total amount of wall time = 1434.523120 +The maximum resident set size (KB) = 1600708 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.904993 -The maximum resident set size (KB) = 3000620 +The total amount of wall time = 366.520247 +The maximum resident set size (KB) = 3004848 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.267854 -The maximum resident set size (KB) = 3002416 +The total amount of wall time = 374.641217 +The maximum resident set size (KB) = 3004676 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.605702 -The maximum resident set size (KB) = 3062020 +The total amount of wall time = 220.776679 +The maximum resident set size (KB) = 3061304 Test 009 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -703,14 +703,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 370.857200 -The maximum resident set size (KB) = 3028020 +The total amount of wall time = 373.110410 +The maximum resident set size (KB) = 3030140 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -763,14 +763,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 221.730298 -The maximum resident set size (KB) = 3081584 +The total amount of wall time = 223.330382 +The maximum resident set size (KB) = 3081576 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -823,14 +823,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 327.901205 -The maximum resident set size (KB) = 3316928 +The total amount of wall time = 328.492173 +The maximum resident set size (KB) = 3314268 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -883,14 +883,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 359.508303 -The maximum resident set size (KB) = 3003756 +The total amount of wall time = 364.404786 +The maximum resident set size (KB) = 3000836 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -943,14 +943,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 302.502625 -The maximum resident set size (KB) = 2932636 +The total amount of wall time = 311.264276 +The maximum resident set size (KB) = 2924920 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.242732 -The maximum resident set size (KB) = 3004700 +The total amount of wall time = 372.575156 +The maximum resident set size (KB) = 3001148 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_bmark_p8_intel Checking test 016 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 754.501015 -The maximum resident set size (KB) = 3951440 +The total amount of wall time = 756.229756 +The maximum resident set size (KB) = 3952788 Test 016 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_bmark_p8_intel Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1125,14 +1125,14 @@ Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 532.803589 -The maximum resident set size (KB) = 4250580 +The total amount of wall time = 535.396418 +The maximum resident set size (KB) = 4245336 Test 017 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_s2sa_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_s2sa_p8_intel Checking test 018 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1183,14 +1183,14 @@ Checking test 018 cpld_s2sa_p8_intel 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 = 343.549757 -The maximum resident set size (KB) = 2966836 +The total amount of wall time = 345.947134 +The maximum resident set size (KB) = 2968192 Test 018 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_intel Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1254,14 +1254,14 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 270.560051 -The maximum resident set size (KB) = 1590600 +The total amount of wall time = 275.784359 +The maximum resident set size (KB) = 1584180 Test 019 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_nowave_noaero_p8_intel Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel 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 = 276.938146 -The maximum resident set size (KB) = 1637508 +The total amount of wall time = 281.338276 +The maximum resident set size (KB) = 1633792 Test 020 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1392,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 276.697595 -The maximum resident set size (KB) = 1631212 +The total amount of wall time = 278.570462 +The maximum resident set size (KB) = 1633692 Test 021 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_c48_intel 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 = 406.835402 -The maximum resident set size (KB) = 2652116 +The total amount of wall time = 407.756080 +The maximum resident set size (KB) = 2645008 Test 022 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_faster_intel Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 023 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.128198 -The maximum resident set size (KB) = 3001136 +The total amount of wall time = 358.611900 +The maximum resident set size (KB) = 3002248 Test 023 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 928.152759 -The maximum resident set size (KB) = 1596972 +The total amount of wall time = 931.577332 +The maximum resident set size (KB) = 1596928 Test 024 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 471.260902 -The maximum resident set size (KB) = 899872 +The total amount of wall time = 472.299588 +The maximum resident set size (KB) = 896532 Test 025 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1722,14 +1722,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1088.789497 -The maximum resident set size (KB) = 1582900 +The total amount of wall time = 1086.726641 +The maximum resident set size (KB) = 1572716 Test 026 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1781,14 +1781,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1490.451653 -The maximum resident set size (KB) = 1612276 +The total amount of wall time = 1502.550695 +The maximum resident set size (KB) = 1617084 Test 027 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 216.225908 -The maximum resident set size (KB) = 571624 +The total amount of wall time = 213.407031 +The maximum resident set size (KB) = 573496 Test 028 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.436920 -The maximum resident set size (KB) = 521400 +The total amount of wall time = 133.640254 +The maximum resident set size (KB) = 523944 Test 029 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1855,14 +1855,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.390134 -The maximum resident set size (KB) = 529644 +The total amount of wall time = 139.287643 +The maximum resident set size (KB) = 527888 Test 030 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1873,14 +1873,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.200576 -The maximum resident set size (KB) = 524080 +The total amount of wall time = 133.985086 +The maximum resident set size (KB) = 523464 Test 031 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1891,14 +1891,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.766651 -The maximum resident set size (KB) = 527260 +The total amount of wall time = 135.308739 +The maximum resident set size (KB) = 523760 Test 032 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1937,14 +1937,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.252663 -The maximum resident set size (KB) = 714792 +The total amount of wall time = 330.959389 +The maximum resident set size (KB) = 718740 Test 033 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c48.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 328.447199 -The maximum resident set size (KB) = 714848 +The total amount of wall time = 327.277723 +The maximum resident set size (KB) = 714672 Test 034 control_c48.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 531.480779 -The maximum resident set size (KB) = 641900 +The total amount of wall time = 529.573246 +The maximum resident set size (KB) = 638152 Test 035 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2019,14 +2019,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 593.703739 -The maximum resident set size (KB) = 951744 +The total amount of wall time = 599.185011 +The maximum resident set size (KB) = 949244 Test 036 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 540.443723 -The maximum resident set size (KB) = 1089544 +The total amount of wall time = 532.690549 +The maximum resident set size (KB) = 1093316 Test 037 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2087,28 +2087,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.547314 -The maximum resident set size (KB) = 530868 +The total amount of wall time = 89.197198 +The maximum resident set size (KB) = 532184 Test 038 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 51.517874 -The maximum resident set size (KB) = 334608 +The total amount of wall time = 50.901170 +The maximum resident set size (KB) = 327960 Test 039 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2119,14 +2119,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.426827 -The maximum resident set size (KB) = 526640 +The total amount of wall time = 86.524647 +The maximum resident set size (KB) = 528408 Test 040 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.530199 -The maximum resident set size (KB) = 521924 +The total amount of wall time = 134.482418 +The maximum resident set size (KB) = 523260 Test 041 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2163,14 +2163,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.886238 -The maximum resident set size (KB) = 521952 +The total amount of wall time = 135.336665 +The maximum resident set size (KB) = 526612 Test 042 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2217,14 +2217,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.588120 -The maximum resident set size (KB) = 1498668 +The total amount of wall time = 166.203829 +The maximum resident set size (KB) = 1502800 Test 043 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2271,14 +2271,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.049069 -The maximum resident set size (KB) = 1511836 +The total amount of wall time = 167.847954 +The maximum resident set size (KB) = 1507972 Test 044 control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_ugwpv1_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2325,14 +2325,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.710332 -The maximum resident set size (KB) = 1511136 +The total amount of wall time = 161.687212 +The maximum resident set size (KB) = 1495372 Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2371,14 +2371,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 90.698693 -The maximum resident set size (KB) = 686908 +The total amount of wall time = 91.093186 +The maximum resident set size (KB) = 695152 Test 046 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2425,14 +2425,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 165.013063 -The maximum resident set size (KB) = 1494288 +The total amount of wall time = 169.859551 +The maximum resident set size (KB) = 1489324 Test 047 control_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 90.241117 -The maximum resident set size (KB) = 695252 +The total amount of wall time = 90.499336 +The maximum resident set size (KB) = 695748 Test 048 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.024349 -The maximum resident set size (KB) = 1503248 +The total amount of wall time = 169.821968 +The maximum resident set size (KB) = 1496728 Test 049 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2571,14 +2571,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 145.224451 -The maximum resident set size (KB) = 1582168 +The total amount of wall time = 146.911854 +The maximum resident set size (KB) = 1591180 Test 050 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 293.843781 -The maximum resident set size (KB) = 1498936 +The total amount of wall time = 297.043958 +The maximum resident set size (KB) = 1498888 Test 051 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 220.240233 -The maximum resident set size (KB) = 1556408 +The total amount of wall time = 223.402010 +The maximum resident set size (KB) = 1563876 Test 052 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.093940 -The maximum resident set size (KB) = 1511552 +The total amount of wall time = 170.789872 +The maximum resident set size (KB) = 1514112 Test 053 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2759,14 +2759,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 197.980116 -The maximum resident set size (KB) = 1508488 +The total amount of wall time = 204.396620 +The maximum resident set size (KB) = 1515348 Test 054 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2777,28 +2777,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 290.377617 -The maximum resident set size (KB) = 606408 +The total amount of wall time = 292.955178 +The maximum resident set size (KB) = 606100 Test 055 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.480535 -The maximum resident set size (KB) = 778324 +The total amount of wall time = 155.492101 +The maximum resident set size (KB) = 779516 Test 056 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2809,14 +2809,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 304.338849 -The maximum resident set size (KB) = 605684 +The total amount of wall time = 307.857793 +The maximum resident set size (KB) = 605888 Test 057 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 175.422691 -The maximum resident set size (KB) = 660620 +The total amount of wall time = 181.747232 +The maximum resident set size (KB) = 657948 Test 058 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_noquilt_intel Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2842,28 +2842,28 @@ Checking test 059 regional_noquilt_intel 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 = 280.000830 -The maximum resident set size (KB) = 1141104 +The total amount of wall time = 283.600928 +The maximum resident set size (KB) = 1145312 Test 059 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_netcdf_parallel_intel Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 287.310854 -The maximum resident set size (KB) = 607216 +The total amount of wall time = 286.948719 +The maximum resident set size (KB) = 608952 Test 060 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2dwrtdecomp_intel Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2874,14 +2874,14 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.448947 -The maximum resident set size (KB) = 607100 +The total amount of wall time = 287.745601 +The maximum resident set size (KB) = 608372 Test 061 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_wofs_intel Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 370.002079 -The maximum resident set size (KB) = 1581448 +The total amount of wall time = 384.983069 +The maximum resident set size (KB) = 1580848 Test 062 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2946,14 +2946,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.761757 -The maximum resident set size (KB) = 919924 +The total amount of wall time = 405.722503 +The maximum resident set size (KB) = 916712 Test 063 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2964,14 +2964,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.742615 -The maximum resident set size (KB) = 1092304 +The total amount of wall time = 242.649556 +The maximum resident set size (KB) = 1095884 Test 064 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3018,14 +3018,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.844891 -The maximum resident set size (KB) = 915580 +The total amount of wall time = 421.811077 +The maximum resident set size (KB) = 917640 Test 065 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.382045 -The maximum resident set size (KB) = 1008316 +The total amount of wall time = 368.279718 +The maximum resident set size (KB) = 1010928 Test 066 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3118,14 +3118,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.282217 -The maximum resident set size (KB) = 784084 +The total amount of wall time = 208.777322 +The maximum resident set size (KB) = 785068 Test 067 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3172,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.000618 -The maximum resident set size (KB) = 913048 +The total amount of wall time = 408.653594 +The maximum resident set size (KB) = 912504 Test 068 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3226,14 +3226,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.332180 -The maximum resident set size (KB) = 914964 +The total amount of wall time = 421.519770 +The maximum resident set size (KB) = 915048 Test 069 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3272,14 +3272,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.547528 -The maximum resident set size (KB) = 783352 +The total amount of wall time = 302.817813 +The maximum resident set size (KB) = 785600 Test 070 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3326,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.203982 -The maximum resident set size (KB) = 911880 +The total amount of wall time = 208.652600 +The maximum resident set size (KB) = 910760 Test 071 hrrr_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3380,14 +3380,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.131388 -The maximum resident set size (KB) = 907928 +The total amount of wall time = 213.227628 +The maximum resident set size (KB) = 907536 Test 072 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3434,28 +3434,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.942980 -The maximum resident set size (KB) = 991916 +The total amount of wall time = 186.148913 +The maximum resident set size (KB) = 991784 Test 073 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.819242 -The maximum resident set size (KB) = 742116 +The total amount of wall time = 109.707657 +The maximum resident set size (KB) = 741100 Test 074 hrrr_control_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3502,14 +3502,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 398.166108 -The maximum resident set size (KB) = 904132 +The total amount of wall time = 398.210105 +The maximum resident set size (KB) = 911776 Test 075 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 490.003704 -The maximum resident set size (KB) = 1874704 +The total amount of wall time = 485.793754 +The maximum resident set size (KB) = 1872736 Test 076 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 472.440630 -The maximum resident set size (KB) = 1861208 +The total amount of wall time = 470.553367 +The maximum resident set size (KB) = 1859924 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3564,14 +3564,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 338.500426 -The maximum resident set size (KB) = 600048 +The total amount of wall time = 339.604589 +The maximum resident set size (KB) = 599140 Test 078 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3582,14 +3582,14 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.566237 -The maximum resident set size (KB) = 596180 +The total amount of wall time = 333.273528 +The maximum resident set size (KB) = 594992 Test 079 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_intel Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3600,26 +3600,26 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.660551 -The maximum resident set size (KB) = 561864 +The total amount of wall time = 184.374528 +The maximum resident set size (KB) = 560764 Test 080 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_intel Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.063038 -The maximum resident set size (KB) = 271836 +The total amount of wall time = 121.504900 +The maximum resident set size (KB) = 271740 Test 081 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_faster_intel Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.301292 -The maximum resident set size (KB) = 1505300 +The total amount of wall time = 170.040326 +The maximum resident set size (KB) = 1501620 Test 082 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_faster_intel Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3684,14 +3684,14 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 280.648571 -The maximum resident set size (KB) = 609956 +The total amount of wall time = 287.418651 +The maximum resident set size (KB) = 609532 Test 083 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3718,364 +3718,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 162.337300 -The maximum resident set size (KB) = 683512 +The total amount of wall time = 161.768232 +The maximum resident set size (KB) = 686488 Test 084 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.370876 -The maximum resident set size (KB) = 693624 +The total amount of wall time = 158.667011 +The maximum resident set size (KB) = 690672 Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.537405 -The maximum resident set size (KB) = 692352 +The total amount of wall time = 181.218504 +The maximum resident set size (KB) = 690636 Test 086 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.253932 -The maximum resident set size (KB) = 693132 +The total amount of wall time = 162.306687 +The maximum resident set size (KB) = 693552 Test 087 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.313215 -The maximum resident set size (KB) = 733268 +The total amount of wall time = 252.986938 +The maximum resident set size (KB) = 733916 Test 088 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.329851 -The maximum resident set size (KB) = 730496 +The total amount of wall time = 248.302778 +The maximum resident set size (KB) = 734092 Test 089 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.369490 -The maximum resident set size (KB) = 703916 +The total amount of wall time = 166.072806 +The maximum resident set size (KB) = 703268 Test 090 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 172.195350 -The maximum resident set size (KB) = 746740 +The total amount of wall time = 168.661862 +The maximum resident set size (KB) = 747428 Test 091 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.031907 -The maximum resident set size (KB) = 1519200 +The total amount of wall time = 168.512682 +The maximum resident set size (KB) = 1518856 Test 092 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_debug_intel Checking test 093 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1057.508445 -The maximum resident set size (KB) = 629056 +The total amount of wall time = 1055.399361 +The maximum resident set size (KB) = 633448 Test 093 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.960520 -The maximum resident set size (KB) = 1076488 +The total amount of wall time = 303.544779 +The maximum resident set size (KB) = 1073204 Test 094 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.368278 -The maximum resident set size (KB) = 1070004 +The total amount of wall time = 295.099265 +The maximum resident set size (KB) = 1069120 Test 095 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_gf_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_gf_debug_intel Checking test 096 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.841380 -The maximum resident set size (KB) = 1074248 +The total amount of wall time = 300.824493 +The maximum resident set size (KB) = 1074276 Test 096 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_c3_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_c3_debug_intel Checking test 097 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.945532 -The maximum resident set size (KB) = 1078352 +The total amount of wall time = 302.807577 +The maximum resident set size (KB) = 1070544 Test 097 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_drag_suite_debug_intel Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.925601 -The maximum resident set size (KB) = 1073756 +The total amount of wall time = 302.122005 +The maximum resident set size (KB) = 1072124 Test 098 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_diag_debug_intel Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.452353 -The maximum resident set size (KB) = 1162888 +The total amount of wall time = 313.007019 +The maximum resident set size (KB) = 1159744 Test 099 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_cires_ugwp_debug_intel Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.599165 -The maximum resident set size (KB) = 1076032 +The total amount of wall time = 311.834487 +The maximum resident set size (KB) = 1074140 Test 100 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_ugwp_debug_intel Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.730674 -The maximum resident set size (KB) = 1079376 +The total amount of wall time = 310.511767 +The maximum resident set size (KB) = 1076956 Test 101 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_lndp_debug_intel Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.479275 -The maximum resident set size (KB) = 1075932 +The total amount of wall time = 306.109317 +The maximum resident set size (KB) = 1079104 Test 102 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_progcld_thompson_debug_intel Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.023173 -The maximum resident set size (KB) = 1074988 +The total amount of wall time = 305.315894 +The maximum resident set size (KB) = 1073260 Test 103 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_debug_intel Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.080200 -The maximum resident set size (KB) = 1068868 +The total amount of wall time = 298.365451 +The maximum resident set size (KB) = 1068892 Test 104 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_debug_intel Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.806473 -The maximum resident set size (KB) = 1073844 +The total amount of wall time = 306.555887 +The maximum resident set size (KB) = 1074148 Test 105 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 498.436218 -The maximum resident set size (KB) = 1075296 +The total amount of wall time = 497.072433 +The maximum resident set size (KB) = 1068848 Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_debug_intel Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.047098 -The maximum resident set size (KB) = 1069512 +The total amount of wall time = 301.915862 +The maximum resident set size (KB) = 1067668 Test 107 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_clm_lake_debug_intel Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 351.599105 -The maximum resident set size (KB) = 1074656 +The total amount of wall time = 356.387245 +The maximum resident set size (KB) = 1078344 Test 108 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_flake_debug_intel Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.316766 -The maximum resident set size (KB) = 1073452 +The total amount of wall time = 305.996573 +The maximum resident set size (KB) = 1077284 Test 109 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/gnv1_c96_no_nest_debug_intel Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4116,26 +4116,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 526.273497 -The maximum resident set size (KB) = 1077160 +The total amount of wall time = 535.652666 +The maximum resident set size (KB) = 1076836 Test 110 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_debug_intel Checking test 111 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.088393 -The maximum resident set size (KB) = 298148 +The total amount of wall time = 298.765315 +The maximum resident set size (KB) = 300624 Test 111 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 230.022175 -The maximum resident set size (KB) = 952956 +The total amount of wall time = 230.588524 +The maximum resident set size (KB) = 953000 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4200,14 +4200,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 336.797512 -The maximum resident set size (KB) = 789616 +The total amount of wall time = 337.326050 +The maximum resident set size (KB) = 796180 Test 113 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4254,14 +4254,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.171997 -The maximum resident set size (KB) = 788240 +The total amount of wall time = 178.905085 +The maximum resident set size (KB) = 783112 Test 114 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4308,14 +4308,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.608507 -The maximum resident set size (KB) = 851852 +The total amount of wall time = 310.614336 +The maximum resident set size (KB) = 852672 Test 115 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4362,14 +4362,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.933595 -The maximum resident set size (KB) = 840220 +The total amount of wall time = 159.617650 +The maximum resident set size (KB) = 840160 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4416,14 +4416,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.779550 -The maximum resident set size (KB) = 791856 +The total amount of wall time = 185.643781 +The maximum resident set size (KB) = 789440 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4462,28 +4462,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 254.794040 -The maximum resident set size (KB) = 685660 +The total amount of wall time = 253.106647 +The maximum resident set size (KB) = 688544 Test 118 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.806382 -The maximum resident set size (KB) = 667280 +The total amount of wall time = 93.502140 +The maximum resident set size (KB) = 670152 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4499,40 +4499,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 120.596185 -The maximum resident set size (KB) = 1003932 +The total amount of wall time = 131.034625 +The maximum resident set size (KB) = 1006496 Test 120 conus13km_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 63.221902 -The maximum resident set size (KB) = 1007156 +The total amount of wall time = 60.720676 +The maximum resident set size (KB) = 1007992 Test 121 conus13km_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 71.013649 -The maximum resident set size (KB) = 881756 +The total amount of wall time = 69.331365 +The maximum resident set size (KB) = 883324 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4579,42 +4579,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.585978 -The maximum resident set size (KB) = 811188 +The total amount of wall time = 236.334234 +The maximum resident set size (KB) = 810948 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.731602 -The maximum resident set size (KB) = 950728 +The total amount of wall time = 299.528702 +The maximum resident set size (KB) = 946132 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.839630 -The maximum resident set size (KB) = 949132 +The total amount of wall time = 292.755949 +The maximum resident set size (KB) = 954084 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4628,14 +4628,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 889.758617 -The maximum resident set size (KB) = 1036268 +The total amount of wall time = 897.482195 +The maximum resident set size (KB) = 1038980 Test 126 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4649,81 +4649,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 897.344891 -The maximum resident set size (KB) = 710752 +The total amount of wall time = 904.198403 +The maximum resident set size (KB) = 711580 Test 127 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 512.772061 -The maximum resident set size (KB) = 1037896 +The total amount of wall time = 515.369189 +The maximum resident set size (KB) = 1039352 Test 128 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 882.770745 -The maximum resident set size (KB) = 1109524 +The total amount of wall time = 905.178589 +The maximum resident set size (KB) = 1098940 Test 129 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.603950 -The maximum resident set size (KB) = 979708 +The total amount of wall time = 302.613106 +The maximum resident set size (KB) = 973616 Test 130 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 369.531631 -The maximum resident set size (KB) = 617228 +The total amount of wall time = 353.649348 +The maximum resident set size (KB) = 614244 Test 131 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 355.154398 -The maximum resident set size (KB) = 962868 +The total amount of wall time = 329.437837 +The maximum resident set size (KB) = 963172 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,14 +4732,14 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 438.730589 -The maximum resident set size (KB) = 665392 +The total amount of wall time = 425.789147 +The maximum resident set size (KB) = 659588 Test 133 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4748,14 +4748,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 752.176827 -The maximum resident set size (KB) = 688472 +The total amount of wall time = 754.119878 +The maximum resident set size (KB) = 686160 Test 134 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 947.190738 -The maximum resident set size (KB) = 706528 +The total amount of wall time = 941.578158 +The maximum resident set size (KB) = 704864 Test 135 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 323.948890 -The maximum resident set size (KB) = 390444 +The total amount of wall time = 321.936508 +The maximum resident set size (KB) = 389092 Test 136 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4811,14 +4811,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 419.083475 -The maximum resident set size (KB) = 411292 +The total amount of wall time = 410.299541 +The maximum resident set size (KB) = 405160 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4865,14 +4865,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 178.064158 -The maximum resident set size (KB) = 284008 +The total amount of wall time = 176.905599 +The maximum resident set size (KB) = 281040 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 513.406980 -The maximum resident set size (KB) = 369996 +The total amount of wall time = 492.900377 +The maximum resident set size (KB) = 376844 Test 139 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4970,14 +4970,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 225.541419 -The maximum resident set size (KB) = 411900 +The total amount of wall time = 224.126547 +The maximum resident set size (KB) = 413184 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4999,14 +4999,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 216.108215 -The maximum resident set size (KB) = 414940 +The total amount of wall time = 210.963513 +The maximum resident set size (KB) = 413076 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,42 +5015,42 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 277.787997 -The maximum resident set size (KB) = 488860 +The total amount of wall time = 279.097440 +The maximum resident set size (KB) = 488400 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 97.748097 -The maximum resident set size (KB) = 319588 +The total amount of wall time = 96.254248 +The maximum resident set size (KB) = 315000 Test 143 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 827.555675 -The maximum resident set size (KB) = 501768 +The total amount of wall time = 825.697003 +The maximum resident set size (KB) = 509060 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,14 +5061,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 534.652709 -The maximum resident set size (KB) = 528456 +The total amount of wall time = 525.917581 +The maximum resident set size (KB) = 530736 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5079,14 +5079,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 534.592094 -The maximum resident set size (KB) = 710948 +The total amount of wall time = 540.934501 +The maximum resident set size (KB) = 711364 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5096,14 +5096,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 395.725953 -The maximum resident set size (KB) = 710956 +The total amount of wall time = 391.536720 +The maximum resident set size (KB) = 711812 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5111,14 +5111,14 @@ Checking test 148 hafs_regional_docn_intel 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 = 441.947517 -The maximum resident set size (KB) = 655240 +The total amount of wall time = 401.565907 +The maximum resident set size (KB) = 657504 Test 148 hafs_regional_docn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5126,27 +5126,27 @@ Checking test 149 hafs_regional_docn_oisst_intel 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 = 424.937547 -The maximum resident set size (KB) = 641236 +The total amount of wall time = 397.116334 +The maximum resident set size (KB) = 631908 Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_datm_cdeps_intel Checking test 150 hafs_regional_datm_cdeps_intel 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 = 959.502318 -The maximum resident set size (KB) = 880960 +The total amount of wall time = 951.527204 +The maximum resident set size (KB) = 881208 Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_sbs_intel Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5235,14 +5235,14 @@ Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 279.391007 -The maximum resident set size (KB) = 1546220 +The total amount of wall time = 278.121137 +The maximum resident set size (KB) = 1540412 Test 151 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_p8_atmlnd_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_intel Checking test 152 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5331,14 +5331,14 @@ Checking test 152 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 277.072040 -The maximum resident set size (KB) = 1538484 +The total amount of wall time = 278.964452 +The maximum resident set size (KB) = 1542860 Test 152 control_p8_atmlnd_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/control_restart_p8_atmlnd_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_atmlnd_intel Checking test 153 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5359,14 +5359,14 @@ Checking test 153 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 155.932872 -The maximum resident set size (KB) = 738524 +The total amount of wall time = 155.160197 +The maximum resident set size (KB) = 743224 Test 153 control_restart_p8_atmlnd_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_intel Checking test 154 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 154 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 248.697666 -The maximum resident set size (KB) = 2850348 +The total amount of wall time = 241.471847 +The maximum resident set size (KB) = 2849432 Test 154 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_intel Checking test 155 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5461,14 +5461,14 @@ Checking test 155 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 281.921693 -The maximum resident set size (KB) = 2910640 +The total amount of wall time = 279.536510 +The maximum resident set size (KB) = 2911716 Test 155 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_micro_intel Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5512,14 +5512,14 @@ Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 293.390049 -The maximum resident set size (KB) = 2926952 +The total amount of wall time = 294.213178 +The maximum resident set size (KB) = 2924264 Test 156 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240208/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_95701/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_atmaq_debug_intel Checking test 157 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5533,12 +5533,12 @@ Checking test 157 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1330.775370 -The maximum resident set size (KB) = 4440152 +The total amount of wall time = 1342.376959 +The maximum resident set size (KB) = 4445612 Test 157 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Feb 9 20:15:43 UTC 2024 -Elapsed time: 01h:26m:10s. Have a nice day! +Tue Feb 13 15:25:48 UTC 2024 +Elapsed time: 01h:17m:44s. Have a nice day! diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN index b7a3fc56f5..f82edf479d 100644 --- a/tests/parm/ice_in.IN +++ b/tests/parm/ice_in.IN @@ -315,6 +315,9 @@ f_fmelttn_ai = 'x' f_flatn_ai = 'x' f_fsensn_ai = 'x' + f_sitempsnic = 'mdhxx' + f_sitemptop = 'mdhxx' + f_sitempbot = 'mdhxx' / &icefields_mechred_nml From e464f5be2200744013c221b7eb7e1f2c85b79e22 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Thu, 15 Feb 2024 10:17:39 -0500 Subject: [PATCH 06/10] Add option to write 3d soilt, soilw and soill variables to a history file (#2062) Add option to write 3d soilt, soilw and soill variables to a history file --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_acorn.log | 1486 ++++++------ tests/logs/RegressionTests_derecho.log | 1450 ++++++------ tests/logs/RegressionTests_gaea.log | 2037 ++++++++-------- tests/logs/RegressionTests_hera.log | 2106 ++++++++--------- tests/logs/RegressionTests_hercules.log | 2052 ++++++++-------- tests/logs/RegressionTests_jet.log | 1460 ++++++------ tests/logs/RegressionTests_orion.log | 1743 +++++++------- tests/logs/RegressionTests_wcoss2.log | 1330 +++++------ .../parm/diag_table/diag_table_gfsv16_3d_soil | 210 ++ tests/tests/control_CubedSphereGrid_parallel | 1 + 15 files changed, 7207 insertions(+), 6768 deletions(-) create mode 100644 tests/parm/diag_table/diag_table_gfsv16_3d_soil diff --git a/FV3 b/FV3 index 28bfc365eb..0fe9ba3020 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 28bfc365eb65364f1b4972a870837640cb7331a3 +Subproject commit 0fe9ba3020ad2f744ead7323bda414497aa33632 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index db8bf0ab30..dc476e9359 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240212 +export BL_DATE=20240213 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 5f291dc8c6..725944afe9 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Feb 12 17:34:36 UTC 2024 +Tue Feb 13 21:21:48 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 295.377764 - 0: The maximum resident set size (KB) = 1308520 + 0: The total amount of wall time = 279.361825 + 0: The maximum resident set size (KB) = 1308576 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 905.836659 - 0: The maximum resident set size (KB) = 1289704 + 0: The total amount of wall time = 892.068909 + 0: The maximum resident set size (KB) = 1288180 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.635355 - 0: The maximum resident set size (KB) = 1280580 + 0: The total amount of wall time = 246.793051 + 0: The maximum resident set size (KB) = 1282680 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.206853 - 0: The maximum resident set size (KB) = 1273300 + 0: The total amount of wall time = 248.634230 + 0: The maximum resident set size (KB) = 1280096 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.001418 - 0: The maximum resident set size (KB) = 1281992 + 0: The total amount of wall time = 248.281693 + 0: The maximum resident set size (KB) = 1282264 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.431368 - 0: The maximum resident set size (KB) = 1281712 + 0: The total amount of wall time = 250.485530 + 0: The maximum resident set size (KB) = 1281568 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_119903/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.171559 - 0: The maximum resident set size (KB) = 1291604 + 0: The total amount of wall time = 248.484763 + 0: The maximum resident set size (KB) = 1281196 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Feb 12 18:52:54 UTC 2024 -Elapsed time: 01h:18m:18s. Have a nice day! +Wed Feb 14 00:35:01 UTC 2024 +Elapsed time: 03h:13m:14s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index d7a6ad9b62..31de475a3b 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Feb 12 19:53:38 UTC 2024 +Wed Feb 14 04:10:02 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1226.601363 - 0: The maximum resident set size (KB) = 1406616 + 0: The total amount of wall time = 1212.229695 + 0: The maximum resident set size (KB) = 1415208 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu 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 = 381.635239 - 0: The maximum resident set size (KB) = 1404212 + 0: The total amount of wall time = 378.073713 + 0: The maximum resident set size (KB) = 1407348 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_159347/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 383.441742 - 0: The maximum resident set size (KB) = 1407432 + 0: The total amount of wall time = 374.073820 + 0: The maximum resident set size (KB) = 1404512 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Feb 12 21:05:36 UTC 2024 -Elapsed time: 01h:11m:59s. Have a nice day! +Wed Feb 14 05:41:37 UTC 2024 +Elapsed time: 01h:31m:36s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 42b888c371..c9c7ed6a19 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Feb 12 18:56:01 UTC 2024 +Wed Feb 14 01:29:21 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 518.010148 - 0: The maximum resident set size (KB) = 592116 + 0: The total amount of wall time = 559.463910 + 0: The maximum resident set size (KB) = 591668 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 520.071220 - 0: The maximum resident set size (KB) = 589292 + 0: The total amount of wall time = 508.581538 + 0: The maximum resident set size (KB) = 592660 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31716/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 502.487646 - 0: The maximum resident set size (KB) = 592096 + 0: The total amount of wall time = 511.135763 + 0: The maximum resident set size (KB) = 589920 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Feb 12 19:32:44 UTC 2024 -Elapsed time: 00h:36m:43s. Have a nice day! +Wed Feb 14 02:06:37 UTC 2024 +Elapsed time: 00h:37m:19s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 56b4542381..6890dc893d 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,14 +1,14 @@ -Tue Feb 13 14:07:51 UTC 2024 +Tue Feb 13 20:55:05 UTC 2024 Start Regression test -Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -16,45 +16,45 @@ Testing With Submodule Hashes: 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) Compile atmaero_intel elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 183 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_debug_intel elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile atmaq_intel elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 238 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 565 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 527 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 571 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 526 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 518 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 526 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 563 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 197 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 571 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 518 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 527 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 535 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 452 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 544 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 569 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 620 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile ifi_intel elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 624 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 520 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 564 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 617 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 961 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 902 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 607 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 581 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 901 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 489 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_mixedmode_intel +Compile rrfs_dyn64_phy32_debug_intel elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 688 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 901 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 891 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 613 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 575 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 215 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 931 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.431229 -The maximum resident set size (KB) = 2973508 +The total amount of wall time = 320.583545 +The maximum resident set size (KB) = 2972576 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 901.292979 -The maximum resident set size (KB) = 1592148 +The total amount of wall time = 901.799342 +The maximum resident set size (KB) = 1588508 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 969.922689 -The maximum resident set size (KB) = 1710552 +The total amount of wall time = 974.923853 +The maximum resident set size (KB) = 1720608 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 453.198730 -The maximum resident set size (KB) = 847968 +The total amount of wall time = 453.147966 +The maximum resident set size (KB) = 850788 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1053.880929 -The maximum resident set size (KB) = 1573768 +The total amount of wall time = 1050.571882 +The maximum resident set size (KB) = 1583444 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1404.844347 -The maximum resident set size (KB) = 1600052 +The total amount of wall time = 1399.707911 +The maximum resident set size (KB) = 1595160 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.720413 -The maximum resident set size (KB) = 3001592 +The total amount of wall time = 362.865109 +The maximum resident set size (KB) = 3004020 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.114406 -The maximum resident set size (KB) = 3003684 +The total amount of wall time = 364.769886 +The maximum resident set size (KB) = 3003128 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.666517 -The maximum resident set size (KB) = 3061748 +The total amount of wall time = 213.080535 +The maximum resident set size (KB) = 3059576 Test 009 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.516087 -The maximum resident set size (KB) = 3026600 +The total amount of wall time = 365.772763 +The maximum resident set size (KB) = 3025532 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 217.989895 -The maximum resident set size (KB) = 3080876 +The total amount of wall time = 218.157201 +The maximum resident set size (KB) = 3079728 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 324.509045 -The maximum resident set size (KB) = 3315524 +The total amount of wall time = 324.432111 +The maximum resident set size (KB) = 3313180 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 356.915458 -The maximum resident set size (KB) = 2997384 +The total amount of wall time = 358.722397 +The maximum resident set size (KB) = 2998228 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -949,14 +949,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 302.115277 -The maximum resident set size (KB) = 2925944 +The total amount of wall time = 302.284206 +The maximum resident set size (KB) = 2927044 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 362.349738 -The maximum resident set size (KB) = 3002992 +The total amount of wall time = 365.707176 +The maximum resident set size (KB) = 3004176 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_s2sa_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 016 cpld_s2sa_p8_intel 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 = 342.065720 -The maximum resident set size (KB) = 2974280 +The total amount of wall time = 342.533134 +The maximum resident set size (KB) = 2967192 Test 016 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 269.199649 -The maximum resident set size (KB) = 1590444 +The total amount of wall time = 270.199657 +The maximum resident set size (KB) = 1589104 Test 017 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1219,14 +1219,14 @@ Checking test 018 cpld_control_nowave_noaero_p8_intel 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 = 273.905327 -The maximum resident set size (KB) = 1641564 +The total amount of wall time = 275.006469 +The maximum resident set size (KB) = 1642404 Test 018 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_agrid_intel Checking test 019 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1288,14 +1288,14 @@ Checking test 019 cpld_control_noaero_p8_agrid_intel 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 = 275.468269 -The maximum resident set size (KB) = 1634952 +The total amount of wall time = 276.189323 +The maximum resident set size (KB) = 1640476 Test 019 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_c48_intel Checking test 020 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1345,14 +1345,14 @@ Checking test 020 cpld_control_c48_intel 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 = 405.129974 -The maximum resident set size (KB) = 2659084 +The total amount of wall time = 406.266867 +The maximum resident set size (KB) = 2648452 Test 020 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_faster_intel Checking test 021 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1417,14 +1417,14 @@ Checking test 021 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.167762 -The maximum resident set size (KB) = 3001692 +The total amount of wall time = 356.457787 +The maximum resident set size (KB) = 3000956 Test 021 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_pdlib_p8_intel Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1488,14 +1488,14 @@ Checking test 022 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 917.343363 -The maximum resident set size (KB) = 1610376 +The total amount of wall time = 918.591947 +The maximum resident set size (KB) = 1610356 Test 022 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_pdlib_p8_intel Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 023 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 457.688844 -The maximum resident set size (KB) = 906796 +The total amount of wall time = 459.042002 +The maximum resident set size (KB) = 911180 Test 023 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_pdlib_p8_intel Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1618,14 +1618,14 @@ Checking test 024 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1066.336617 -The maximum resident set size (KB) = 1580956 +The total amount of wall time = 1067.175522 +The maximum resident set size (KB) = 1588248 Test 024 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_pdlib_p8_intel Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1677,14 +1677,14 @@ Checking test 025 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1485.769226 -The maximum resident set size (KB) = 1624436 +The total amount of wall time = 1492.573145 +The maximum resident set size (KB) = 1619396 Test 025 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_flake_intel Checking test 026 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1695,14 +1695,14 @@ Checking test 026 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.441596 -The maximum resident set size (KB) = 579916 +The total amount of wall time = 212.425640 +The maximum resident set size (KB) = 577640 Test 026 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_intel Checking test 027 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1729,14 +1729,14 @@ Checking test 027 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.833019 -The maximum resident set size (KB) = 530100 +The total amount of wall time = 131.386684 +The maximum resident set size (KB) = 526392 Test 027 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_parallel_intel Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,14 +1751,14 @@ Checking test 028 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.932805 -The maximum resident set size (KB) = 536868 +The total amount of wall time = 136.694364 +The maximum resident set size (KB) = 537332 Test 028 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_latlon_intel Checking test 029 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1769,14 +1769,14 @@ Checking test 029 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.064553 -The maximum resident set size (KB) = 528664 +The total amount of wall time = 132.333839 +The maximum resident set size (KB) = 528304 Test 029 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_intel Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1787,14 +1787,14 @@ Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.664278 -The maximum resident set size (KB) = 531584 +The total amount of wall time = 134.767542 +The maximum resident set size (KB) = 528816 Test 030 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48_intel Checking test 031 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 031 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.194725 -The maximum resident set size (KB) = 720624 +The total amount of wall time = 329.365162 +The maximum resident set size (KB) = 719448 Test 031 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c48.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48.v2.sfc_intel Checking test 032 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1879,14 +1879,14 @@ Checking test 032 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.193693 -The maximum resident set size (KB) = 722684 +The total amount of wall time = 329.463873 +The maximum resident set size (KB) = 719856 Test 032 control_c48.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1897,14 +1897,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 525.939866 -The maximum resident set size (KB) = 649380 +The total amount of wall time = 527.742681 +The maximum resident set size (KB) = 646284 Test 033 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1915,14 +1915,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 582.032478 -The maximum resident set size (KB) = 962208 +The total amount of wall time = 583.500948 +The maximum resident set size (KB) = 962448 Test 034 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1965,14 +1965,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 512.289225 -The maximum resident set size (KB) = 1097588 +The total amount of wall time = 515.564583 +The maximum resident set size (KB) = 1097384 Test 035 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1983,28 +1983,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.602188 -The maximum resident set size (KB) = 534588 +The total amount of wall time = 87.837103 +The maximum resident set size (KB) = 538000 Test 036 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.392489 -The maximum resident set size (KB) = 338832 +The total amount of wall time = 49.563804 +The maximum resident set size (KB) = 335200 Test 037 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2015,14 +2015,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.969680 -The maximum resident set size (KB) = 534360 +The total amount of wall time = 84.153988 +The maximum resident set size (KB) = 531396 Test 038 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2037,14 +2037,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.774315 -The maximum resident set size (KB) = 529464 +The total amount of wall time = 132.889405 +The maximum resident set size (KB) = 527212 Test 039 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2059,14 +2059,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.041501 -The maximum resident set size (KB) = 529144 +The total amount of wall time = 132.853333 +The maximum resident set size (KB) = 531036 Test 040 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2113,14 +2113,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.704931 -The maximum resident set size (KB) = 1504752 +The total amount of wall time = 162.156825 +The maximum resident set size (KB) = 1509992 Test 041 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8.v2.sfc_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8.v2.sfc_intel Checking test 042 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2167,14 +2167,14 @@ Checking test 042 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 162.596674 -The maximum resident set size (KB) = 1515040 +The total amount of wall time = 161.953549 +The maximum resident set size (KB) = 1502732 Test 042 control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_ugwpv1_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_ugwpv1_intel Checking test 043 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2221,14 +2221,14 @@ Checking test 043 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.365987 -The maximum resident set size (KB) = 1514192 +The total amount of wall time = 160.401269 +The maximum resident set size (KB) = 1516136 Test 043 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_intel Checking test 044 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2267,14 +2267,14 @@ Checking test 044 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 91.789380 -The maximum resident set size (KB) = 697236 +The total amount of wall time = 90.183429 +The maximum resident set size (KB) = 694940 Test 044 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_noqr_p8_intel Checking test 045 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2321,14 +2321,14 @@ Checking test 045 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 162.549796 -The maximum resident set size (KB) = 1500736 +The total amount of wall time = 162.797982 +The maximum resident set size (KB) = 1499940 Test 045 control_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_noqr_p8_intel Checking test 046 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2367,14 +2367,14 @@ Checking test 046 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 88.525005 -The maximum resident set size (KB) = 703548 +The total amount of wall time = 87.900642 +The maximum resident set size (KB) = 699552 Test 046 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_decomp_p8_intel Checking test 047 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2417,14 +2417,14 @@ Checking test 047 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.759858 -The maximum resident set size (KB) = 1505848 +The total amount of wall time = 166.882279 +The maximum resident set size (KB) = 1506664 Test 047 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_2threads_p8_intel Checking test 048 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2467,14 +2467,14 @@ Checking test 048 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.619906 -The maximum resident set size (KB) = 1599820 +The total amount of wall time = 142.974058 +The maximum resident set size (KB) = 1588264 Test 048 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_lndp_intel Checking test 049 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2493,14 +2493,14 @@ Checking test 049 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 292.409155 -The maximum resident set size (KB) = 1511456 +The total amount of wall time = 292.615876 +The maximum resident set size (KB) = 1505996 Test 049 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_rrtmgp_intel Checking test 050 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2547,14 +2547,14 @@ Checking test 050 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 217.311119 -The maximum resident set size (KB) = 1573920 +The total amount of wall time = 218.092373 +The maximum resident set size (KB) = 1561024 Test 050 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_mynn_intel Checking test 051 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2601,14 +2601,14 @@ Checking test 051 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 164.852610 -The maximum resident set size (KB) = 1518368 +The total amount of wall time = 165.718800 +The maximum resident set size (KB) = 1513556 Test 051 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/merra2_thompson_intel Checking test 052 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2655,14 +2655,14 @@ Checking test 052 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 197.178167 -The maximum resident set size (KB) = 1523776 +The total amount of wall time = 197.063639 +The maximum resident set size (KB) = 1510884 Test 052 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_intel Checking test 053 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2673,28 +2673,28 @@ Checking test 053 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 284.982565 -The maximum resident set size (KB) = 615316 +The total amount of wall time = 281.547353 +The maximum resident set size (KB) = 612740 Test 053 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_restart_intel Checking test 054 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 153.047541 -The maximum resident set size (KB) = 781444 +The total amount of wall time = 154.229868 +The maximum resident set size (KB) = 779896 Test 054 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_decomp_intel Checking test 055 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 055 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 300.722561 -The maximum resident set size (KB) = 615492 +The total amount of wall time = 298.617670 +The maximum resident set size (KB) = 611504 Test 055 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2threads_intel Checking test 056 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2723,14 +2723,14 @@ Checking test 056 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 171.098769 -The maximum resident set size (KB) = 670840 +The total amount of wall time = 172.744636 +The maximum resident set size (KB) = 666676 Test 056 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_noquilt_intel Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2738,14 +2738,14 @@ Checking test 057 regional_noquilt_intel 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 = 277.426436 -The maximum resident set size (KB) = 1146112 +The total amount of wall time = 276.876585 +The maximum resident set size (KB) = 1148844 Test 057 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 282.463321 -The maximum resident set size (KB) = 615608 +The total amount of wall time = 284.198888 +The maximum resident set size (KB) = 612640 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2774,14 +2774,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 367.031967 -The maximum resident set size (KB) = 1588752 +The total amount of wall time = 372.331648 +The maximum resident set size (KB) = 1585356 Test 059 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_control_intel Checking test 060 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2792,14 +2792,14 @@ Checking test 060 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 315.180067 -The maximum resident set size (KB) = 613612 +The total amount of wall time = 314.278095 +The maximum resident set size (KB) = 611780 Test 060 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_decomp_intel Checking test 061 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2810,14 +2810,14 @@ Checking test 061 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 328.839821 -The maximum resident set size (KB) = 609204 +The total amount of wall time = 330.518680 +The maximum resident set size (KB) = 611004 Test 061 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_2threads_intel Checking test 062 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2828,14 +2828,14 @@ Checking test 062 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 188.608290 -The maximum resident set size (KB) = 667872 +The total amount of wall time = 191.814831 +The maximum resident set size (KB) = 663552 Test 062 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2882,14 +2882,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.866851 -The maximum resident set size (KB) = 915444 +The total amount of wall time = 404.139433 +The maximum resident set size (KB) = 917148 Test 063 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 238.550921 -The maximum resident set size (KB) = 1092396 +The total amount of wall time = 238.614743 +The maximum resident set size (KB) = 1099324 Test 064 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2954,14 +2954,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.264237 -The maximum resident set size (KB) = 917548 +The total amount of wall time = 420.342724 +The maximum resident set size (KB) = 917176 Test 065 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3008,14 +3008,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.200398 -The maximum resident set size (KB) = 1002652 +The total amount of wall time = 369.944418 +The maximum resident set size (KB) = 1003028 Test 066 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3054,14 +3054,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.820131 -The maximum resident set size (KB) = 788432 +The total amount of wall time = 208.230702 +The maximum resident set size (KB) = 787668 Test 067 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3108,14 +3108,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.134456 -The maximum resident set size (KB) = 914648 +The total amount of wall time = 404.037357 +The maximum resident set size (KB) = 910668 Test 068 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3162,14 +3162,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 420.847383 -The maximum resident set size (KB) = 914024 +The total amount of wall time = 419.821399 +The maximum resident set size (KB) = 910936 Test 069 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3208,14 +3208,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 301.582506 -The maximum resident set size (KB) = 787784 +The total amount of wall time = 302.542040 +The maximum resident set size (KB) = 786160 Test 070 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3262,14 +3262,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 206.889690 -The maximum resident set size (KB) = 908760 +The total amount of wall time = 207.422949 +The maximum resident set size (KB) = 907440 Test 071 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 211.263517 -The maximum resident set size (KB) = 912908 +The total amount of wall time = 211.266940 +The maximum resident set size (KB) = 908928 Test 072 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3370,28 +3370,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.991832 -The maximum resident set size (KB) = 991112 +The total amount of wall time = 185.765973 +The maximum resident set size (KB) = 984068 Test 073 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.222538 -The maximum resident set size (KB) = 740620 +The total amount of wall time = 109.444178 +The maximum resident set size (KB) = 743616 Test 074 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 396.621180 -The maximum resident set size (KB) = 910212 +The total amount of wall time = 396.973313 +The maximum resident set size (KB) = 903656 Test 075 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3460,14 +3460,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 484.017399 -The maximum resident set size (KB) = 1871832 +The total amount of wall time = 483.985501 +The maximum resident set size (KB) = 1871016 Test 076 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3482,14 +3482,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 467.707890 -The maximum resident set size (KB) = 1856820 +The total amount of wall time = 468.624004 +The maximum resident set size (KB) = 1859480 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3500,14 +3500,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.608902 -The maximum resident set size (KB) = 602236 +The total amount of wall time = 336.283994 +The maximum resident set size (KB) = 606300 Test 078 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3518,26 +3518,26 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.680240 -The maximum resident set size (KB) = 598800 +The total amount of wall time = 332.691438 +The maximum resident set size (KB) = 602368 Test 079 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_intel Checking test 080 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.195700 -The maximum resident set size (KB) = 276264 +The total amount of wall time = 119.382718 +The maximum resident set size (KB) = 273604 Test 080 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_faster_intel Checking test 081 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 081 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.352379 -The maximum resident set size (KB) = 1501296 +The total amount of wall time = 156.497008 +The maximum resident set size (KB) = 1500872 Test 081 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_faster_intel Checking test 082 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3602,14 +3602,14 @@ Checking test 082 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 270.450826 -The maximum resident set size (KB) = 606332 +The total amount of wall time = 272.768730 +The maximum resident set size (KB) = 605424 Test 082 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_debug_intel Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3636,364 +3636,364 @@ Checking test 083 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.609238 -The maximum resident set size (KB) = 685224 +The total amount of wall time = 160.015649 +The maximum resident set size (KB) = 685740 Test 083 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_debug_intel Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.309180 -The maximum resident set size (KB) = 686520 +The total amount of wall time = 157.546243 +The maximum resident set size (KB) = 686840 Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_debug_intel Checking test 085 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.698093 -The maximum resident set size (KB) = 692508 +The total amount of wall time = 179.804539 +The maximum resident set size (KB) = 692976 Test 085 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_debug_intel Checking test 086 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.988509 -The maximum resident set size (KB) = 692676 +The total amount of wall time = 161.841649 +The maximum resident set size (KB) = 691400 Test 086 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_debug_intel Checking test 087 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.427731 -The maximum resident set size (KB) = 728560 +The total amount of wall time = 249.947359 +The maximum resident set size (KB) = 728084 Test 087 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_debug_intel Checking test 088 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.938562 -The maximum resident set size (KB) = 730192 +The total amount of wall time = 246.536305 +The maximum resident set size (KB) = 731928 Test 088 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_ras_debug_intel Checking test 089 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.200331 -The maximum resident set size (KB) = 700604 +The total amount of wall time = 162.918826 +The maximum resident set size (KB) = 699560 Test 089 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_diag_debug_intel Checking test 090 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.505064 -The maximum resident set size (KB) = 746632 +The total amount of wall time = 164.525885 +The maximum resident set size (KB) = 750820 Test 090 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_debug_p8_intel Checking test 091 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.875227 -The maximum resident set size (KB) = 1516996 +The total amount of wall time = 167.141659 +The maximum resident set size (KB) = 1519644 Test 091 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_debug_intel Checking test 092 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1047.615549 -The maximum resident set size (KB) = 630828 +The total amount of wall time = 1046.652034 +The maximum resident set size (KB) = 636352 Test 092 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_intel Checking test 093 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.926735 -The maximum resident set size (KB) = 1072836 +The total amount of wall time = 299.583165 +The maximum resident set size (KB) = 1072896 Test 093 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_intel Checking test 094 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.336573 -The maximum resident set size (KB) = 1072488 +The total amount of wall time = 293.074200 +The maximum resident set size (KB) = 1066068 Test 094 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_gf_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_gf_debug_intel Checking test 095 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.712497 -The maximum resident set size (KB) = 1073072 +The total amount of wall time = 298.226129 +The maximum resident set size (KB) = 1076576 Test 095 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_c3_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_c3_debug_intel Checking test 096 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.914574 -The maximum resident set size (KB) = 1068504 +The total amount of wall time = 298.620112 +The maximum resident set size (KB) = 1076948 Test 096 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_drag_suite_debug_intel Checking test 097 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.443865 -The maximum resident set size (KB) = 1076464 +The total amount of wall time = 300.449765 +The maximum resident set size (KB) = 1072792 Test 097 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_diag_debug_intel Checking test 098 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.790080 -The maximum resident set size (KB) = 1157412 +The total amount of wall time = 313.037681 +The maximum resident set size (KB) = 1155780 Test 098 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_cires_ugwp_debug_intel Checking test 099 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.445932 -The maximum resident set size (KB) = 1072360 +The total amount of wall time = 305.872024 +The maximum resident set size (KB) = 1075240 Test 099 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_ugwp_debug_intel Checking test 100 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.400872 -The maximum resident set size (KB) = 1075020 +The total amount of wall time = 305.344272 +The maximum resident set size (KB) = 1079696 Test 100 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_lndp_debug_intel Checking test 101 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.700496 -The maximum resident set size (KB) = 1075720 +The total amount of wall time = 301.838610 +The maximum resident set size (KB) = 1076408 Test 101 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_progcld_thompson_debug_intel Checking test 102 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.236826 -The maximum resident set size (KB) = 1071340 +The total amount of wall time = 300.022365 +The maximum resident set size (KB) = 1072432 Test 102 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_debug_intel Checking test 103 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.315465 -The maximum resident set size (KB) = 1071780 +The total amount of wall time = 293.658661 +The maximum resident set size (KB) = 1074016 Test 103 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_debug_intel Checking test 104 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.789750 -The maximum resident set size (KB) = 1070464 +The total amount of wall time = 299.824717 +The maximum resident set size (KB) = 1072920 Test 104 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 489.562697 -The maximum resident set size (KB) = 1068720 +The total amount of wall time = 490.771679 +The maximum resident set size (KB) = 1075128 Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_debug_intel Checking test 106 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.369995 -The maximum resident set size (KB) = 1068972 +The total amount of wall time = 294.072021 +The maximum resident set size (KB) = 1064612 Test 106 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_clm_lake_debug_intel Checking test 107 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 349.446992 -The maximum resident set size (KB) = 1074360 +The total amount of wall time = 351.370858 +The maximum resident set size (KB) = 1074324 Test 107 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_flake_debug_intel Checking test 108 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.718569 -The maximum resident set size (KB) = 1073616 +The total amount of wall time = 302.887751 +The maximum resident set size (KB) = 1072304 Test 108 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_c96_no_nest_debug_intel Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4034,26 +4034,26 @@ Checking test 109 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 522.815925 -The maximum resident set size (KB) = 1079040 +The total amount of wall time = 526.510557 +The maximum resident set size (KB) = 1078572 Test 109 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_debug_intel Checking test 110 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 297.095886 -The maximum resident set size (KB) = 300960 +The total amount of wall time = 299.016847 +The maximum resident set size (KB) = 299136 Test 110 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4064,14 +4064,14 @@ Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 227.717135 -The maximum resident set size (KB) = 956628 +The total amount of wall time = 226.914977 +The maximum resident set size (KB) = 960248 Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn32_phy32_intel Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4118,14 +4118,14 @@ Checking test 112 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 334.510732 -The maximum resident set size (KB) = 797840 +The total amount of wall time = 335.157411 +The maximum resident set size (KB) = 794408 Test 112 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_dyn32_phy32_intel Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4172,14 +4172,14 @@ Checking test 113 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.871234 -The maximum resident set size (KB) = 790232 +The total amount of wall time = 175.437514 +The maximum resident set size (KB) = 791508 Test 113 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_dyn32_phy32_intel Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4226,14 +4226,14 @@ Checking test 114 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 305.969456 -The maximum resident set size (KB) = 851304 +The total amount of wall time = 306.899439 +The maximum resident set size (KB) = 856812 Test 114 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_dyn32_phy32_intel Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4280,14 +4280,14 @@ Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.583519 -The maximum resident set size (KB) = 842592 +The total amount of wall time = 160.316286 +The maximum resident set size (KB) = 846172 Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_dyn32_phy32_intel Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4334,14 +4334,14 @@ Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.269289 -The maximum resident set size (KB) = 791796 +The total amount of wall time = 183.284931 +The maximum resident set size (KB) = 790480 Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_dyn32_phy32_intel Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4380,28 +4380,28 @@ Checking test 117 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.430677 -The maximum resident set size (KB) = 691912 +The total amount of wall time = 250.436915 +The maximum resident set size (KB) = 692492 Test 117 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_dyn32_phy32_intel Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.610297 -The maximum resident set size (KB) = 672292 +The total amount of wall time = 93.137371 +The maximum resident set size (KB) = 676932 Test 118 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_control_intel Checking test 119 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4417,40 +4417,40 @@ Checking test 119 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 116.188624 -The maximum resident set size (KB) = 1004708 +The total amount of wall time = 116.922325 +The maximum resident set size (KB) = 1007600 Test 119 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_2threads_intel Checking test 120 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 58.206397 -The maximum resident set size (KB) = 1008820 +The total amount of wall time = 60.646438 +The maximum resident set size (KB) = 1006948 Test 120 conus13km_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_restart_mismatch_intel Checking test 121 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 68.898752 -The maximum resident set size (KB) = 882308 +The total amount of wall time = 70.187236 +The maximum resident set size (KB) = 881616 Test 121 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_intel Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4497,42 +4497,42 @@ Checking test 122 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 228.217239 -The maximum resident set size (KB) = 819428 +The total amount of wall time = 229.114228 +The maximum resident set size (KB) = 818692 Test 122 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_dyn32_phy32_intel Checking test 123 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.350903 -The maximum resident set size (KB) = 954032 +The total amount of wall time = 293.962733 +The maximum resident set size (KB) = 955588 Test 123 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_dyn32_phy32_intel Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.466234 -The maximum resident set size (KB) = 951840 +The total amount of wall time = 287.342628 +The maximum resident set size (KB) = 950560 Test 124 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_intel Checking test 125 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4546,14 +4546,14 @@ Checking test 125 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 893.174876 -The maximum resident set size (KB) = 1037772 +The total amount of wall time = 883.460989 +The maximum resident set size (KB) = 1036696 Test 125 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_qr_intel Checking test 126 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4567,81 +4567,81 @@ Checking test 126 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 901.328606 -The maximum resident set size (KB) = 712580 +The total amount of wall time = 888.108565 +The maximum resident set size (KB) = 706376 Test 126 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_2threads_intel Checking test 127 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 512.860826 -The maximum resident set size (KB) = 1039008 +The total amount of wall time = 507.466675 +The maximum resident set size (KB) = 1036128 Test 127 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_radar_tten_debug_intel Checking test 128 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 895.827338 -The maximum resident set size (KB) = 1107244 +The total amount of wall time = 884.270449 +The maximum resident set size (KB) = 1106296 Test 128 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_debug_intel Checking test 129 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.717674 -The maximum resident set size (KB) = 974716 +The total amount of wall time = 296.714289 +The maximum resident set size (KB) = 976420 Test 129 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_intel Checking test 130 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 344.518833 -The maximum resident set size (KB) = 618280 +The total amount of wall time = 343.708225 +The maximum resident set size (KB) = 620344 Test 130 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_thompson_gfdlsf_intel Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 312.656069 -The maximum resident set size (KB) = 975072 +The total amount of wall time = 310.750633 +The maximum resident set size (KB) = 971820 Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_intel Checking test 132 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4650,14 +4650,14 @@ Checking test 132 hafs_regional_atm_ocn_intel 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 = 427.083376 -The maximum resident set size (KB) = 668296 +The total amount of wall time = 427.135080 +The maximum resident set size (KB) = 666972 Test 132 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_wav_intel Checking test 133 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4666,14 +4666,14 @@ Checking test 133 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 751.195662 -The maximum resident set size (KB) = 697528 +The total amount of wall time = 750.280372 +The maximum resident set size (KB) = 697912 Test 133 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_wav_intel Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4684,14 +4684,14 @@ Checking test 134 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 943.834402 -The maximum resident set size (KB) = 706868 +The total amount of wall time = 943.861252 +The maximum resident set size (KB) = 707740 Test 134 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_1nest_atm_intel Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4713,14 +4713,14 @@ Checking test 135 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 316.450239 -The maximum resident set size (KB) = 391032 +The total amount of wall time = 318.300582 +The maximum resident set size (KB) = 391780 Test 135 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_telescopic_2nests_atm_intel Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4729,14 +4729,14 @@ Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 403.413783 -The maximum resident set size (KB) = 409532 +The total amount of wall time = 406.481503 +The maximum resident set size (KB) = 419540 Test 136 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_1nest_atm_intel Checking test 137 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4783,14 +4783,14 @@ Checking test 137 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 172.569478 -The maximum resident set size (KB) = 284704 +The total amount of wall time = 172.062043 +The maximum resident set size (KB) = 287092 Test 137 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_multiple_4nests_atm_intel Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4872,14 +4872,14 @@ Checking test 138 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 483.212421 -The maximum resident set size (KB) = 372920 +The total amount of wall time = 482.747395 +The maximum resident set size (KB) = 373076 Test 138 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_specified_moving_1nest_atm_intel Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4888,14 +4888,14 @@ Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 219.339089 -The maximum resident set size (KB) = 416332 +The total amount of wall time = 220.258526 +The maximum resident set size (KB) = 417436 Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_intel Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,14 +4917,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 205.521077 -The maximum resident set size (KB) = 418608 +The total amount of wall time = 205.579863 +The maximum resident set size (KB) = 417588 Test 140 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4933,28 +4933,28 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 263.366887 -The maximum resident set size (KB) = 486272 +The total amount of wall time = 263.044010 +The maximum resident set size (KB) = 493596 Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_storm_following_1nest_atm_intel Checking test 142 hafs_global_storm_following_1nest_atm_intel 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 = 90.549217 -The maximum resident set size (KB) = 321300 +The total amount of wall time = 90.653026 +The maximum resident set size (KB) = 312096 Test 142 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/gnv1_nested_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_nested_intel Checking test 143 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5001,28 +5001,28 @@ Checking test 143 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 239.859329 -The maximum resident set size (KB) = 686160 +The total amount of wall time = 236.838277 +The maximum resident set size (KB) = 678924 Test 143 gnv1_nested_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 814.470927 -The maximum resident set size (KB) = 502132 +The total amount of wall time = 814.688929 +The maximum resident set size (KB) = 507896 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5033,14 +5033,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 516.576260 -The maximum resident set size (KB) = 530244 +The total amount of wall time = 518.877349 +The maximum resident set size (KB) = 529744 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5051,14 +5051,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 528.709762 -The maximum resident set size (KB) = 717224 +The total amount of wall time = 523.529442 +The maximum resident set size (KB) = 713304 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5068,14 +5068,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 383.115405 -The maximum resident set size (KB) = 707136 +The total amount of wall time = 384.296917 +The maximum resident set size (KB) = 711192 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5083,14 +5083,14 @@ Checking test 148 hafs_regional_docn_intel 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 = 396.820475 -The maximum resident set size (KB) = 657916 +The total amount of wall time = 391.242461 +The maximum resident set size (KB) = 662384 Test 148 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5098,131 +5098,131 @@ Checking test 149 hafs_regional_docn_oisst_intel 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 = 395.778002 -The maximum resident set size (KB) = 639052 +The total amount of wall time = 399.081884 +The maximum resident set size (KB) = 651244 Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_datm_cdeps_intel Checking test 150 hafs_regional_datm_cdeps_intel 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 = 945.419293 -The maximum resident set size (KB) = 889112 +The total amount of wall time = 948.178874 +The maximum resident set size (KB) = 882836 Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_intel Checking test 151 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.012685 -The maximum resident set size (KB) = 749816 +The total amount of wall time = 142.737231 +The maximum resident set size (KB) = 739148 Test 151 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_restart_cfsr_intel Checking test 152 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 86.156702 -The maximum resident set size (KB) = 739564 +The total amount of wall time = 85.767235 +The maximum resident set size (KB) = 737496 Test 152 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_gefs_intel Checking test 153 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.695417 -The maximum resident set size (KB) = 629496 +The total amount of wall time = 134.225087 +The maximum resident set size (KB) = 630348 Test 153 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_iau_gefs_intel Checking test 154 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.248477 -The maximum resident set size (KB) = 628208 +The total amount of wall time = 136.027695 +The maximum resident set size (KB) = 627288 Test 154 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_stochy_gefs_intel Checking test 155 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.094410 -The maximum resident set size (KB) = 637792 +The total amount of wall time = 138.189035 +The maximum resident set size (KB) = 630032 Test 155 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_ciceC_cfsr_intel Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.134562 -The maximum resident set size (KB) = 749684 +The total amount of wall time = 142.858978 +The maximum resident set size (KB) = 736528 Test 156 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_cfsr_intel Checking test 157 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.261497 -The maximum resident set size (KB) = 751332 +The total amount of wall time = 143.675144 +The maximum resident set size (KB) = 750240 Test 157 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_gefs_intel Checking test 158 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.663691 -The maximum resident set size (KB) = 630928 +The total amount of wall time = 134.471235 +The maximum resident set size (KB) = 629816 Test 158 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_cfsr_intel Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 159 datm_cdeps_mx025_cfsr_intel 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 = 337.237935 -The maximum resident set size (KB) = 598288 +The total amount of wall time = 339.570269 +The maximum resident set size (KB) = 594880 Test 159 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_gefs_intel Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5247,64 +5247,64 @@ Checking test 160 datm_cdeps_mx025_gefs_intel 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 = 338.187934 -The maximum resident set size (KB) = 581872 +The total amount of wall time = 337.599507 +The maximum resident set size (KB) = 578192 Test 160 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_multiple_files_cfsr_intel Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.816363 -The maximum resident set size (KB) = 750292 +The total amount of wall time = 143.009275 +The maximum resident set size (KB) = 750628 Test 161 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_3072x1536_cfsr_intel Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 261.035149 -The maximum resident set size (KB) = 2010712 +The total amount of wall time = 262.534235 +The maximum resident set size (KB) = 2008420 Test 162 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_gfs_intel Checking test 163 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 262.797641 -The maximum resident set size (KB) = 2002756 +The total amount of wall time = 262.895755 +The maximum resident set size (KB) = 2006316 Test 163 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.957460 -The maximum resident set size (KB) = 750104 +The total amount of wall time = 142.374074 +The maximum resident set size (KB) = 748508 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel 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 @@ -5313,14 +5313,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 57.185813 -The maximum resident set size (KB) = 221464 +The total amount of wall time = 57.476005 +The maximum resident set size (KB) = 225536 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_intel Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 166 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 57.839392 -The maximum resident set size (KB) = 369372 +The total amount of wall time = 58.564024 +The maximum resident set size (KB) = 368616 Test 166 datm_cdeps_lnd_era5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/datm_cdeps_lnd_era5_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_rst_intel Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5345,14 +5345,14 @@ Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 42.316296 -The maximum resident set size (KB) = 373544 +The total amount of wall time = 43.292506 +The maximum resident set size (KB) = 369724 Test 167 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_sbs_intel Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5441,14 +5441,14 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 272.868141 -The maximum resident set size (KB) = 1546444 +The total amount of wall time = 276.384205 +The maximum resident set size (KB) = 1551876 Test 168 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_p8_atmlnd_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_intel Checking test 169 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5537,14 +5537,14 @@ Checking test 169 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 273.885303 -The maximum resident set size (KB) = 1546224 +The total amount of wall time = 277.102019 +The maximum resident set size (KB) = 1552436 Test 169 control_p8_atmlnd_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_restart_p8_atmlnd_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_atmlnd_intel Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5565,14 +5565,14 @@ Checking test 170 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 154.539803 -The maximum resident set size (KB) = 746436 +The total amount of wall time = 152.901236 +The maximum resident set size (KB) = 741672 Test 170 control_restart_p8_atmlnd_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmwav_control_noaero_p8_intel Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5615,14 +5615,14 @@ Checking test 171 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 99.355693 -The maximum resident set size (KB) = 1542124 +The total amount of wall time = 99.922005 +The maximum resident set size (KB) = 1545684 Test 171 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_atmwav_intel Checking test 172 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5666,14 +5666,14 @@ Checking test 172 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.398439 -The maximum resident set size (KB) = 543620 +The total amount of wall time = 91.869972 +The maximum resident set size (KB) = 544992 Test 172 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_intel Checking test 173 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5717,14 +5717,14 @@ Checking test 173 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 237.485997 -The maximum resident set size (KB) = 2853732 +The total amount of wall time = 236.391729 +The maximum resident set size (KB) = 2855088 Test 173 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_intel Checking test 174 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5768,14 +5768,14 @@ Checking test 174 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 276.392883 -The maximum resident set size (KB) = 2912172 +The total amount of wall time = 275.218701 +The maximum resident set size (KB) = 2910584 Test 174 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_micro_intel Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5819,14 +5819,14 @@ Checking test 175 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 290.078744 -The maximum resident set size (KB) = 2926236 +The total amount of wall time = 290.955954 +The maximum resident set size (KB) = 2923376 Test 175 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_39357/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_atmaq_debug_intel Checking test 176 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5840,12 +5840,12 @@ Checking test 176 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1314.650533 -The maximum resident set size (KB) = 4446796 +The total amount of wall time = 1320.468838 +The maximum resident set size (KB) = 4431444 Test 176 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 16:09:34 UTC 2024 -Elapsed time: 02h:01m:44s. Have a nice day! +Tue Feb 13 22:50:28 UTC 2024 +Elapsed time: 01h:55m:24s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 94d295595d..a52b9fc8cf 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,60 +1,60 @@ -Mon 12 Feb 2024 01:36:18 PM MST +Tue 13 Feb 2024 03:11:27 PM MST Start Regression test -Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 703 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 680 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 525 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 777 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 1398 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 817 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 780 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 344 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 516 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 507 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 165 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 899 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 1050 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 457 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1174 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 972 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 722 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 599 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 344 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1189 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1244 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 589 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1186 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 545 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 546 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1192 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 668 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 689 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 556 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 774 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 769 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 768 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 341 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 579 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 477 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 160 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 881 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 1018 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 1176 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 983 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 831 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 894 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 936 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1254 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 749 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1359 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 615 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1201 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 567 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1156 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 666 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1321 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 288.602343 -The maximum resident set size (KB) = 3073956 +The total amount of wall time = 287.254314 +The maximum resident set size (KB) = 3072604 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 814.196932 -The maximum resident set size (KB) = 1687380 +The total amount of wall time = 813.470157 +The maximum resident set size (KB) = 1676184 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_gfsv17_iau_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 937.377291 -The maximum resident set size (KB) = 1823880 +The total amount of wall time = 910.181925 +The maximum resident set size (KB) = 1817456 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 476.203031 -The maximum resident set size (KB) = 952916 +The total amount of wall time = 441.345176 +The maximum resident set size (KB) = 956064 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -374,14 +374,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 933.145973 -The maximum resident set size (KB) = 1655220 +The total amount of wall time = 934.102717 +The maximum resident set size (KB) = 1658572 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -433,14 +433,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1287.378206 -The maximum resident set size (KB) = 1703508 +The total amount of wall time = 1297.227880 +The maximum resident set size (KB) = 1696772 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -505,14 +505,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 331.920058 -The maximum resident set size (KB) = 3095304 +The total amount of wall time = 332.290618 +The maximum resident set size (KB) = 3094800 Test 007 cpld_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_p8.v2.sfc_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -577,14 +577,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 332.283151 -The maximum resident set size (KB) = 3095476 +The total amount of wall time = 329.571265 +The maximum resident set size (KB) = 3094048 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -637,14 +637,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 196.217077 -The maximum resident set size (KB) = 3149996 +The total amount of wall time = 193.709056 +The maximum resident set size (KB) = 3149116 Test 009 cpld_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_qr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -709,14 +709,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.627887 -The maximum resident set size (KB) = 3128056 +The total amount of wall time = 325.601120 +The maximum resident set size (KB) = 3126328 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_qr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -769,14 +769,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 223.557838 -The maximum resident set size (KB) = 3181580 +The total amount of wall time = 194.380642 +The maximum resident set size (KB) = 3179204 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_decomp_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.031693 -The maximum resident set size (KB) = 3090352 +The total amount of wall time = 327.758742 +The maximum resident set size (KB) = 3089652 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 268.398233 -The maximum resident set size (KB) = 3386300 +The total amount of wall time = 269.560931 +The maximum resident set size (KB) = 3395808 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_ciceC_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -961,14 +961,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 328.715085 -The maximum resident set size (KB) = 3102656 +The total amount of wall time = 324.251159 +The maximum resident set size (KB) = 3099092 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c192_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1021,14 +1021,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 588.682635 -The maximum resident set size (KB) = 3639424 +The total amount of wall time = 525.406322 +The maximum resident set size (KB) = 3634228 Test 015 cpld_control_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_c192_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1081,14 +1081,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 446.236767 -The maximum resident set size (KB) = 3617112 +The total amount of wall time = 351.476175 +The maximum resident set size (KB) = 3614552 Test 016 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_s2sa_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_s2sa_p8_intel Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_s2sa_p8_intel 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 = 309.203029 -The maximum resident set size (KB) = 3066608 +The total amount of wall time = 304.774265 +The maximum resident set size (KB) = 3062348 Test 017 cpld_s2sa_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_intel Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1210,14 +1210,14 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 241.758081 -The maximum resident set size (KB) = 1678600 +The total amount of wall time = 241.190810 +The maximum resident set size (KB) = 1677764 Test 018 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_nowave_noaero_p8_intel Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 019 cpld_control_nowave_noaero_p8_intel 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 = 247.043372 -The maximum resident set size (KB) = 1723372 +The total amount of wall time = 244.832020 +The maximum resident set size (KB) = 1722108 Test 019 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_p8_intel Checking test 020 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1339,14 +1339,14 @@ Checking test 020 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 448.087267 -The maximum resident set size (KB) = 3146828 +The total amount of wall time = 456.601297 +The maximum resident set size (KB) = 3150724 Test 020 cpld_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_noaero_p8_intel Checking test 021 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1398,14 +1398,14 @@ Checking test 021 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 298.763897 -The maximum resident set size (KB) = 1697424 +The total amount of wall time = 301.016467 +The maximum resident set size (KB) = 1696460 Test 021 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_agrid_intel Checking test 022 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1467,14 +1467,14 @@ Checking test 022 cpld_control_noaero_p8_agrid_intel 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 = 243.589641 -The maximum resident set size (KB) = 1724812 +The total amount of wall time = 247.135439 +The maximum resident set size (KB) = 1721024 Test 022 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_c48_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c48_intel Checking test 023 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1524,14 +1524,14 @@ Checking test 023 cpld_control_c48_intel 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 = 388.455720 -The maximum resident set size (KB) = 2665152 +The total amount of wall time = 391.150267 +The maximum resident set size (KB) = 2665508 Test 023 cpld_control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_control_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1595,14 +1595,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 830.770867 -The maximum resident set size (KB) = 1697800 +The total amount of wall time = 832.000577 +The maximum resident set size (KB) = 1695256 Test 024 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_restart_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1654,14 +1654,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 477.982337 -The maximum resident set size (KB) = 1012048 +The total amount of wall time = 436.875358 +The maximum resident set size (KB) = 1115432 Test 025 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1725,14 +1725,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 957.689695 -The maximum resident set size (KB) = 1668528 +The total amount of wall time = 950.678674 +The maximum resident set size (KB) = 1666736 Test 026 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/cpld_debug_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1784,14 +1784,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1352.203651 -The maximum resident set size (KB) = 1713100 +The total amount of wall time = 1348.056090 +The maximum resident set size (KB) = 1714360 Test 027 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_flake_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1802,14 +1802,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 202.034991 -The maximum resident set size (KB) = 665388 +The total amount of wall time = 197.885675 +The maximum resident set size (KB) = 666572 Test 028 control_flake_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1836,14 +1836,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 124.441774 -The maximum resident set size (KB) = 615936 +The total amount of wall time = 116.561731 +The maximum resident set size (KB) = 617504 Test 029 control_CubedSphereGrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1858,14 +1858,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.730464 -The maximum resident set size (KB) = 620336 +The total amount of wall time = 121.240894 +The maximum resident set size (KB) = 623180 Test 030 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_latlon_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1876,14 +1876,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 171.127843 -The maximum resident set size (KB) = 618024 +The total amount of wall time = 117.180024 +The maximum resident set size (KB) = 618180 Test 031 control_latlon_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1894,14 +1894,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.390977 -The maximum resident set size (KB) = 621092 +The total amount of wall time = 121.494351 +The maximum resident set size (KB) = 615772 Test 032 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1940,14 +1940,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.765956 -The maximum resident set size (KB) = 729684 +The total amount of wall time = 310.447763 +The maximum resident set size (KB) = 728928 Test 033 control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c48.v2.sfc_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1986,14 +1986,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 320.032655 -The maximum resident set size (KB) = 727880 +The total amount of wall time = 307.679009 +The maximum resident set size (KB) = 728796 Test 034 control_c48.v2.sfc_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c192_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2004,14 +2004,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 491.553781 -The maximum resident set size (KB) = 738028 +The total amount of wall time = 462.463171 +The maximum resident set size (KB) = 734404 Test 035 control_c192_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 765.548261 -The maximum resident set size (KB) = 1053572 +The total amount of wall time = 492.477247 +The maximum resident set size (KB) = 1062296 Test 036 control_c384_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_c384gdas_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2072,14 +2072,14 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 511.921395 -The maximum resident set size (KB) = 1195448 +The total amount of wall time = 444.990483 +The maximum resident set size (KB) = 1197364 -Test 037 control_c384gdas_intel PASS +Test 037 control_c384gdas_intel PASS Tries: 2 -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2090,28 +2090,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 84.368241 -The maximum resident set size (KB) = 622972 +The total amount of wall time = 76.849499 +The maximum resident set size (KB) = 624776 Test 038 control_stochy_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 55.213178 -The maximum resident set size (KB) = 436564 +The total amount of wall time = 43.106187 +The maximum resident set size (KB) = 435120 Test 039 control_stochy_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2122,14 +2122,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 117.043323 -The maximum resident set size (KB) = 620120 +The total amount of wall time = 74.801693 +The maximum resident set size (KB) = 621904 Test 040 control_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr4_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2144,14 +2144,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 167.870924 -The maximum resident set size (KB) = 615808 +The total amount of wall time = 117.990170 +The maximum resident set size (KB) = 616824 Test 041 control_iovr4_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_iovr5_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2166,14 +2166,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.780874 -The maximum resident set size (KB) = 616668 +The total amount of wall time = 117.964044 +The maximum resident set size (KB) = 618400 Test 042 control_iovr5_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2220,14 +2220,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 151.182866 -The maximum resident set size (KB) = 1592816 +The total amount of wall time = 142.800335 +The maximum resident set size (KB) = 1591804 Test 043 control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8.v2.sfc_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2274,14 +2274,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 151.435672 -The maximum resident set size (KB) = 1601420 +The total amount of wall time = 142.134460 +The maximum resident set size (KB) = 1591764 Test 044 control_p8.v2.sfc_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_ugwpv1_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.573410 -The maximum resident set size (KB) = 1601464 +The total amount of wall time = 141.663756 +The maximum resident set size (KB) = 1596412 Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2374,14 +2374,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 82.133288 -The maximum resident set size (KB) = 791908 +The total amount of wall time = 78.345921 +The maximum resident set size (KB) = 792644 Test 046 control_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_noqr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2428,14 +2428,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 144.799167 -The maximum resident set size (KB) = 1585932 +The total amount of wall time = 142.993127 +The maximum resident set size (KB) = 1583668 Test 047 control_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_noqr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2474,14 +2474,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 77.176710 -The maximum resident set size (KB) = 796552 +The total amount of wall time = 75.418276 +The maximum resident set size (KB) = 1233084 Test 048 control_restart_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_decomp_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2524,14 +2524,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.659227 -The maximum resident set size (KB) = 1590344 +The total amount of wall time = 146.173162 +The maximum resident set size (KB) = 1595912 Test 049 control_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_lndp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_lndp_intel Checking test 050 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2550,14 +2550,14 @@ Checking test 050 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 288.334525 -The maximum resident set size (KB) = 1590840 +The total amount of wall time = 255.827887 +The maximum resident set size (KB) = 1593716 Test 050 control_p8_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_rrtmgp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_rrtmgp_intel Checking test 051 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2604,14 +2604,14 @@ Checking test 051 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 314.782282 -The maximum resident set size (KB) = 1648472 +The total amount of wall time = 189.288035 +The maximum resident set size (KB) = 1655748 Test 051 control_p8_rrtmgp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_mynn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_mynn_intel Checking test 052 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2658,14 +2658,14 @@ Checking test 052 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.067715 -The maximum resident set size (KB) = 1600768 +The total amount of wall time = 143.920240 +The maximum resident set size (KB) = 1606076 Test 052 control_p8_mynn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/merra2_thompson_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/merra2_thompson_intel Checking test 053 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2712,14 +2712,14 @@ Checking test 053 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 209.558273 -The maximum resident set size (KB) = 1605820 +The total amount of wall time = 171.463875 +The maximum resident set size (KB) = 1602292 Test 053 merra2_thompson_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_intel Checking test 054 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2730,28 +2730,28 @@ Checking test 054 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 309.793229 -The maximum resident set size (KB) = 626840 +The total amount of wall time = 262.854666 +The maximum resident set size (KB) = 623168 Test 054 regional_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_restart_intel Checking test 055 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.267760 -The maximum resident set size (KB) = 793720 +The total amount of wall time = 141.396684 +The maximum resident set size (KB) = 796584 Test 055 regional_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_decomp_intel Checking test 056 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2762,14 +2762,14 @@ Checking test 056 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 360.013638 -The maximum resident set size (KB) = 627252 +The total amount of wall time = 275.916489 +The maximum resident set size (KB) = 625832 Test 056 regional_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_noquilt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_noquilt_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_noquilt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_noquilt_intel Checking test 057 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2777,28 +2777,28 @@ Checking test 057 regional_noquilt_intel 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 = 318.554664 -The maximum resident set size (KB) = 1156508 +The total amount of wall time = 257.381681 +The maximum resident set size (KB) = 1156736 Test 057 regional_noquilt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_netcdf_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_netcdf_parallel_intel Checking test 058 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 305.720100 -The maximum resident set size (KB) = 620564 +The total amount of wall time = 263.559213 +The maximum resident set size (KB) = 620612 Test 058 regional_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_2dwrtdecomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_2dwrtdecomp_intel Checking test 059 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2809,14 +2809,14 @@ Checking test 059 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 308.398466 -The maximum resident set size (KB) = 626556 +The total amount of wall time = 260.812041 +The maximum resident set size (KB) = 627064 Test 059 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_wofs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_wofs_intel Checking test 060 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 060 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 395.219570 -The maximum resident set size (KB) = 1596240 +The total amount of wall time = 328.778858 +The maximum resident set size (KB) = 1594792 Test 060 regional_wofs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_intel Checking test 061 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2881,14 +2881,14 @@ Checking test 061 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.139771 -The maximum resident set size (KB) = 1007760 +The total amount of wall time = 356.929009 +The maximum resident set size (KB) = 1003840 Test 061 rap_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_intel Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2899,14 +2899,14 @@ Checking test 062 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 205.921153 -The maximum resident set size (KB) = 1195768 +The total amount of wall time = 209.970037 +The maximum resident set size (KB) = 1191824 Test 062 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_decomp_intel Checking test 063 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2953,14 +2953,14 @@ Checking test 063 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 499.315620 -The maximum resident set size (KB) = 1006488 +The total amount of wall time = 372.852716 +The maximum resident set size (KB) = 1004200 Test 063 rap_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2999,14 +2999,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 227.518708 -The maximum resident set size (KB) = 878812 +The total amount of wall time = 185.798213 +The maximum resident set size (KB) = 879780 Test 064 rap_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3053,14 +3053,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 387.246909 -The maximum resident set size (KB) = 1007368 +The total amount of wall time = 355.499946 +The maximum resident set size (KB) = 1004648 Test 065 rap_sfcdiff_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3107,14 +3107,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 456.217018 -The maximum resident set size (KB) = 1007816 +The total amount of wall time = 374.167272 +The maximum resident set size (KB) = 1004988 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 294.481127 -The maximum resident set size (KB) = 881392 +The total amount of wall time = 267.174430 +The maximum resident set size (KB) = 880868 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 187.954364 -The maximum resident set size (KB) = 1003864 +The total amount of wall time = 183.993926 +The maximum resident set size (KB) = 1001636 Test 068 hrrr_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3261,14 +3261,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 205.126873 -The maximum resident set size (KB) = 1006420 +The total amount of wall time = 189.087480 +The maximum resident set size (KB) = 1000184 Test 069 hrrr_control_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_2threads_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3315,28 +3315,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.413069 -The maximum resident set size (KB) = 1087428 +The total amount of wall time = 160.563409 +The maximum resident set size (KB) = 1086684 Test 070 hrrr_control_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 102.313442 -The maximum resident set size (KB) = 835272 +The total amount of wall time = 97.735325 +The maximum resident set size (KB) = 833232 Test 071 hrrr_control_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3383,14 +3383,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.713541 -The maximum resident set size (KB) = 996680 +The total amount of wall time = 349.772421 +The maximum resident set size (KB) = 1002044 Test 072 rrfs_v1beta_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3405,14 +3405,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 482.397635 -The maximum resident set size (KB) = 1960020 +The total amount of wall time = 433.501392 +The maximum resident set size (KB) = 1959088 Test 073 rrfs_v1nssl_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3427,14 +3427,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 419.172514 -The maximum resident set size (KB) = 1949072 +The total amount of wall time = 416.399889 +The maximum resident set size (KB) = 1947308 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3445,14 +3445,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 305.898667 -The maximum resident set size (KB) = 689692 +The total amount of wall time = 305.189481 +The maximum resident set size (KB) = 689828 Test 075 control_csawmg_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3463,14 +3463,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 306.089390 -The maximum resident set size (KB) = 689164 +The total amount of wall time = 298.578545 +The maximum resident set size (KB) = 688216 Test 076 control_csawmgt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3481,26 +3481,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 163.040855 -The maximum resident set size (KB) = 654060 +The total amount of wall time = 164.596704 +The maximum resident set size (KB) = 655364 Test 077 control_ras_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 104.626584 -The maximum resident set size (KB) = 381208 +The total amount of wall time = 104.408886 +The maximum resident set size (KB) = 381600 Test 078 control_wam_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3547,14 +3547,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 144.889882 -The maximum resident set size (KB) = 1595648 +The total amount of wall time = 135.964840 +The maximum resident set size (KB) = 1599664 Test 079 control_p8_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_control_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3565,14 +3565,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.096184 -The maximum resident set size (KB) = 629380 +The total amount of wall time = 248.143855 +The maximum resident set size (KB) = 624960 Test 080 regional_control_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_CubedSphereGrid_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3599,364 +3599,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 145.177422 -The maximum resident set size (KB) = 795096 +The total amount of wall time = 145.917215 +The maximum resident set size (KB) = 794780 Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.945284 -The maximum resident set size (KB) = 795288 +The total amount of wall time = 140.354619 +The maximum resident set size (KB) = 790228 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_stochy_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.277840 -The maximum resident set size (KB) = 801296 +The total amount of wall time = 158.878128 +The maximum resident set size (KB) = 798644 Test 083 control_stochy_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_lndp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.997387 -The maximum resident set size (KB) = 801992 +The total amount of wall time = 142.957055 +The maximum resident set size (KB) = 798488 Test 084 control_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmg_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 225.445747 -The maximum resident set size (KB) = 837068 +The total amount of wall time = 224.583856 +The maximum resident set size (KB) = 833048 Test 085 control_csawmg_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_csawmgt_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 225.115468 -The maximum resident set size (KB) = 836848 +The total amount of wall time = 224.450021 +The maximum resident set size (KB) = 834932 Test 086 control_csawmgt_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_ras_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.890614 -The maximum resident set size (KB) = 808844 +The total amount of wall time = 145.076383 +The maximum resident set size (KB) = 806452 Test 087 control_ras_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_diag_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 152.891124 -The maximum resident set size (KB) = 854444 +The total amount of wall time = 147.618483 +The maximum resident set size (KB) = 850876 -Test 088 control_diag_debug_intel PASS +Test 088 control_diag_debug_intel PASS Tries: 2 -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_debug_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.320659 -The maximum resident set size (KB) = 1632164 +The total amount of wall time = 149.410798 +The maximum resident set size (KB) = 1621016 Test 089 control_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 957.580876 -The maximum resident set size (KB) = 665856 +The total amount of wall time = 944.122716 +The maximum resident set size (KB) = 661380 Test 090 regional_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 280.137450 -The maximum resident set size (KB) = 1183164 +The total amount of wall time = 272.115364 +The maximum resident set size (KB) = 1175532 Test 091 rap_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.374479 -The maximum resident set size (KB) = 1173532 +The total amount of wall time = 261.245460 +The maximum resident set size (KB) = 1174580 Test 092 hrrr_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_gf_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.902826 -The maximum resident set size (KB) = 1179168 +The total amount of wall time = 266.651559 +The maximum resident set size (KB) = 1177592 Test 093 hrrr_gf_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_c3_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.386634 -The maximum resident set size (KB) = 1183592 +The total amount of wall time = 267.315434 +The maximum resident set size (KB) = 1179204 Test 094 hrrr_c3_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_drag_suite_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.302507 -The maximum resident set size (KB) = 1182768 +The total amount of wall time = 267.705776 +The maximum resident set size (KB) = 1176796 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_diag_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 283.259906 -The maximum resident set size (KB) = 1266396 +The total amount of wall time = 283.361639 +The maximum resident set size (KB) = 1263940 Test 096 rap_diag_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_cires_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 275.841578 -The maximum resident set size (KB) = 1182244 +The total amount of wall time = 272.597051 +The maximum resident set size (KB) = 1177852 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_unified_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.776376 -The maximum resident set size (KB) = 1181452 +The total amount of wall time = 273.741989 +The maximum resident set size (KB) = 1178296 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_lndp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.128390 -The maximum resident set size (KB) = 1179364 +The total amount of wall time = 269.071855 +The maximum resident set size (KB) = 1179680 Test 099 rap_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_progcld_thompson_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 268.873664 -The maximum resident set size (KB) = 1179612 +The total amount of wall time = 281.137615 +The maximum resident set size (KB) = 1176468 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 268.413581 -The maximum resident set size (KB) = 1176872 +The total amount of wall time = 262.781627 +The maximum resident set size (KB) = 1170608 Test 101 rap_noah_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_sfcdiff_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.450367 -The maximum resident set size (KB) = 1181404 +The total amount of wall time = 266.199180 +The maximum resident set size (KB) = 1179332 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 437.998968 -The maximum resident set size (KB) = 1178544 +The total amount of wall time = 439.573070 +The maximum resident set size (KB) = 1176220 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rrfs_v1beta_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.471450 -The maximum resident set size (KB) = 1175524 +The total amount of wall time = 265.933519 +The maximum resident set size (KB) = 1173608 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_clm_lake_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 336.511402 -The maximum resident set size (KB) = 1181144 +The total amount of wall time = 315.066589 +The maximum resident set size (KB) = 1180832 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_flake_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 268.971392 -The maximum resident set size (KB) = 1183748 +The total amount of wall time = 269.043588 +The maximum resident set size (KB) = 1181028 Test 106 rap_flake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_c96_no_nest_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3997,26 +3997,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 465.482207 -The maximum resident set size (KB) = 1182972 +The total amount of wall time = 462.034280 +The maximum resident set size (KB) = 1177024 Test 107 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_wam_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_wam_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 274.345175 -The maximum resident set size (KB) = 422312 +The total amount of wall time = 270.531881 +The maximum resident set size (KB) = 420028 Test 108 control_wam_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4027,14 +4027,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 212.965632 -The maximum resident set size (KB) = 1057376 +The total amount of wall time = 202.995920 +The maximum resident set size (KB) = 1053380 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4081,14 +4081,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 297.864120 -The maximum resident set size (KB) = 881616 +The total amount of wall time = 298.089350 +The maximum resident set size (KB) = 879448 Test 110 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4135,14 +4135,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.884689 -The maximum resident set size (KB) = 881588 +The total amount of wall time = 161.175938 +The maximum resident set size (KB) = 877000 Test 111 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_dyn32_phy32_intel Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4189,14 +4189,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 165.626405 -The maximum resident set size (KB) = 880152 +The total amount of wall time = 165.333934 +The maximum resident set size (KB) = 878356 Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_restart_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_dyn32_phy32_intel Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4235,28 +4235,28 @@ Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 222.089931 -The maximum resident set size (KB) = 795168 +The total amount of wall time = 227.422230 +The maximum resident set size (KB) = 792956 Test 113 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_dyn32_phy32_intel Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.327707 -The maximum resident set size (KB) = 774912 +The total amount of wall time = 82.898710 +The maximum resident set size (KB) = 774584 Test 114 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4272,40 +4272,40 @@ Checking test 115 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 106.401035 -The maximum resident set size (KB) = 1085956 +The total amount of wall time = 114.050530 +The maximum resident set size (KB) = 1087448 Test 115 conus13km_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_2threads_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_2threads_intel Checking test 116 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 48.632565 -The maximum resident set size (KB) = 1365176 +The total amount of wall time = 51.633947 +The maximum resident set size (KB) = 1087780 Test 116 conus13km_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_restart_mismatch_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 61.284476 -The maximum resident set size (KB) = 975664 +The total amount of wall time = 58.334294 +The maximum resident set size (KB) = 975668 Test 117 conus13km_restart_mismatch_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4352,42 +4352,42 @@ Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 210.883561 -The maximum resident set size (KB) = 905916 +The total amount of wall time = 209.677892 +The maximum resident set size (KB) = 907960 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_debug_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_dyn32_phy32_intel Checking test 119 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 260.468033 -The maximum resident set size (KB) = 1052496 +The total amount of wall time = 260.797136 +The maximum resident set size (KB) = 1055904 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_dyn32_phy32_intel Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.759186 -The maximum resident set size (KB) = 1052188 +The total amount of wall time = 267.752256 +The maximum resident set size (KB) = 1056428 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4401,67 +4401,67 @@ Checking test 121 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 784.251934 -The maximum resident set size (KB) = 1130368 +The total amount of wall time = 791.728811 +The maximum resident set size (KB) = 1132840 Test 121 conus13km_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/conus13km_radar_tten_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_radar_tten_debug_intel Checking test 122 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 787.499656 -The maximum resident set size (KB) = 1197980 +The total amount of wall time = 813.435144 +The maximum resident set size (KB) = 1199980 Test 122 conus13km_radar_tten_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/rap_control_dyn64_phy32_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_debug_intel Checking test 123 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 268.565882 -The maximum resident set size (KB) = 1083652 +The total amount of wall time = 269.869857 +The maximum resident set size (KB) = 1078316 Test 123 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_intel Checking test 124 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 273.589214 -The maximum resident set size (KB) = 716596 +The total amount of wall time = 266.084321 +The maximum resident set size (KB) = 711920 Test 124 hafs_regional_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_thompson_gfdlsf_intel Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 312.596870 -The maximum resident set size (KB) = 1067424 +The total amount of wall time = 303.657054 +The maximum resident set size (KB) = 1064772 Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_intel Checking test 126 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4470,14 +4470,14 @@ Checking test 126 hafs_regional_atm_ocn_intel 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 = 379.850360 -The maximum resident set size (KB) = 778160 +The total amount of wall time = 380.660268 +The maximum resident set size (KB) = 776016 Test 126 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_wav_intel Checking test 127 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4486,14 +4486,14 @@ Checking test 127 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 646.873869 -The maximum resident set size (KB) = 791380 +The total amount of wall time = 650.137569 +The maximum resident set size (KB) = 795664 Test 127 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_atm_ocn_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_wav_intel Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4504,14 +4504,14 @@ Checking test 128 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 716.296851 -The maximum resident set size (KB) = 807876 +The total amount of wall time = 724.238413 +The maximum resident set size (KB) = 809044 Test 128 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_1nest_atm_intel Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4533,14 +4533,14 @@ Checking test 129 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 266.794227 -The maximum resident set size (KB) = 1365176 +The total amount of wall time = 269.115433 +The maximum resident set size (KB) = 475676 Test 129 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_telescopic_2nests_atm_intel Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 333.562804 -The maximum resident set size (KB) = 497284 +The total amount of wall time = 335.884116 +The maximum resident set size (KB) = 493196 Test 130 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_1nest_atm_intel Checking test 131 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4603,14 +4603,14 @@ Checking test 131 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 132.995751 -The maximum resident set size (KB) = 392268 +The total amount of wall time = 127.036100 +The maximum resident set size (KB) = 389448 Test 131 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_multiple_4nests_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_multiple_4nests_atm_intel Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4692,14 +4692,14 @@ Checking test 132 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 370.955412 -The maximum resident set size (KB) = 456392 +The total amount of wall time = 375.246874 +The maximum resident set size (KB) = 457472 Test 132 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_specified_moving_1nest_atm_intel Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 189.016256 -The maximum resident set size (KB) = 511904 +The total amount of wall time = 187.079160 +The maximum resident set size (KB) = 508036 Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_intel Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4737,14 +4737,14 @@ Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 173.741243 -The maximum resident set size (KB) = 1233084 +The total amount of wall time = 174.805779 +The maximum resident set size (KB) = 511836 Test 134 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4753,28 +4753,28 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 217.563287 -The maximum resident set size (KB) = 586808 +The total amount of wall time = 222.392445 +The maximum resident set size (KB) = 587100 Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_global_storm_following_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_storm_following_1nest_atm_intel Checking test 136 hafs_global_storm_following_1nest_atm_intel 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 = 64.779542 -The maximum resident set size (KB) = 427384 +The total amount of wall time = 66.240057 +The maximum resident set size (KB) = 429872 Test 136 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/gnv1_nested_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/gnv1_nested_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_nested_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_nested_intel Checking test 137 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4821,28 +4821,28 @@ Checking test 137 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 192.661897 -The maximum resident set size (KB) = 784416 +The total amount of wall time = 197.748290 +The maximum resident set size (KB) = 783544 Test 137 gnv1_nested_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 732.193463 -The maximum resident set size (KB) = 611776 +The total amount of wall time = 719.803295 +The maximum resident set size (KB) = 611616 Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4853,14 +4853,14 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 419.068818 -The maximum resident set size (KB) = 626428 +The total amount of wall time = 424.211345 +The maximum resident set size (KB) = 623732 Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4871,14 +4871,14 @@ Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 422.708319 -The maximum resident set size (KB) = 681652 +The total amount of wall time = 424.242998 +The maximum resident set size (KB) = 677660 Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -4888,14 +4888,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 307.553309 -The maximum resident set size (KB) = 673860 +The total amount of wall time = 312.677914 +The maximum resident set size (KB) = 679512 Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_intel Checking test 142 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4903,14 +4903,14 @@ Checking test 142 hafs_regional_docn_intel 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 = 320.902519 -The maximum resident set size (KB) = 749688 +The total amount of wall time = 328.493783 +The maximum resident set size (KB) = 749004 Test 142 hafs_regional_docn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_docn_oisst_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_oisst_intel Checking test 143 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4918,131 +4918,131 @@ Checking test 143 hafs_regional_docn_oisst_intel 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 = 325.503921 -The maximum resident set size (KB) = 735064 +The total amount of wall time = 329.730264 +The maximum resident set size (KB) = 738300 Test 143 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/hafs_regional_datm_cdeps_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_datm_cdeps_intel Checking test 144 hafs_regional_datm_cdeps_intel 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 = 958.132693 -The maximum resident set size (KB) = 892076 +The total amount of wall time = 961.863712 +The maximum resident set size (KB) = 893760 Test 144 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_intel Checking test 145 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.793267 -The maximum resident set size (KB) = 760576 +The total amount of wall time = 143.709114 +The maximum resident set size (KB) = 760508 Test 145 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_restart_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_restart_cfsr_intel Checking test 146 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 85.265694 -The maximum resident set size (KB) = 749492 +The total amount of wall time = 87.967913 +The maximum resident set size (KB) = 748932 Test 146 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_gefs_intel Checking test 147 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 134.524110 -The maximum resident set size (KB) = 641140 +The total amount of wall time = 134.874445 +The maximum resident set size (KB) = 640976 Test 147 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_iau_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_iau_gefs_intel Checking test 148 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 136.665812 -The maximum resident set size (KB) = 639816 +The total amount of wall time = 137.946855 +The maximum resident set size (KB) = 724064 Test 148 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_stochy_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_stochy_gefs_intel Checking test 149 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.937302 -The maximum resident set size (KB) = 639876 +The total amount of wall time = 137.770990 +The maximum resident set size (KB) = 641196 Test 149 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_ciceC_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_ciceC_cfsr_intel Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.269525 -The maximum resident set size (KB) = 760124 +The total amount of wall time = 142.112546 +The maximum resident set size (KB) = 760000 Test 150 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_cfsr_intel Checking test 151 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.730302 -The maximum resident set size (KB) = 760396 +The total amount of wall time = 142.271849 +The maximum resident set size (KB) = 761236 Test 151 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_bulk_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_gefs_intel Checking test 152 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 137.415426 -The maximum resident set size (KB) = 640580 +The total amount of wall time = 133.334822 +The maximum resident set size (KB) = 1233084 Test 152 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_cfsr_intel Checking test 153 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5051,14 +5051,14 @@ Checking test 153 datm_cdeps_mx025_cfsr_intel 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 = 330.260535 -The maximum resident set size (KB) = 689340 +The total amount of wall time = 329.109469 +The maximum resident set size (KB) = 689436 Test 153 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_mx025_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_gefs_intel Checking test 154 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5067,77 +5067,77 @@ Checking test 154 datm_cdeps_mx025_gefs_intel 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 = 329.095164 -The maximum resident set size (KB) = 674624 +The total amount of wall time = 327.403572 +The maximum resident set size (KB) = 669996 Test 154 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_multiple_files_cfsr_intel Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.616972 -The maximum resident set size (KB) = 762216 +The total amount of wall time = 143.494820 +The maximum resident set size (KB) = 760780 Test 155 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_3072x1536_cfsr_intel Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 228.600162 -The maximum resident set size (KB) = 2022960 +The total amount of wall time = 230.972903 +The maximum resident set size (KB) = 2019780 Test 156 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_gfs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_gfs_intel Checking test 157 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK -The total amount of wall time = 228.079068 -The maximum resident set size (KB) = 2020520 +The total amount of wall time = 230.700660 +The maximum resident set size (KB) = 2019700 Test 157 datm_cdeps_gfs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_debug_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_debug_cfsr_intel Checking test 158 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 300.854818 -The maximum resident set size (KB) = 745600 +The total amount of wall time = 300.017368 +The maximum resident set size (KB) = 732788 Test 158 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_control_cfsr_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_faster_intel Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 142.323304 -The maximum resident set size (KB) = 762756 +The total amount of wall time = 144.227402 +The maximum resident set size (KB) = 749192 Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_gswp3_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_gswp3_intel Checking test 160 datm_cdeps_lnd_gswp3_intel 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 @@ -5146,14 +5146,14 @@ Checking test 160 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -The total amount of wall time = 67.056311 -The maximum resident set size (KB) = 312788 +The total amount of wall time = 73.950560 +The maximum resident set size (KB) = 308924 Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_intel Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5162,14 +5162,14 @@ Checking test 161 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 62.235638 -The maximum resident set size (KB) = 450668 +The total amount of wall time = 67.380854 +The maximum resident set size (KB) = 456020 Test 161 datm_cdeps_lnd_era5_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/datm_cdeps_lnd_era5_rst_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_rst_intel Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5178,14 +5178,14 @@ Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK -The total amount of wall time = 40.095661 -The maximum resident set size (KB) = 449800 +The total amount of wall time = 37.293869 +The maximum resident set size (KB) = 449656 Test 162 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_sbs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_sbs_intel Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5274,14 +5274,14 @@ Checking test 163 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 499.137149 -The maximum resident set size (KB) = 1631368 +The total amount of wall time = 491.630899 +The maximum resident set size (KB) = 1632552 Test 163 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_p8_atmlnd_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_intel Checking test 164 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5370,14 +5370,14 @@ Checking test 164 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 543.898697 -The maximum resident set size (KB) = 1633272 +The total amount of wall time = 485.377504 +The maximum resident set size (KB) = 1627324 Test 164 control_p8_atmlnd_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_restart_p8_atmlnd_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_atmlnd_intel Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5398,14 +5398,14 @@ Checking test 165 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 312.354665 -The maximum resident set size (KB) = 849704 +The total amount of wall time = 263.797583 +The maximum resident set size (KB) = 847728 Test 165 control_restart_p8_atmlnd_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmwav_control_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmwav_control_noaero_p8_intel Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5448,14 +5448,14 @@ Checking test 166 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 84.268422 -The maximum resident set size (KB) = 1637212 +The total amount of wall time = 84.633226 +The maximum resident set size (KB) = 1633040 Test 166 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/control_atmwav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/control_atmwav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_atmwav_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_atmwav_intel Checking test 167 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5499,14 +5499,14 @@ Checking test 167 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 78.798429 -The maximum resident set size (KB) = 635264 +The total amount of wall time = 80.485781 +The maximum resident set size (KB) = 636108 Test 167 control_atmwav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_intel Checking test 168 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5550,14 +5550,14 @@ Checking test 168 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 214.964561 -The maximum resident set size (KB) = 2944800 +The total amount of wall time = 207.113665 +The maximum resident set size (KB) = 2944472 Test 168 atmaero_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_intel Checking test 169 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5601,14 +5601,14 @@ Checking test 169 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.475437 -The maximum resident set size (KB) = 3002404 +The total amount of wall time = 246.420830 +The maximum resident set size (KB) = 2996652 Test 169 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_71143/atmaero_control_p8_rad_micro_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_micro_intel Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5652,12 +5652,12 @@ Checking test 170 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 264.243751 -The maximum resident set size (KB) = 3011032 +The total amount of wall time = 258.597767 +The maximum resident set size (KB) = 3010708 Test 170 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Mon 12 Feb 2024 05:17:17 PM MST -Elapsed time: 03h:41m:00s. Have a nice day! +Tue 13 Feb 2024 04:43:31 PM MST +Elapsed time: 01h:34m:31s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 46faa843f1..0ff1aab4f1 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,62 +1,62 @@ -Mon 12 Feb 2024 03:08:37 PM EST +Tue 13 Feb 2024 09:10:06 PM EST Start Regression test -Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 573 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 332 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 594 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 397 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 633 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 642 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 617 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 335 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 641 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 119 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 640 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 667 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 671 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 330 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 643 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 601 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 759 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 326 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 732 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 637 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 750 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile hafsw_debug_intel elapsed time 386 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile hafsw_faster_intel elapsed time 856 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 700 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 699 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 584 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 653 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 674 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 838 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 444 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1151 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 437 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 977 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 789 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 420 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 744 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 416 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1121 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_mixedmode_intel +Compile hafsw_intel elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 661 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 778 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 455 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1137 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 973 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 793 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 411 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 429 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1138 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 302.927125 - 0: The maximum resident set size (KB) = 3072904 + 0: The total amount of wall time = 305.691523 + 0: The maximum resident set size (KB) = 3075132 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 778.782654 - 0: The maximum resident set size (KB) = 1694684 + 0: The total amount of wall time = 768.833767 + 0: The maximum resident set size (KB) = 1696664 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_gfsv17_iau_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 839.979536 - 0: The maximum resident set size (KB) = 1807284 + 0: The total amount of wall time = 1142.230940 + 0: The maximum resident set size (KB) = 1808912 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.871790 - 0: The maximum resident set size (KB) = 943668 + 0: The total amount of wall time = 505.755914 + 0: The maximum resident set size (KB) = 945668 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 860.154351 - 0: The maximum resident set size (KB) = 1668000 + 0: The total amount of wall time = 855.073506 + 0: The maximum resident set size (KB) = 1668456 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_gfsv17_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1418.880398 - 0: The maximum resident set size (KB) = 1699528 + 0: The total amount of wall time = 1505.226571 + 0: The maximum resident set size (KB) = 1698600 -Test 006 cpld_debug_gfsv17_intel PASS +Test 006 cpld_debug_gfsv17_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.184679 - 0: The maximum resident set size (KB) = 3099592 + 0: The total amount of wall time = 345.484112 + 0: The maximum resident set size (KB) = 3099188 Test 007 cpld_control_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8.v2.sfc_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 346.673313 - 0: The maximum resident set size (KB) = 3098656 + 0: The total amount of wall time = 346.484339 + 0: The maximum resident set size (KB) = 3098412 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 206.050893 - 0: The maximum resident set size (KB) = 3157164 + 0: The total amount of wall time = 200.236786 + 0: The maximum resident set size (KB) = 3157348 Test 009 cpld_restart_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_qr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.819580 - 0: The maximum resident set size (KB) = 3123012 + 0: The total amount of wall time = 350.840908 + 0: The maximum resident set size (KB) = 3122872 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_qr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.099039 - 0: The maximum resident set size (KB) = 3177580 + 0: The total amount of wall time = 204.831802 + 0: The maximum resident set size (KB) = 3177892 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_2threads_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 316.039625 - 0: The maximum resident set size (KB) = 3408160 + 0: The total amount of wall time = 312.769607 + 0: The maximum resident set size (KB) = 3413048 -Test 012 cpld_2threads_p8_intel PASS +Test 012 cpld_2threads_p8_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_decomp_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 342.515186 - 0: The maximum resident set size (KB) = 3097900 + 0: The total amount of wall time = 341.872196 + 0: The maximum resident set size (KB) = 3097968 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 291.518774 - 0: The maximum resident set size (KB) = 3022580 + 0: The total amount of wall time = 288.676367 + 0: The maximum resident set size (KB) = 3022548 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_ciceC_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.252258 - 0: The maximum resident set size (KB) = 3099892 + 0: The total amount of wall time = 345.661533 + 0: The maximum resident set size (KB) = 3099624 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c192_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 585.770834 - 0: The maximum resident set size (KB) = 3269848 + 0: The total amount of wall time = 579.815625 + 0: The maximum resident set size (KB) = 3266076 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_c192_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 399.216434 - 0: The maximum resident set size (KB) = 3606524 + 0: The total amount of wall time = 395.432614 + 0: The maximum resident set size (KB) = 3602020 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_bmark_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 720.776891 - 0: The maximum resident set size (KB) = 4040212 + 0: The total amount of wall time = 716.188991 + 0: The maximum resident set size (KB) = 4039344 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_bmark_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 501.070542 - 0: The maximum resident set size (KB) = 4347312 + 0: The total amount of wall time = 678.789231 + 0: The maximum resident set size (KB) = 4343348 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_s2sa_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 334.481915 - 0: The maximum resident set size (KB) = 3067832 + 0: The total amount of wall time = 330.572343 + 0: The maximum resident set size (KB) = 3067636 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 253.647382 - 0: The maximum resident set size (KB) = 1687916 + 0: The total amount of wall time = 250.697619 + 0: The maximum resident set size (KB) = 1687700 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_nowave_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 262.694999 - 0: The maximum resident set size (KB) = 1731580 + 0: The total amount of wall time = 263.137295 + 0: The maximum resident set size (KB) = 1733072 -Test 022 cpld_control_nowave_noaero_p8_intel PASS +Test 022 cpld_control_nowave_noaero_p8_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 483.815659 - 0: The maximum resident set size (KB) = 3131940 + 0: The total amount of wall time = 490.819261 + 0: The maximum resident set size (KB) = 3133160 Test 023 cpld_debug_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.948123 - 0: The maximum resident set size (KB) = 1696372 + 0: The total amount of wall time = 317.936060 + 0: The maximum resident set size (KB) = 1698516 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_noaero_p8_agrid_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 266.580683 - 0: The maximum resident set size (KB) = 1730812 + 0: The total amount of wall time = 262.472674 + 0: The maximum resident set size (KB) = 1728840 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_c48_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel 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 = 407.023321 - 0: The maximum resident set size (KB) = 2662848 + 0: The total amount of wall time = 405.134034 + 0: The maximum resident set size (KB) = 2658784 Test 026 cpld_control_c48_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_p8_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 341.208407 - 0: The maximum resident set size (KB) = 3099324 + 0: The total amount of wall time = 338.750993 + 0: The maximum resident set size (KB) = 3099228 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_control_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 846.791363 - 0: The maximum resident set size (KB) = 1702492 + 0: The total amount of wall time = 1021.284459 + 0: The maximum resident set size (KB) = 1702192 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_restart_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.875815 - 0: The maximum resident set size (KB) = 1001544 + 0: The total amount of wall time = 585.151313 + 0: The maximum resident set size (KB) = 1001268 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_mpi_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1000.903957 - 0: The maximum resident set size (KB) = 1683420 + 0: The total amount of wall time = 1342.774093 + 0: The maximum resident set size (KB) = 1682980 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/cpld_debug_pdlib_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1578.890446 - 0: The maximum resident set size (KB) = 1710936 + 0: The total amount of wall time = 1741.623600 + 0: The maximum resident set size (KB) = 1707796 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_flake_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.519177 - 0: The maximum resident set size (KB) = 671944 + 0: The total amount of wall time = 194.802237 + 0: The maximum resident set size (KB) = 672956 Test 032 control_flake_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2080,14 +2080,14 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 123.053283 - 0: The maximum resident set size (KB) = 617448 + 0: The total amount of wall time = 122.228754 + 0: The maximum resident set size (KB) = 616988 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_parallel_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 129.731258 - 0: The maximum resident set size (KB) = 625648 + 0: The total amount of wall time = 127.524716 + 0: The maximum resident set size (KB) = 625552 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_latlon_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.065822 - 0: The maximum resident set size (KB) = 620888 + 0: The total amount of wall time = 125.476680 + 0: The maximum resident set size (KB) = 620552 Test 035 control_latlon_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.926854 - 0: The maximum resident set size (KB) = 620424 + 0: The total amount of wall time = 177.930057 + 0: The maximum resident set size (KB) = 620536 -Test 036 control_wrtGauss_netcdf_parallel_intel PASS +Test 036 control_wrtGauss_netcdf_parallel_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 335.703017 -0: The maximum resident set size (KB) = 726784 +0: The total amount of wall time = 329.882070 +0: The maximum resident set size (KB) = 721068 Test 037 control_c48_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c48.v2.sfc_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 338.261876 -0: The maximum resident set size (KB) = 726516 +0: The total amount of wall time = 331.177350 +0: The maximum resident set size (KB) = 726680 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c192_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2248,32 +2248,18 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 499.433304 - 0: The maximum resident set size (KB) = 738224 + 0: The total amount of wall time = 497.207383 + 0: The maximum resident set size (KB) = 737264 Test 039 control_c192_intel PASS +Test 040 control_c384_intel FAIL -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384_intel -Checking test 040 control_c384_intel 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 - - 0: The total amount of wall time = 957.979812 - 0: The maximum resident set size (KB) = 1039552 - -Test 040 control_c384_intel PASS +Test 040 control_c384_intel FAIL -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_c384gdas_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2316,14 +2302,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 830.731498 - 0: The maximum resident set size (KB) = 1184096 + 0: The total amount of wall time = 826.416654 + 0: The maximum resident set size (KB) = 1184372 Test 041 control_c384gdas_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2334,28 +2320,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.901248 - 0: The maximum resident set size (KB) = 624520 + 0: The total amount of wall time = 84.192079 + 0: The maximum resident set size (KB) = 626112 Test 042 control_stochy_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.155766 - 0: The maximum resident set size (KB) = 428748 + 0: The total amount of wall time = 44.747256 + 0: The maximum resident set size (KB) = 428572 Test 043 control_stochy_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2366,14 +2352,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.253560 - 0: The maximum resident set size (KB) = 625668 + 0: The total amount of wall time = 77.269382 + 0: The maximum resident set size (KB) = 625808 Test 044 control_lndp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr4_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2374,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.806765 - 0: The maximum resident set size (KB) = 620592 + 0: The total amount of wall time = 124.492942 + 0: The maximum resident set size (KB) = 620832 Test 045 control_iovr4_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_iovr5_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2410,14 +2396,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.325534 - 0: The maximum resident set size (KB) = 620664 + 0: The total amount of wall time = 124.386097 + 0: The maximum resident set size (KB) = 620328 -Test 046 control_iovr5_intel PASS +Test 046 control_iovr5_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2464,14 +2450,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.419395 - 0: The maximum resident set size (KB) = 1608264 + 0: The total amount of wall time = 150.440335 + 0: The maximum resident set size (KB) = 1608432 Test 047 control_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8.v2.sfc_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2518,14 +2504,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.534138 - 0: The maximum resident set size (KB) = 1608052 + 0: The total amount of wall time = 152.796471 + 0: The maximum resident set size (KB) = 1608352 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_ugwpv1_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2572,14 +2558,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.477010 - 0: The maximum resident set size (KB) = 1610928 + 0: The total amount of wall time = 147.777482 + 0: The maximum resident set size (KB) = 1611064 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2618,14 +2604,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 81.836517 - 0: The maximum resident set size (KB) = 791548 + 0: The total amount of wall time = 80.544323 + 0: The maximum resident set size (KB) = 790948 -Test 050 control_restart_p8_intel PASS +Test 050 control_restart_p8_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_noqr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2672,14 +2658,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 151.188883 - 0: The maximum resident set size (KB) = 1596436 + 0: The total amount of wall time = 147.931967 + 0: The maximum resident set size (KB) = 1596776 Test 051 control_noqr_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_noqr_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2718,64 +2704,18 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 82.527801 - 0: The maximum resident set size (KB) = 794208 + 0: The total amount of wall time = 79.281512 + 0: The maximum resident set size (KB) = 794372 Test 052 control_restart_noqr_p8_intel PASS +Test 053 control_decomp_p8_intel FAIL -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_decomp_p8_intel -Checking test 053 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 154.031589 - 0: The maximum resident set size (KB) = 1595768 - -Test 053 control_decomp_p8_intel PASS +Test 053 control_decomp_p8_intel FAIL -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_2threads_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2818,14 +2758,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.017941 - 0: The maximum resident set size (KB) = 1679112 + 0: The total amount of wall time = 130.458684 + 0: The maximum resident set size (KB) = 1691040 -Test 054 control_2threads_p8_intel PASS +Test 054 control_2threads_p8_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_lndp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2844,14 +2784,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 272.862503 - 0: The maximum resident set size (KB) = 1607632 + 0: The total amount of wall time = 268.619402 + 0: The maximum resident set size (KB) = 1608368 Test 055 control_p8_lndp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_rrtmgp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2898,14 +2838,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 203.167872 - 0: The maximum resident set size (KB) = 1658756 + 0: The total amount of wall time = 201.397866 + 0: The maximum resident set size (KB) = 1659016 -Test 056 control_p8_rrtmgp_intel PASS +Test 056 control_p8_rrtmgp_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_mynn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2952,14 +2892,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.587152 - 0: The maximum resident set size (KB) = 1614716 + 0: The total amount of wall time = 150.308794 + 0: The maximum resident set size (KB) = 1614192 Test 057 control_p8_mynn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/merra2_thompson_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3006,14 +2946,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.405361 - 0: The maximum resident set size (KB) = 1615360 + 0: The total amount of wall time = 180.102046 + 0: The maximum resident set size (KB) = 1615268 Test 058 merra2_thompson_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3024,28 +2964,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.299632 - 0: The maximum resident set size (KB) = 617240 + 0: The total amount of wall time = 404.799517 + 0: The maximum resident set size (KB) = 619056 -Test 059 regional_control_intel PASS +Test 059 regional_control_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 141.768709 - 0: The maximum resident set size (KB) = 790840 + 0: The total amount of wall time = 256.263821 + 0: The maximum resident set size (KB) = 791744 Test 060 regional_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3056,14 +2996,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 284.199929 - 0: The maximum resident set size (KB) = 615692 + 0: The total amount of wall time = 280.323348 + 0: The maximum resident set size (KB) = 618076 -Test 061 regional_decomp_intel PASS +Test 061 regional_decomp_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3074,14 +3014,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 159.089309 - 0: The maximum resident set size (KB) = 758484 + 0: The total amount of wall time = 156.148607 + 0: The maximum resident set size (KB) = 760288 -Test 062 regional_2threads_intel PASS +Test 062 regional_2threads_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_noquilt_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3089,28 +3029,28 @@ Checking test 063 regional_noquilt_intel 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 = 262.559269 - 0: The maximum resident set size (KB) = 1154816 + 0: The total amount of wall time = 260.048109 + 0: The maximum resident set size (KB) = 1156968 Test 063 regional_noquilt_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_netcdf_parallel_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 264.529098 - 0: The maximum resident set size (KB) = 616676 + 0: The total amount of wall time = 261.697345 + 0: The maximum resident set size (KB) = 618524 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_2dwrtdecomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3121,14 +3061,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 266.981263 - 0: The maximum resident set size (KB) = 617492 + 0: The total amount of wall time = 267.488333 + 0: The maximum resident set size (KB) = 619408 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_wofs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3139,14 +3079,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 344.823623 - 0: The maximum resident set size (KB) = 1590864 + 0: The total amount of wall time = 344.792952 + 0: The maximum resident set size (KB) = 1593180 Test 066 regional_wofs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3193,14 +3133,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.138083 - 0: The maximum resident set size (KB) = 1009772 + 0: The total amount of wall time = 374.990671 + 0: The maximum resident set size (KB) = 1009724 -Test 067 rap_control_intel PASS +Test 067 rap_control_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3211,14 +3151,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 223.992209 - 0: The maximum resident set size (KB) = 1186336 + 0: The total amount of wall time = 222.258833 + 0: The maximum resident set size (KB) = 1186660 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3265,14 +3205,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 385.420782 - 0: The maximum resident set size (KB) = 1009116 + 0: The total amount of wall time = 385.268902 + 0: The maximum resident set size (KB) = 1009264 Test 069 rap_decomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3319,14 +3259,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.823571 - 0: The maximum resident set size (KB) = 1100420 + 0: The total amount of wall time = 344.578925 + 0: The maximum resident set size (KB) = 1094888 Test 070 rap_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3365,68 +3305,18 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.548879 - 0: The maximum resident set size (KB) = 878392 + 0: The total amount of wall time = 190.039475 + 0: The maximum resident set size (KB) = 878836 -Test 071 rap_restart_intel PASS +Test 071 rap_restart_intel PASS Tries: 2 +Test 072 rap_sfcdiff_intel FAIL -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_intel -Checking test 072 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 373.753296 - 0: The maximum resident set size (KB) = 1007572 +Test 072 rap_sfcdiff_intel FAIL -Test 072 rap_sfcdiff_intel PASS - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,60 +3363,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.947137 - 0: The maximum resident set size (KB) = 1005552 + 0: The total amount of wall time = 386.309726 + 0: The maximum resident set size (KB) = 1005580 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_restart_intel -Checking test 074 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 280.753318 - 0: The maximum resident set size (KB) = 878588 - -Test 074 rap_sfcdiff_restart_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3573,14 +3417,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.449018 - 0: The maximum resident set size (KB) = 1004824 + 0: The total amount of wall time = 192.160358 + 0: The maximum resident set size (KB) = 1004964 Test 075 hrrr_control_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3627,14 +3471,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.593185 - 0: The maximum resident set size (KB) = 1006600 + 0: The total amount of wall time = 197.403073 + 0: The maximum resident set size (KB) = 1006352 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3681,28 +3525,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.491061 - 0: The maximum resident set size (KB) = 1078392 + 0: The total amount of wall time = 171.970249 + 0: The maximum resident set size (KB) = 1086060 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.325676 - 0: The maximum resident set size (KB) = 836064 + 0: The total amount of wall time = 102.080757 + 0: The maximum resident set size (KB) = 836524 Test 078 hrrr_control_restart_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +3593,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.309554 - 0: The maximum resident set size (KB) = 1001900 + 0: The total amount of wall time = 366.664268 + 0: The maximum resident set size (KB) = 1001700 Test 079 rrfs_v1beta_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3771,14 +3615,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 458.099433 - 0: The maximum resident set size (KB) = 1967676 + 0: The total amount of wall time = 636.969061 + 0: The maximum resident set size (KB) = 1967556 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3637,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 444.214178 - 0: The maximum resident set size (KB) = 1953212 + 0: The total amount of wall time = 608.083869 + 0: The maximum resident set size (KB) = 1951840 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3811,14 +3655,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 322.372971 - 0: The maximum resident set size (KB) = 694272 + 0: The total amount of wall time = 320.651353 + 0: The maximum resident set size (KB) = 696016 Test 082 control_csawmg_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3829,14 +3673,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 318.059281 - 0: The maximum resident set size (KB) = 692400 + 0: The total amount of wall time = 317.540935 + 0: The maximum resident set size (KB) = 693824 Test 083 control_csawmgt_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3847,26 +3691,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.057987 - 0: The maximum resident set size (KB) = 654528 + 0: The total amount of wall time = 173.559690 + 0: The maximum resident set size (KB) = 658336 Test 084 control_ras_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 117.671119 - 0: The maximum resident set size (KB) = 369744 + 0: The total amount of wall time = 113.521558 + 0: The maximum resident set size (KB) = 369824 -Test 085 control_wam_intel PASS +Test 085 control_wam_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3913,14 +3757,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.214110 - 0: The maximum resident set size (KB) = 1605608 + 0: The total amount of wall time = 146.659178 + 0: The maximum resident set size (KB) = 1605112 Test 086 control_p8_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_control_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3931,14 +3775,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 258.941700 - 0: The maximum resident set size (KB) = 612944 + 0: The total amount of wall time = 258.664904 + 0: The maximum resident set size (KB) = 610840 Test 087 regional_control_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_CubedSphereGrid_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3965,364 +3809,354 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 149.309010 - 0: The maximum resident set size (KB) = 777520 + 0: The total amount of wall time = 147.109219 + 0: The maximum resident set size (KB) = 778928 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.074319 - 0: The maximum resident set size (KB) = 780672 + 0: The total amount of wall time = 143.565967 + 0: The maximum resident set size (KB) = 782964 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_stochy_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.412939 - 0: The maximum resident set size (KB) = 781892 + 0: The total amount of wall time = 165.617790 + 0: The maximum resident set size (KB) = 786300 Test 090 control_stochy_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_lndp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.849615 - 0: The maximum resident set size (KB) = 788124 + 0: The total amount of wall time = 311.505065 + 0: The maximum resident set size (KB) = 789604 Test 091 control_lndp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmg_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.935812 - 0: The maximum resident set size (KB) = 824544 + 0: The total amount of wall time = 338.750301 + 0: The maximum resident set size (KB) = 826628 Test 092 control_csawmg_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_csawmgt_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel 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.763595 - 0: The maximum resident set size (KB) = 824980 + 0: The total amount of wall time = 393.335626 + 0: The maximum resident set size (KB) = 827424 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_ras_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_debug_intel Checking test 094 control_ras_debug_intel 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.810305 - 0: The maximum resident set size (KB) = 794536 + 0: The total amount of wall time = 276.828082 + 0: The maximum resident set size (KB) = 796316 Test 094 control_ras_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_diag_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.903900 - 0: The maximum resident set size (KB) = 842952 + 0: The total amount of wall time = 152.496023 + 0: The maximum resident set size (KB) = 844720 -Test 095 control_diag_debug_intel PASS +Test 095 control_diag_debug_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_debug_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.202235 - 0: The maximum resident set size (KB) = 1620448 + 0: The total amount of wall time = 305.388531 + 0: The maximum resident set size (KB) = 1622656 Test 096 control_debug_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 985.541916 - 0: The maximum resident set size (KB) = 634488 + 0: The total amount of wall time = 1183.753954 + 0: The maximum resident set size (KB) = 636760 Test 097 regional_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.677914 - 0: The maximum resident set size (KB) = 1166348 + 0: The total amount of wall time = 320.423499 + 0: The maximum resident set size (KB) = 1168824 Test 098 rap_control_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.010908 - 0: The maximum resident set size (KB) = 1165252 + 0: The total amount of wall time = 407.957992 + 0: The maximum resident set size (KB) = 1167056 Test 099 hrrr_control_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_gf_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel 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.337256 - 0: The maximum resident set size (KB) = 1167208 + 0: The total amount of wall time = 277.547241 + 0: The maximum resident set size (KB) = 1169220 -Test 100 hrrr_gf_debug_intel PASS +Test 100 hrrr_gf_debug_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_c3_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.665035 - 0: The maximum resident set size (KB) = 1167392 + 0: The total amount of wall time = 316.786811 + 0: The maximum resident set size (KB) = 1169672 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_drag_suite_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel 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.856031 - 0: The maximum resident set size (KB) = 1166516 + 0: The total amount of wall time = 323.700824 + 0: The maximum resident set size (KB) = 1168456 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_diag_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 287.949256 - 0: The maximum resident set size (KB) = 1250884 + 0: The total amount of wall time = 292.714612 + 0: The maximum resident set size (KB) = 1253424 -Test 103 rap_diag_debug_intel PASS +Test 103 rap_diag_debug_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_cires_ugwp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel 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.827298 - 0: The maximum resident set size (KB) = 1165892 + 0: The total amount of wall time = 279.857804 + 0: The maximum resident set size (KB) = 1168648 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_unified_ugwp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel 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.495745 - 0: The maximum resident set size (KB) = 1167272 + 0: The total amount of wall time = 286.273871 + 0: The maximum resident set size (KB) = 1170168 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_lndp_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.721260 - 0: The maximum resident set size (KB) = 1168560 + 0: The total amount of wall time = 290.273669 + 0: The maximum resident set size (KB) = 1170664 Test 106 rap_lndp_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_progcld_thompson_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel 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.671011 - 0: The maximum resident set size (KB) = 1166600 + 0: The total amount of wall time = 274.403870 + 0: The maximum resident set size (KB) = 1168416 -Test 107 rap_progcld_thompson_debug_intel PASS +Test 107 rap_progcld_thompson_debug_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.201106 - 0: The maximum resident set size (KB) = 1166588 + 0: The total amount of wall time = 329.956206 + 0: The maximum resident set size (KB) = 1168972 Test 108 rap_noah_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_sfcdiff_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel 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.987808 - 0: The maximum resident set size (KB) = 1164832 - -Test 109 rap_sfcdiff_debug_intel PASS + 0: The total amount of wall time = 320.061225 + 0: The maximum resident set size (KB) = 1167408 +Test 109 rap_sfcdiff_debug_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 463.855002 - 0: The maximum resident set size (KB) = 1166328 +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL -Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rrfs_v1beta_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.616546 - 0: The maximum resident set size (KB) = 1162948 + 0: The total amount of wall time = 290.893886 + 0: The maximum resident set size (KB) = 1165244 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_clm_lake_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel 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.255271 - 0: The maximum resident set size (KB) = 1168520 + 0: The total amount of wall time = 423.564715 + 0: The maximum resident set size (KB) = 1170568 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_flake_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.386397 - 0: The maximum resident set size (KB) = 1166480 + 0: The total amount of wall time = 357.070975 + 0: The maximum resident set size (KB) = 1169220 Test 113 rap_flake_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_c96_no_nest_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4363,26 +4197,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.040307 - 0: The maximum resident set size (KB) = 1169788 + 0: The total amount of wall time = 579.574524 + 0: The maximum resident set size (KB) = 1171924 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_wam_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 282.300366 - 0: The maximum resident set size (KB) = 392188 + 0: The total amount of wall time = 377.715248 + 0: The maximum resident set size (KB) = 397156 Test 115 control_wam_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4393,14 +4227,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 210.379853 - 0: The maximum resident set size (KB) = 1054000 + 0: The total amount of wall time = 350.365334 + 0: The maximum resident set size (KB) = 1051460 -Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4447,14 +4281,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.230220 - 0: The maximum resident set size (KB) = 889908 + 0: The total amount of wall time = 505.217133 + 0: The maximum resident set size (KB) = 890260 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4501,14 +4335,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.719359 - 0: The maximum resident set size (KB) = 886208 + 0: The total amount of wall time = 192.505764 + 0: The maximum resident set size (KB) = 886092 -Test 118 hrrr_control_dyn32_phy32_intel PASS +Test 118 hrrr_control_dyn32_phy32_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_2threads_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4555,14 +4389,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.761538 - 0: The maximum resident set size (KB) = 951776 + 0: The total amount of wall time = 460.999501 + 0: The maximum resident set size (KB) = 948216 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4609,14 +4443,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.749961 - 0: The maximum resident set size (KB) = 938040 + 0: The total amount of wall time = 283.500072 + 0: The maximum resident set size (KB) = 938248 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4663,14 +4497,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.239272 - 0: The maximum resident set size (KB) = 888324 + 0: The total amount of wall time = 291.961136 + 0: The maximum resident set size (KB) = 888120 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_restart_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4709,28 +4543,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.852459 - 0: The maximum resident set size (KB) = 785876 + 0: The total amount of wall time = 294.893484 + 0: The maximum resident set size (KB) = 783724 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.420440 - 0: The maximum resident set size (KB) = 767620 + 0: The total amount of wall time = 159.013967 + 0: The maximum resident set size (KB) = 765744 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_control_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,40 +4580,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 102.771843 - 0: The maximum resident set size (KB) = 1094692 + 0: The total amount of wall time = 238.284184 + 0: The maximum resident set size (KB) = 1097172 Test 124 conus13km_control_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 48.958585 - 0: The maximum resident set size (KB) = 1075768 + 0: The total amount of wall time = 1424.056822 + 0: The maximum resident set size (KB) = 1076040 Test 125 conus13km_2threads_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_restart_mismatch_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 61.268495 - 0: The maximum resident set size (KB) = 974156 + 0: The total amount of wall time = 62.067107 + 0: The maximum resident set size (KB) = 976684 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4826,42 +4660,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.332559 - 0: The maximum resident set size (KB) = 907816 + 0: The total amount of wall time = 362.031692 + 0: The maximum resident set size (KB) = 909668 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_debug_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.738767 - 0: The maximum resident set size (KB) = 1047968 + 0: The total amount of wall time = 300.916820 + 0: The maximum resident set size (KB) = 1046288 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.749135 - 0: The maximum resident set size (KB) = 1048824 + 0: The total amount of wall time = 358.335556 + 0: The maximum resident set size (KB) = 1046684 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4875,14 +4709,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 803.448842 - 0: The maximum resident set size (KB) = 1128628 + 0: The total amount of wall time = 985.912212 + 0: The maximum resident set size (KB) = 1126976 Test 130 conus13km_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_qr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4896,81 +4730,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 818.086461 - 0: The maximum resident set size (KB) = 804036 + 0: The total amount of wall time = 875.833694 + 0: The maximum resident set size (KB) = 801960 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_debug_2threads_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 466.891916 - 0: The maximum resident set size (KB) = 1110412 + 0: The total amount of wall time = 538.071379 + 0: The maximum resident set size (KB) = 1108132 -Test 132 conus13km_debug_2threads_intel PASS +Test 132 conus13km_debug_2threads_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/conus13km_radar_tten_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 792.170378 - 0: The maximum resident set size (KB) = 1194948 + 0: The total amount of wall time = 1019.130042 + 0: The maximum resident set size (KB) = 1192772 -Test 133 conus13km_radar_tten_debug_intel PASS +Test 133 conus13km_radar_tten_debug_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/rap_control_dyn64_phy32_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel 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.661010 - 0: The maximum resident set size (KB) = 1071368 + 0: The total amount of wall time = 327.827868 + 0: The maximum resident set size (KB) = 1071348 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 300.148342 - 0: The maximum resident set size (KB) = 706592 + 0: The total amount of wall time = 394.859453 + 0: The maximum resident set size (KB) = 709124 Test 135 hafs_regional_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 251.051048 - 0: The maximum resident set size (KB) = 1058064 + 0: The total amount of wall time = 368.021818 + 0: The maximum resident set size (KB) = 1059212 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4813,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 388.277073 - 0: The maximum resident set size (KB) = 754736 + 0: The total amount of wall time = 563.980963 + 0: The maximum resident set size (KB) = 754340 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_wav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4995,14 +4829,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 685.855015 - 0: The maximum resident set size (KB) = 780600 + 0: The total amount of wall time = 818.485575 + 0: The maximum resident set size (KB) = 786392 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_atm_ocn_wav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5013,14 +4847,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 770.726858 - 0: The maximum resident set size (KB) = 797796 + 0: The total amount of wall time = 970.221527 + 0: The maximum resident set size (KB) = 796688 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5042,14 +4876,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 301.517361 - 0: The maximum resident set size (KB) = 475292 + 0: The total amount of wall time = 299.241608 + 0: The maximum resident set size (KB) = 476680 -Test 140 hafs_regional_1nest_atm_intel PASS +Test 140 hafs_regional_1nest_atm_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +4892,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 386.976865 - 0: The maximum resident set size (KB) = 501012 + 0: The total amount of wall time = 538.506677 + 0: The maximum resident set size (KB) = 500536 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,7 +4909,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -5085,8 +4919,8 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -5112,14 +4946,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 159.524217 - 0: The maximum resident set size (KB) = 373112 + 0: The total amount of wall time = 325.402668 + 0: The maximum resident set size (KB) = 372812 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_multiple_4nests_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5180,7 +5014,7 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK @@ -5201,14 +5035,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 457.175622 - 0: The maximum resident set size (KB) = 444220 + 0: The total amount of wall time = 607.170594 + 0: The maximum resident set size (KB) = 445928 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5217,14 +5051,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 208.436538 - 0: The maximum resident set size (KB) = 508064 + 0: The total amount of wall time = 299.932452 + 0: The maximum resident set size (KB) = 509036 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5246,14 +5080,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 195.268159 - 0: The maximum resident set size (KB) = 510856 + 0: The total amount of wall time = 279.497011 + 0: The maximum resident set size (KB) = 511356 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5262,28 +5096,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 250.207912 - 0: The maximum resident set size (KB) = 574432 + 0: The total amount of wall time = 271.799715 + 0: The maximum resident set size (KB) = 574688 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_global_storm_following_1nest_atm_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 88.835893 - 0: The maximum resident set size (KB) = 403776 + 0: The total amount of wall time = 137.813885 + 0: The maximum resident set size (KB) = 403504 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/gnv1_nested_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5303,7 +5137,7 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK @@ -5320,9 +5154,9 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK @@ -5330,28 +5164,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 219.702752 - 0: The maximum resident set size (KB) = 768252 + 0: The total amount of wall time = 301.671339 + 0: The maximum resident set size (KB) = 766116 Test 148 gnv1_nested_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 751.119629 - 0: The maximum resident set size (KB) = 585096 + 0: The total amount of wall time = 911.754544 + 0: The maximum resident set size (KB) = 583688 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5362,14 +5196,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 439.600538 - 0: The maximum resident set size (KB) = 613948 + 0: The total amount of wall time = 579.569841 + 0: The maximum resident set size (KB) = 615088 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5380,14 +5214,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 449.792963 - 0: The maximum resident set size (KB) = 785092 + 0: The total amount of wall time = 637.421633 + 0: The maximum resident set size (KB) = 781440 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5397,14 +5231,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 346.560106 - 0: The maximum resident set size (KB) = 786376 + 0: The total amount of wall time = 457.873896 + 0: The maximum resident set size (KB) = 786932 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5412,14 +5246,14 @@ Checking test 153 hafs_regional_docn_intel 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 = 344.507089 - 0: The maximum resident set size (KB) = 745888 + 0: The total amount of wall time = 530.960101 + 0: The maximum resident set size (KB) = 744864 -Test 153 hafs_regional_docn_intel PASS +Test 153 hafs_regional_docn_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_docn_oisst_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5427,131 +5261,131 @@ Checking test 154 hafs_regional_docn_oisst_intel 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 = 348.439224 - 0: The maximum resident set size (KB) = 726700 + 0: The total amount of wall time = 423.683802 + 0: The maximum resident set size (KB) = 731512 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/hafs_regional_datm_cdeps_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 961.511637 - 0: The maximum resident set size (KB) = 893560 + 0: The total amount of wall time = 1206.080002 + 0: The maximum resident set size (KB) = 893656 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.070089 - 0: The maximum resident set size (KB) = 756320 + 0: The total amount of wall time = 152.296553 + 0: The maximum resident set size (KB) = 756308 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_restart_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 83.957679 - 0: The maximum resident set size (KB) = 745068 + 0: The total amount of wall time = 110.710474 + 0: The maximum resident set size (KB) = 745016 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 133.636546 - 0: The maximum resident set size (KB) = 637100 + 0: The total amount of wall time = 137.907340 + 0: The maximum resident set size (KB) = 637348 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_iau_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 133.872790 - 0: The maximum resident set size (KB) = 638372 + 0: The total amount of wall time = 240.138601 + 0: The maximum resident set size (KB) = 637192 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_stochy_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 134.520275 - 0: The maximum resident set size (KB) = 641208 + 0: The total amount of wall time = 241.081740 + 0: The maximum resident set size (KB) = 641328 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_ciceC_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.615348 - 0: The maximum resident set size (KB) = 756648 + 0: The total amount of wall time = 233.542610 + 0: The maximum resident set size (KB) = 744688 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.417190 - 0: The maximum resident set size (KB) = 756620 + 0: The total amount of wall time = 233.547377 + 0: The maximum resident set size (KB) = 756252 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_bulk_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 131.740235 - 0: The maximum resident set size (KB) = 639596 + 0: The total amount of wall time = 225.922704 + 0: The maximum resident set size (KB) = 637292 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5560,14 +5394,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel 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 = 331.774573 - 0: The maximum resident set size (KB) = 692708 + 0: The total amount of wall time = 547.149693 + 0: The maximum resident set size (KB) = 692740 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_mx025_gefs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5576,77 +5410,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 334.080217 - 0: The maximum resident set size (KB) = 672480 + 0: The total amount of wall time = 556.076418 + 0: The maximum resident set size (KB) = 672508 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.473619 - 0: The maximum resident set size (KB) = 756536 + 0: The total amount of wall time = 150.416845 + 0: The maximum resident set size (KB) = 755880 -Test 166 datm_cdeps_multiple_files_cfsr_intel PASS +Test 166 datm_cdeps_multiple_files_cfsr_intel PASS Tries: 2 -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 270.517374 - 0: The maximum resident set size (KB) = 2012740 + 0: The total amount of wall time = 466.632408 + 0: The maximum resident set size (KB) = 2013792 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_gfs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 271.745924 - 0: The maximum resident set size (KB) = 2014856 + 0: The total amount of wall time = 381.303280 + 0: The maximum resident set size (KB) = 2013628 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_debug_cfsr_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 317.691659 - 0: The maximum resident set size (KB) = 741016 + 0: The total amount of wall time = 341.693430 + 0: The maximum resident set size (KB) = 741424 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_control_cfsr_faster_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.298008 - 0: The maximum resident set size (KB) = 744568 + 0: The total amount of wall time = 269.164372 + 0: The maximum resident set size (KB) = 756768 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_gswp3_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5655,14 +5489,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 62.974753 - 0: The maximum resident set size (KB) = 310752 + 0: The total amount of wall time = 66.017192 + 0: The maximum resident set size (KB) = 319204 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5671,14 +5505,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 54.722769 - 0: The maximum resident set size (KB) = 456600 + 0: The total amount of wall time = 160.974419 + 0: The maximum resident set size (KB) = 456484 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/datm_cdeps_lnd_era5_rst_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5687,14 +5521,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 38.979705 - 0: The maximum resident set size (KB) = 456520 + 0: The total amount of wall time = 39.498505 + 0: The maximum resident set size (KB) = 456476 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_sbs_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5783,14 +5617,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 367.320142 - 0: The maximum resident set size (KB) = 1642564 + 0: The total amount of wall time = 496.918911 + 0: The maximum resident set size (KB) = 1642988 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_p8_atmlnd_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5879,14 +5713,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 370.429712 - 0: The maximum resident set size (KB) = 1642432 + 0: The total amount of wall time = 498.954219 + 0: The maximum resident set size (KB) = 1642236 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_restart_p8_atmlnd_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5907,14 +5741,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 189.071405 - 0: The maximum resident set size (KB) = 837012 + 0: The total amount of wall time = 190.940690 + 0: The maximum resident set size (KB) = 836732 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmwav_control_noaero_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5957,14 +5791,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 89.306919 - 0: The maximum resident set size (KB) = 1651488 + 0: The total amount of wall time = 182.940262 + 0: The maximum resident set size (KB) = 1647332 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/control_atmwav_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6008,14 +5842,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 84.693035 - 0: The maximum resident set size (KB) = 639252 + 0: The total amount of wall time = 175.565771 + 0: The maximum resident set size (KB) = 638728 Test 178 control_atmwav_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6059,14 +5893,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.128453 - 0: The maximum resident set size (KB) = 2942768 + 0: The total amount of wall time = 365.960012 + 0: The maximum resident set size (KB) = 2943092 Test 179 atmaero_control_p8_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6110,14 +5944,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 275.081228 - 0: The maximum resident set size (KB) = 3011556 + 0: The total amount of wall time = 279.156469 + 0: The maximum resident set size (KB) = 3011516 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/atmaero_control_p8_rad_micro_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6161,14 +5995,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 292.094812 - 0: The maximum resident set size (KB) = 3018492 + 0: The total amount of wall time = 337.781265 + 0: The maximum resident set size (KB) = 3018336 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_148710/regional_atmaq_debug_intel +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6182,12 +6016,299 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1089.115372 - 0: The maximum resident set size (KB) = 4486556 + 0: The total amount of wall time = 1087.640368 + 0: The maximum resident set size (KB) = 4484540 Test 182 regional_atmaq_debug_intel PASS +FAILED TESTS: +control_c384_intel 040 failed in run_test +control_decomp_p8_intel 053 failed in run_test +rap_sfcdiff_intel 072 failed in run_test +rap_noah_sfcdiff_cires_ugwp_debug_intel 110 failed in run_test + +REGRESSION TEST FAILED +Tue 13 Feb 2024 10:52:07 PM EST +Elapsed time: 01h:42m:06s. Have a nice day! +Wed 14 Feb 2024 03:43:30 PM EST +Start Regression test + +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atm_debug_dyn32_intel elapsed time 410 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_c384_intel +Checking test 001 control_c384_intel 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 + + 0: The total amount of wall time = 961.784505 + 0: The maximum resident set size (KB) = 1040328 + +Test 001 control_c384_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_decomp_p8_intel +Checking test 002 control_decomp_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 153.274697 + 0: The maximum resident set size (KB) = 1595576 + +Test 002 control_decomp_p8_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_sfcdiff_intel +Checking test 003 rap_sfcdiff_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 379.638130 + 0: The maximum resident set size (KB) = 1006728 + +Test 003 rap_sfcdiff_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 449.445488 + 0: The maximum resident set size (KB) = 1168284 + +Test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS + + +REGRESSION TEST WAS SUCCESSFUL +Wed 14 Feb 2024 04:15:50 PM EST +Elapsed time: 00h:32m:25s. Have a nice day! +Wed 14 Feb 2024 06:07:11 PM EST +Start Regression test + +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile rrfs_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_intel +Checking test 001 rap_sfcdiff_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 374.833523 + 0: The maximum resident set size (KB) = 1006704 + +Test 001 rap_sfcdiff_intel PASS + + +baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_restart_intel +Checking test 002 rap_sfcdiff_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 277.608350 + 0: The maximum resident set size (KB) = 878472 + +Test 002 rap_sfcdiff_restart_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Mon 12 Feb 2024 04:57:55 PM EST -Elapsed time: 01h:49m:24s. Have a nice day! +Wed 14 Feb 2024 06:35:45 PM EST +Elapsed time: 00h:28m:40s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 59585fcf13..36c189d20a 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,76 +1,76 @@ -Mon Feb 12 19:47:52 UTC 2024 +Tue Feb 13 22:05:05 UTC 2024 Start Regression test -Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 263 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 201 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 302 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 590 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 203 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 658 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 591 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 619 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 567 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 173 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 362 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 817 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 370 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 659 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 213 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 187 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 698 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 558 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 634 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 815 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 638 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 244 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 689 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 131 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 825 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 933 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 941 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 140 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 255 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 978 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 726 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 103 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 181 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 271 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 595 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 570 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 640 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 609 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 377 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 808 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 382 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 639 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 672 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 677 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 669 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 240 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 685 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 124 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 846 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 719 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 259 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 134 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 982 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 732 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.568631 - 0: The maximum resident set size (KB) = 3165948 + 0: The total amount of wall time = 306.162434 + 0: The maximum resident set size (KB) = 3177916 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 953.189154 - 0: The maximum resident set size (KB) = 1734356 + 0: The total amount of wall time = 968.998956 + 0: The maximum resident set size (KB) = 1735588 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_gfsv17_iau_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1000.322970 - 0: The maximum resident set size (KB) = 1976656 + 0: The total amount of wall time = 989.232112 + 0: The maximum resident set size (KB) = 2013228 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.097126 - 0: The maximum resident set size (KB) = 1107408 + 0: The total amount of wall time = 444.956503 + 0: The maximum resident set size (KB) = 1105260 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1086.535581 - 0: The maximum resident set size (KB) = 1609592 + 0: The total amount of wall time = 1077.253317 + 0: The maximum resident set size (KB) = 1632176 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_gfsv17_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1323.801230 - 0: The maximum resident set size (KB) = 1674992 + 0: The total amount of wall time = 1326.420367 + 0: The maximum resident set size (KB) = 1676540 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.204219 - 0: The maximum resident set size (KB) = 3179344 + 0: The total amount of wall time = 329.579588 + 0: The maximum resident set size (KB) = 3153600 Test 007 cpld_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.626342 - 0: The maximum resident set size (KB) = 3164020 + 0: The total amount of wall time = 325.639483 + 0: The maximum resident set size (KB) = 3198172 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 187.411107 - 0: The maximum resident set size (KB) = 3224904 + 0: The total amount of wall time = 188.165361 + 0: The maximum resident set size (KB) = 3216844 Test 009 cpld_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.008969 - 0: The maximum resident set size (KB) = 3174304 + 0: The total amount of wall time = 330.401607 + 0: The maximum resident set size (KB) = 3222660 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_qr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 188.438442 - 0: The maximum resident set size (KB) = 3218256 + 0: The total amount of wall time = 190.367743 + 0: The maximum resident set size (KB) = 3263160 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.850329 - 0: The maximum resident set size (KB) = 3533288 + 0: The total amount of wall time = 313.046528 + 0: The maximum resident set size (KB) = 3538236 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.885583 - 0: The maximum resident set size (KB) = 3148300 + 0: The total amount of wall time = 361.106015 + 0: The maximum resident set size (KB) = 3190880 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 270.450727 - 0: The maximum resident set size (KB) = 3010424 + 0: The total amount of wall time = 272.126792 + 0: The maximum resident set size (KB) = 3036460 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_ciceC_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 325.063135 - 0: The maximum resident set size (KB) = 3167680 + 0: The total amount of wall time = 332.067931 + 0: The maximum resident set size (KB) = 3198452 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 564.525842 - 0: The maximum resident set size (KB) = 3314568 + 0: The total amount of wall time = 574.382600 + 0: The maximum resident set size (KB) = 3323308 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_c192_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 346.698895 - 0: The maximum resident set size (KB) = 3603972 + 0: The total amount of wall time = 348.063826 + 0: The maximum resident set size (KB) = 3601716 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 590.466204 - 0: The maximum resident set size (KB) = 4099700 + 0: The total amount of wall time = 584.257718 + 0: The maximum resident set size (KB) = 4104988 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_bmark_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 382.195540 - 0: The maximum resident set size (KB) = 4338092 + 0: The total amount of wall time = 380.069043 + 0: The maximum resident set size (KB) = 4311528 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_s2sa_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 305.352616 - 0: The maximum resident set size (KB) = 3144248 + 0: The total amount of wall time = 309.495065 + 0: The maximum resident set size (KB) = 3116144 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 259.907598 - 0: The maximum resident set size (KB) = 1711160 + 0: The total amount of wall time = 259.170830 + 0: The maximum resident set size (KB) = 1724868 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 250.773875 - 0: The maximum resident set size (KB) = 1783816 + 0: The total amount of wall time = 248.373795 + 0: The maximum resident set size (KB) = 1726384 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 475.895126 - 0: The maximum resident set size (KB) = 3236412 + 0: The total amount of wall time = 468.095557 + 0: The maximum resident set size (KB) = 3230788 Test 023 cpld_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.001112 - 0: The maximum resident set size (KB) = 1746856 + 0: The total amount of wall time = 329.356604 + 0: The maximum resident set size (KB) = 1739652 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_noaero_p8_agrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 247.510976 - 0: The maximum resident set size (KB) = 1773060 + 0: The total amount of wall time = 252.680842 + 0: The maximum resident set size (KB) = 1763624 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 552.228821 - 0: The maximum resident set size (KB) = 2814960 + 0: The total amount of wall time = 547.558782 + 0: The maximum resident set size (KB) = 2834556 Test 026 cpld_control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 303.688245 - 0: The maximum resident set size (KB) = 3196616 + 0: The total amount of wall time = 312.226704 + 0: The maximum resident set size (KB) = 3153648 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 962.426891 - 0: The maximum resident set size (KB) = 1721908 + 0: The total amount of wall time = 970.148394 + 0: The maximum resident set size (KB) = 1761512 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_restart_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.116180 - 0: The maximum resident set size (KB) = 1168896 + 0: The total amount of wall time = 446.820891 + 0: The maximum resident set size (KB) = 1164280 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_mpi_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1105.827106 - 0: The maximum resident set size (KB) = 1660240 + 0: The total amount of wall time = 1103.855854 + 0: The maximum resident set size (KB) = 1663148 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1464.899827 - 0: The maximum resident set size (KB) = 1637188 + 0: The total amount of wall time = 1451.515831 + 0: The maximum resident set size (KB) = 1707568 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.666624 - 0: The maximum resident set size (KB) = 695552 + 0: The total amount of wall time = 219.217790 + 0: The maximum resident set size (KB) = 693864 Test 032 control_flake_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,21 +2094,21 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 133.157021 - 0: The maximum resident set size (KB) = 644768 + 0: The total amount of wall time = 133.045207 + 0: The maximum resident set size (KB) = 648436 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf024.nc .........OK Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK @@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.664995 - 0: The maximum resident set size (KB) = 656332 + 0: The total amount of wall time = 139.205123 + 0: The maximum resident set size (KB) = 656152 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_latlon_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.333064 - 0: The maximum resident set size (KB) = 644048 + 0: The total amount of wall time = 134.140836 + 0: The maximum resident set size (KB) = 641040 Test 035 control_latlon_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2152,14 +2152,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.337441 - 0: The maximum resident set size (KB) = 651576 + 0: The total amount of wall time = 137.680870 + 0: The maximum resident set size (KB) = 651660 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 371.232212 -0: The maximum resident set size (KB) = 867588 +0: The total amount of wall time = 372.313279 +0: The maximum resident set size (KB) = 873512 Test 037 control_c48_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 371.884923 -0: The maximum resident set size (KB) = 867128 +0: The total amount of wall time = 366.728143 +0: The maximum resident set size (KB) = 875888 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c192_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 525.577267 - 0: The maximum resident set size (KB) = 851348 + 0: The total amount of wall time = 529.665888 + 0: The maximum resident set size (KB) = 829532 Test 039 control_c192_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 521.524701 - 0: The maximum resident set size (KB) = 1284192 + 0: The total amount of wall time = 535.347948 + 0: The maximum resident set size (KB) = 1278920 Test 040 control_c384_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c384gdas_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2301,9 +2301,9 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK @@ -2312,7 +2312,7 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK @@ -2330,14 +2330,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.726821 - 0: The maximum resident set size (KB) = 1392736 + 0: The total amount of wall time = 461.803514 + 0: The maximum resident set size (KB) = 1372832 Test 041 control_c384gdas_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.357503 - 0: The maximum resident set size (KB) = 634836 + 0: The total amount of wall time = 87.259183 + 0: The maximum resident set size (KB) = 630120 Test 042 control_stochy_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.495107 - 0: The maximum resident set size (KB) = 502228 + 0: The total amount of wall time = 48.160569 + 0: The maximum resident set size (KB) = 486068 Test 043 control_stochy_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.318434 - 0: The maximum resident set size (KB) = 624068 + 0: The total amount of wall time = 121.485822 + 0: The maximum resident set size (KB) = 619644 Test 044 control_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr4_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.208785 - 0: The maximum resident set size (KB) = 638444 + 0: The total amount of wall time = 170.093964 + 0: The maximum resident set size (KB) = 655032 Test 045 control_iovr4_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_iovr5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.345735 - 0: The maximum resident set size (KB) = 653424 + 0: The total amount of wall time = 161.361556 + 0: The maximum resident set size (KB) = 652584 Test 046 control_iovr5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.594205 - 0: The maximum resident set size (KB) = 1622864 + 0: The total amount of wall time = 198.270991 + 0: The maximum resident set size (KB) = 1601308 Test 047 control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8.v2.sfc_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.006437 - 0: The maximum resident set size (KB) = 1621616 + 0: The total amount of wall time = 188.680172 + 0: The maximum resident set size (KB) = 1625576 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.787667 - 0: The maximum resident set size (KB) = 1610164 + 0: The total amount of wall time = 192.767254 + 0: The maximum resident set size (KB) = 1620224 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 85.998651 - 0: The maximum resident set size (KB) = 888408 + 0: The total amount of wall time = 86.418564 + 0: The maximum resident set size (KB) = 854284 Test 050 control_restart_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_noqr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 163.693315 - 0: The maximum resident set size (KB) = 1591828 + 0: The total amount of wall time = 191.623950 + 0: The maximum resident set size (KB) = 1603972 Test 051 control_noqr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_noqr_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 84.403239 - 0: The maximum resident set size (KB) = 927348 + 0: The total amount of wall time = 85.065777 + 0: The maximum resident set size (KB) = 919876 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_decomp_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.679636 - 0: The maximum resident set size (KB) = 1581408 + 0: The total amount of wall time = 196.597206 + 0: The maximum resident set size (KB) = 1596456 Test 053 control_decomp_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_2threads_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 153.170645 - 0: The maximum resident set size (KB) = 1711716 + 0: The total amount of wall time = 155.241568 + 0: The maximum resident set size (KB) = 1703448 Test 054 control_2threads_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_lndp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 297.100669 - 0: The maximum resident set size (KB) = 1614324 + 0: The total amount of wall time = 300.378090 + 0: The maximum resident set size (KB) = 1617272 Test 055 control_p8_lndp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_rrtmgp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.981714 - 0: The maximum resident set size (KB) = 1659248 + 0: The total amount of wall time = 219.686115 + 0: The maximum resident set size (KB) = 1688940 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_mynn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.649312 - 0: The maximum resident set size (KB) = 1622436 + 0: The total amount of wall time = 167.553918 + 0: The maximum resident set size (KB) = 1627868 Test 057 control_p8_mynn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/merra2_thompson_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.941312 - 0: The maximum resident set size (KB) = 1631404 + 0: The total amount of wall time = 195.904406 + 0: The maximum resident set size (KB) = 1597612 Test 058 merra2_thompson_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 294.643744 - 0: The maximum resident set size (KB) = 854884 + 0: The total amount of wall time = 297.111104 + 0: The maximum resident set size (KB) = 844020 Test 059 regional_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.959387 - 0: The maximum resident set size (KB) = 1010872 + 0: The total amount of wall time = 152.647192 + 0: The maximum resident set size (KB) = 1020648 Test 060 regional_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.897742 - 0: The maximum resident set size (KB) = 838892 + 0: The total amount of wall time = 315.300011 + 0: The maximum resident set size (KB) = 843540 Test 061 regional_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 179.599481 - 0: The maximum resident set size (KB) = 845384 + 0: The total amount of wall time = 181.531408 + 0: The maximum resident set size (KB) = 849288 Test 062 regional_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_noquilt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 296.636309 - 0: The maximum resident set size (KB) = 1364268 + 0: The total amount of wall time = 296.596214 + 0: The maximum resident set size (KB) = 1338020 Test 063 regional_noquilt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_netcdf_parallel_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 293.186553 - 0: The maximum resident set size (KB) = 847864 + 0: The total amount of wall time = 295.692822 + 0: The maximum resident set size (KB) = 824912 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_2dwrtdecomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 296.877507 - 0: The maximum resident set size (KB) = 837296 + 0: The total amount of wall time = 296.807985 + 0: The maximum resident set size (KB) = 842696 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_wofs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 383.315807 - 0: The maximum resident set size (KB) = 1913356 + 0: The total amount of wall time = 385.259392 + 0: The maximum resident set size (KB) = 1879360 Test 066 regional_wofs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.071493 - 0: The maximum resident set size (KB) = 1101988 + 0: The total amount of wall time = 447.735147 + 0: The maximum resident set size (KB) = 1099376 Test 067 rap_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 233.343673 - 0: The maximum resident set size (KB) = 1290280 + 0: The total amount of wall time = 235.685180 + 0: The maximum resident set size (KB) = 1278088 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 470.379858 - 0: The maximum resident set size (KB) = 1023536 + 0: The total amount of wall time = 469.659764 + 0: The maximum resident set size (KB) = 1030576 Test 069 rap_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.615985 - 0: The maximum resident set size (KB) = 1184948 + 0: The total amount of wall time = 420.896042 + 0: The maximum resident set size (KB) = 1184648 Test 070 rap_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.809108 - 0: The maximum resident set size (KB) = 1101576 + 0: The total amount of wall time = 229.408216 + 0: The maximum resident set size (KB) = 1097416 Test 071 rap_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.820455 - 0: The maximum resident set size (KB) = 1097124 + 0: The total amount of wall time = 447.562148 + 0: The maximum resident set size (KB) = 1098228 Test 072 rap_sfcdiff_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.768325 - 0: The maximum resident set size (KB) = 1046940 + 0: The total amount of wall time = 470.716123 + 0: The maximum resident set size (KB) = 1009520 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.061895 - 0: The maximum resident set size (KB) = 1132580 + 0: The total amount of wall time = 336.116479 + 0: The maximum resident set size (KB) = 1137972 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.550141 - 0: The maximum resident set size (KB) = 1029352 + 0: The total amount of wall time = 225.478341 + 0: The maximum resident set size (KB) = 1041296 Test 075 hrrr_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.635964 - 0: The maximum resident set size (KB) = 1011600 + 0: The total amount of wall time = 233.152144 + 0: The maximum resident set size (KB) = 1022816 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 207.131294 - 0: The maximum resident set size (KB) = 1106600 + 0: The total amount of wall time = 207.935391 + 0: The maximum resident set size (KB) = 1107352 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.578114 - 0: The maximum resident set size (KB) = 998860 + 0: The total amount of wall time = 119.176374 + 0: The maximum resident set size (KB) = 994600 Test 078 hrrr_control_restart_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.309666 - 0: The maximum resident set size (KB) = 1057360 + 0: The total amount of wall time = 440.927449 + 0: The maximum resident set size (KB) = 1104044 Test 079 rrfs_v1beta_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.712054 - 0: The maximum resident set size (KB) = 1991160 + 0: The total amount of wall time = 533.500649 + 0: The maximum resident set size (KB) = 1991272 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 515.792700 - 0: The maximum resident set size (KB) = 2058992 + 0: The total amount of wall time = 516.732822 + 0: The maximum resident set size (KB) = 2069664 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.511531 - 0: The maximum resident set size (KB) = 742316 + 0: The total amount of wall time = 339.421327 + 0: The maximum resident set size (KB) = 743976 Test 082 control_csawmg_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 332.865752 - 0: The maximum resident set size (KB) = 747268 + 0: The total amount of wall time = 334.268638 + 0: The maximum resident set size (KB) = 742284 Test 083 control_csawmgt_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.934976 - 0: The maximum resident set size (KB) = 743008 + 0: The total amount of wall time = 185.300313 + 0: The maximum resident set size (KB) = 723772 Test 084 control_ras_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.464977 - 0: The maximum resident set size (KB) = 645704 + 0: The total amount of wall time = 112.819380 + 0: The maximum resident set size (KB) = 624276 Test 085 control_wam_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.712933 - 0: The maximum resident set size (KB) = 1617784 + 0: The total amount of wall time = 146.236272 + 0: The maximum resident set size (KB) = 1596032 Test 086 control_p8_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_control_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 268.418882 - 0: The maximum resident set size (KB) = 849792 + 0: The total amount of wall time = 268.452383 + 0: The maximum resident set size (KB) = 820308 Test 087 regional_control_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_CubedSphereGrid_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 147.944081 - 0: The maximum resident set size (KB) = 812608 + 0: The total amount of wall time = 144.759495 + 0: The maximum resident set size (KB) = 808376 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.780840 - 0: The maximum resident set size (KB) = 810360 + 0: The total amount of wall time = 148.056577 + 0: The maximum resident set size (KB) = 782400 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.247123 - 0: The maximum resident set size (KB) = 787628 + 0: The total amount of wall time = 170.621498 + 0: The maximum resident set size (KB) = 814680 Test 090 control_stochy_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel 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.794493 - 0: The maximum resident set size (KB) = 808316 + 0: The total amount of wall time = 150.698374 + 0: The maximum resident set size (KB) = 814644 Test 091 control_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmg_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.898822 - 0: The maximum resident set size (KB) = 860616 + 0: The total amount of wall time = 234.371275 + 0: The maximum resident set size (KB) = 860512 Test 092 control_csawmg_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_csawmgt_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel 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.749094 - 0: The maximum resident set size (KB) = 856096 + 0: The total amount of wall time = 228.111782 + 0: The maximum resident set size (KB) = 860092 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_intel Checking test 094 control_ras_debug_intel 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.399603 - 0: The maximum resident set size (KB) = 823456 + 0: The total amount of wall time = 151.576216 + 0: The maximum resident set size (KB) = 793132 Test 094 control_ras_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.692059 - 0: The maximum resident set size (KB) = 871544 + 0: The total amount of wall time = 155.262698 + 0: The maximum resident set size (KB) = 867480 Test 095 control_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.327726 - 0: The maximum resident set size (KB) = 1607588 + 0: The total amount of wall time = 153.030753 + 0: The maximum resident set size (KB) = 1633432 Test 096 control_debug_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 972.216738 - 0: The maximum resident set size (KB) = 824100 + 0: The total amount of wall time = 995.960551 + 0: The maximum resident set size (KB) = 817920 Test 097 regional_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.800839 - 0: The maximum resident set size (KB) = 1196052 + 0: The total amount of wall time = 275.491454 + 0: The maximum resident set size (KB) = 1199824 Test 098 rap_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.255123 - 0: The maximum resident set size (KB) = 1172544 + 0: The total amount of wall time = 268.612901 + 0: The maximum resident set size (KB) = 1192940 Test 099 hrrr_control_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.250044 - 0: The maximum resident set size (KB) = 1194996 + 0: The total amount of wall time = 271.402722 + 0: The maximum resident set size (KB) = 1196360 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel 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.502518 - 0: The maximum resident set size (KB) = 1199632 + 0: The total amount of wall time = 278.037371 + 0: The maximum resident set size (KB) = 1175036 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_drag_suite_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.516051 - 0: The maximum resident set size (KB) = 1206560 + 0: The total amount of wall time = 270.615026 + 0: The maximum resident set size (KB) = 1196244 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel 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.163902 - 0: The maximum resident set size (KB) = 1277132 + 0: The total amount of wall time = 290.502510 + 0: The maximum resident set size (KB) = 1288436 Test 103 rap_diag_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.347147 - 0: The maximum resident set size (KB) = 1203408 + 0: The total amount of wall time = 277.043924 + 0: The maximum resident set size (KB) = 1204060 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_unified_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel 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.243572 - 0: The maximum resident set size (KB) = 1195820 + 0: The total amount of wall time = 283.104663 + 0: The maximum resident set size (KB) = 1192512 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_lndp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.585512 - 0: The maximum resident set size (KB) = 1194036 + 0: The total amount of wall time = 277.681121 + 0: The maximum resident set size (KB) = 1198384 Test 106 rap_lndp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel 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.649882 - 0: The maximum resident set size (KB) = 1191084 + 0: The total amount of wall time = 274.242241 + 0: The maximum resident set size (KB) = 1185836 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.867286 - 0: The maximum resident set size (KB) = 1193312 + 0: The total amount of wall time = 273.000390 + 0: The maximum resident set size (KB) = 1173384 Test 108 rap_noah_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.640190 - 0: The maximum resident set size (KB) = 1198552 + 0: The total amount of wall time = 276.460737 + 0: The maximum resident set size (KB) = 1195484 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 450.997682 - 0: The maximum resident set size (KB) = 1193464 + 0: The total amount of wall time = 451.967356 + 0: The maximum resident set size (KB) = 1194252 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel 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.737051 - 0: The maximum resident set size (KB) = 1186396 + 0: The total amount of wall time = 270.708863 + 0: The maximum resident set size (KB) = 1160852 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 333.464130 - 0: The maximum resident set size (KB) = 1197984 + 0: The total amount of wall time = 352.376767 + 0: The maximum resident set size (KB) = 1169504 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel 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.043080 - 0: The maximum resident set size (KB) = 1195892 + 0: The total amount of wall time = 273.928310 + 0: The maximum resident set size (KB) = 1195328 Test 113 rap_flake_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,26 +4377,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 477.896260 - 0: The maximum resident set size (KB) = 1201416 + 0: The total amount of wall time = 470.323268 + 0: The maximum resident set size (KB) = 1202908 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 279.368314 - 0: The maximum resident set size (KB) = 481600 + 0: The total amount of wall time = 276.074908 + 0: The maximum resident set size (KB) = 513360 Test 115 control_wam_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4407,14 +4407,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 221.770194 - 0: The maximum resident set size (KB) = 1150316 + 0: The total amount of wall time = 222.475271 + 0: The maximum resident set size (KB) = 1162940 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4461,14 +4461,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.556851 - 0: The maximum resident set size (KB) = 1056244 + 0: The total amount of wall time = 368.075415 + 0: The maximum resident set size (KB) = 1020500 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4515,14 +4515,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.427715 - 0: The maximum resident set size (KB) = 979816 + 0: The total amount of wall time = 192.241907 + 0: The maximum resident set size (KB) = 959544 Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4569,14 +4569,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.946379 - 0: The maximum resident set size (KB) = 1082320 + 0: The total amount of wall time = 351.161966 + 0: The maximum resident set size (KB) = 1080448 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4623,14 +4623,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.550235 - 0: The maximum resident set size (KB) = 959496 + 0: The total amount of wall time = 177.729941 + 0: The maximum resident set size (KB) = 948624 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4677,14 +4677,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.692334 - 0: The maximum resident set size (KB) = 911664 + 0: The total amount of wall time = 205.199349 + 0: The maximum resident set size (KB) = 922672 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4723,28 +4723,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 276.438246 - 0: The maximum resident set size (KB) = 1032892 + 0: The total amount of wall time = 276.234428 + 0: The maximum resident set size (KB) = 1034432 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.778809 - 0: The maximum resident set size (KB) = 929844 + 0: The total amount of wall time = 100.806208 + 0: The maximum resident set size (KB) = 925616 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4760,40 +4760,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.704915 - 0: The maximum resident set size (KB) = 1162016 + 0: The total amount of wall time = 112.828621 + 0: The maximum resident set size (KB) = 1194604 Test 124 conus13km_control_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 43.219208 - 0: The maximum resident set size (KB) = 1118396 + 0: The total amount of wall time = 45.110413 + 0: The maximum resident set size (KB) = 1090944 Test 125 conus13km_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 61.579077 - 0: The maximum resident set size (KB) = 1101688 + 0: The total amount of wall time = 61.418232 + 0: The maximum resident set size (KB) = 1104032 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4840,42 +4840,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 240.480859 - 0: The maximum resident set size (KB) = 986272 + 0: The total amount of wall time = 243.026396 + 0: The maximum resident set size (KB) = 987972 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel 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.150312 - 0: The maximum resident set size (KB) = 1081460 + 0: The total amount of wall time = 268.347578 + 0: The maximum resident set size (KB) = 1072192 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel 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.922374 - 0: The maximum resident set size (KB) = 1072500 + 0: The total amount of wall time = 263.556254 + 0: The maximum resident set size (KB) = 1073740 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4889,14 +4889,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 822.722419 - 0: The maximum resident set size (KB) = 1219912 + 0: The total amount of wall time = 819.902654 + 0: The maximum resident set size (KB) = 1206660 Test 130 conus13km_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4910,81 +4910,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 814.866061 - 0: The maximum resident set size (KB) = 918584 + 0: The total amount of wall time = 827.951578 + 0: The maximum resident set size (KB) = 908752 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel 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.507598 - 0: The maximum resident set size (KB) = 1148604 + 0: The total amount of wall time = 459.311316 + 0: The maximum resident set size (KB) = 1127864 Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 830.181302 - 0: The maximum resident set size (KB) = 1292668 + 0: The total amount of wall time = 815.471007 + 0: The maximum resident set size (KB) = 1298260 Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel 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.638429 - 0: The maximum resident set size (KB) = 1119064 + 0: The total amount of wall time = 275.023432 + 0: The maximum resident set size (KB) = 1114132 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 271.319114 - 0: The maximum resident set size (KB) = 735252 + 0: The total amount of wall time = 272.728122 + 0: The maximum resident set size (KB) = 734208 Test 135 hafs_regional_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 335.526396 - 0: The maximum resident set size (KB) = 1106148 + 0: The total amount of wall time = 340.316314 + 0: The maximum resident set size (KB) = 1116340 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4993,14 +4993,14 @@ Checking test 137 hafs_regional_atm_ocn_intel 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 = 396.155571 - 0: The maximum resident set size (KB) = 827180 + 0: The total amount of wall time = 393.271755 + 0: The maximum resident set size (KB) = 829884 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5009,14 +5009,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 763.044752 - 0: The maximum resident set size (KB) = 852124 + 0: The total amount of wall time = 766.764748 + 0: The maximum resident set size (KB) = 851056 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5027,14 +5027,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 871.959441 - 0: The maximum resident set size (KB) = 881404 + 0: The total amount of wall time = 872.297813 + 0: The maximum resident set size (KB) = 880940 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5056,14 +5056,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 310.160417 - 0: The maximum resident set size (KB) = 502844 + 0: The total amount of wall time = 305.063069 + 0: The maximum resident set size (KB) = 499900 Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,14 +5072,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 389.580576 - 0: The maximum resident set size (KB) = 521436 + 0: The total amount of wall time = 370.430456 + 0: The maximum resident set size (KB) = 519276 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5090,18 +5090,18 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5116,7 +5116,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5126,14 +5126,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 156.092604 - 0: The maximum resident set size (KB) = 377028 + 0: The total amount of wall time = 142.808134 + 0: The maximum resident set size (KB) = 371724 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_multiple_4nests_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5160,12 +5160,12 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK @@ -5174,8 +5174,8 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -5196,9 +5196,9 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5215,14 +5215,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 413.646554 - 0: The maximum resident set size (KB) = 473780 + 0: The total amount of wall time = 405.139106 + 0: The maximum resident set size (KB) = 482556 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5231,14 +5231,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 214.551997 - 0: The maximum resident set size (KB) = 530400 + 0: The total amount of wall time = 202.950076 + 0: The maximum resident set size (KB) = 527260 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5256,18 +5256,18 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 206.391257 - 0: The maximum resident set size (KB) = 532260 + 0: The total amount of wall time = 191.898417 + 0: The maximum resident set size (KB) = 501616 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5276,28 +5276,28 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 241.659181 - 0: The maximum resident set size (KB) = 583064 + 0: The total amount of wall time = 231.571873 + 0: The maximum resident set size (KB) = 579512 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_global_storm_following_1nest_atm_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 62.026329 - 0: The maximum resident set size (KB) = 399936 + 0: The total amount of wall time = 61.329785 + 0: The maximum resident set size (KB) = 410592 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_nested_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5307,7 +5307,7 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -5315,7 +5315,7 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK @@ -5344,28 +5344,28 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 224.890724 - 0: The maximum resident set size (KB) = 795792 + 0: The total amount of wall time = 225.085301 + 0: The maximum resident set size (KB) = 773060 Test 148 gnv1_nested_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 722.026750 - 0: The maximum resident set size (KB) = 548576 + 0: The total amount of wall time = 730.627266 + 0: The maximum resident set size (KB) = 566096 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5376,14 +5376,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 492.103995 - 0: The maximum resident set size (KB) = 624412 + 0: The total amount of wall time = 501.588021 + 0: The maximum resident set size (KB) = 666832 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5394,14 +5394,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 497.852704 - 0: The maximum resident set size (KB) = 739400 + 0: The total amount of wall time = 501.186817 + 0: The maximum resident set size (KB) = 712472 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5411,14 +5411,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 367.171305 - 0: The maximum resident set size (KB) = 725100 + 0: The total amount of wall time = 369.989170 + 0: The maximum resident set size (KB) = 725280 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5426,14 +5426,14 @@ Checking test 153 hafs_regional_docn_intel 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 = 373.632735 - 0: The maximum resident set size (KB) = 792300 + 0: The total amount of wall time = 360.104666 + 0: The maximum resident set size (KB) = 821512 Test 153 hafs_regional_docn_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_docn_oisst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5441,131 +5441,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.388454 - 0: The maximum resident set size (KB) = 811556 + 0: The total amount of wall time = 365.893227 + 0: The maximum resident set size (KB) = 809828 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hafs_regional_datm_cdeps_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 950.899892 - 0: The maximum resident set size (KB) = 1219500 + 0: The total amount of wall time = 953.706355 + 0: The maximum resident set size (KB) = 1218248 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.853228 - 0: The maximum resident set size (KB) = 1123920 + 0: The total amount of wall time = 189.001440 + 0: The maximum resident set size (KB) = 1120900 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_restart_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.972188 - 0: The maximum resident set size (KB) = 1088780 + 0: The total amount of wall time = 87.265260 + 0: The maximum resident set size (KB) = 1082788 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.030170 - 0: The maximum resident set size (KB) = 1008768 + 0: The total amount of wall time = 151.730363 + 0: The maximum resident set size (KB) = 1007752 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_iau_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.345006 - 0: The maximum resident set size (KB) = 999632 + 0: The total amount of wall time = 145.879436 + 0: The maximum resident set size (KB) = 1009984 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_stochy_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.600625 - 0: The maximum resident set size (KB) = 1003720 + 0: The total amount of wall time = 146.932874 + 0: The maximum resident set size (KB) = 1010392 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_ciceC_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.197015 - 0: The maximum resident set size (KB) = 1121144 + 0: The total amount of wall time = 151.125900 + 0: The maximum resident set size (KB) = 1116792 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.003110 - 0: The maximum resident set size (KB) = 1131948 + 0: The total amount of wall time = 146.462636 + 0: The maximum resident set size (KB) = 1128076 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_bulk_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.887089 - 0: The maximum resident set size (KB) = 1005404 + 0: The total amount of wall time = 145.947523 + 0: The maximum resident set size (KB) = 999268 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5574,14 +5574,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel 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 = 356.695793 - 0: The maximum resident set size (KB) = 1052980 + 0: The total amount of wall time = 363.063857 + 0: The maximum resident set size (KB) = 1050356 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_mx025_gefs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5590,77 +5590,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 360.244361 - 0: The maximum resident set size (KB) = 1057408 + 0: The total amount of wall time = 354.761206 + 0: The maximum resident set size (KB) = 1034624 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.222800 - 0: The maximum resident set size (KB) = 1121736 + 0: The total amount of wall time = 153.107517 + 0: The maximum resident set size (KB) = 1120856 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 223.783340 - 0: The maximum resident set size (KB) = 2491360 + 0: The total amount of wall time = 237.146043 + 0: The maximum resident set size (KB) = 2479192 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_gfs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 223.247409 - 0: The maximum resident set size (KB) = 2484356 + 0: The total amount of wall time = 221.421138 + 0: The maximum resident set size (KB) = 2478172 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_debug_cfsr_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 354.179969 - 0: The maximum resident set size (KB) = 1043136 + 0: The total amount of wall time = 351.095459 + 0: The maximum resident set size (KB) = 1058080 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_faster_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.295762 - 0: The maximum resident set size (KB) = 1131848 + 0: The total amount of wall time = 150.920541 + 0: The maximum resident set size (KB) = 1132024 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_gswp3_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5669,14 +5669,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 35.662665 - 0: The maximum resident set size (KB) = 252556 + 0: The total amount of wall time = 37.105463 + 0: The maximum resident set size (KB) = 250892 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5685,14 +5685,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 38.091672 - 0: The maximum resident set size (KB) = 319816 + 0: The total amount of wall time = 39.542885 + 0: The maximum resident set size (KB) = 320320 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_lnd_era5_rst_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5701,14 +5701,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 22.170708 - 0: The maximum resident set size (KB) = 315616 + 0: The total amount of wall time = 23.025351 + 0: The maximum resident set size (KB) = 314804 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_sbs_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5797,14 +5797,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 242.799798 - 0: The maximum resident set size (KB) = 1588680 + 0: The total amount of wall time = 246.716362 + 0: The maximum resident set size (KB) = 1590836 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_atmlnd_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5893,14 +5893,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 248.419274 - 0: The maximum resident set size (KB) = 1573676 + 0: The total amount of wall time = 252.164238 + 0: The maximum resident set size (KB) = 1585804 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_restart_p8_atmlnd_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5921,14 +5921,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 125.717673 - 0: The maximum resident set size (KB) = 894372 + 0: The total amount of wall time = 125.134389 + 0: The maximum resident set size (KB) = 896504 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmwav_control_noaero_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5971,14 +5971,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.732975 - 0: The maximum resident set size (KB) = 1655124 + 0: The total amount of wall time = 96.948025 + 0: The maximum resident set size (KB) = 1648620 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_atmwav_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6022,14 +6022,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 87.148476 - 0: The maximum resident set size (KB) = 668300 + 0: The total amount of wall time = 91.828471 + 0: The maximum resident set size (KB) = 664536 Test 178 control_atmwav_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6073,14 +6073,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.459272 - 0: The maximum resident set size (KB) = 3004436 + 0: The total amount of wall time = 227.689705 + 0: The maximum resident set size (KB) = 3018296 Test 179 atmaero_control_p8_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6124,14 +6124,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.280527 - 0: The maximum resident set size (KB) = 3085148 + 0: The total amount of wall time = 273.550039 + 0: The maximum resident set size (KB) = 3077780 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/atmaero_control_p8_rad_micro_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6175,14 +6175,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 290.237464 - 0: The maximum resident set size (KB) = 3095712 + 0: The total amount of wall time = 294.145161 + 0: The maximum resident set size (KB) = 3076980 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_atmaq_debug_intel +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6196,14 +6196,14 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1207.046141 - 0: The maximum resident set size (KB) = 4400692 + 0: The total amount of wall time = 1213.370191 + 0: The maximum resident set size (KB) = 4389792 Test 182 regional_atmaq_debug_intel PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_c48_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_gnu Checking test 183 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6242,14 +6242,14 @@ Checking test 183 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 681.675545 -0: The maximum resident set size (KB) = 794988 +0: The total amount of wall time = 688.205308 +0: The maximum resident set size (KB) = 792912 Test 183 control_c48_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_gnu Checking test 184 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6260,14 +6260,14 @@ Checking test 184 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 236.825354 - 0: The maximum resident set size (KB) = 553272 + 0: The total amount of wall time = 234.476749 + 0: The maximum resident set size (KB) = 553528 Test 184 control_stochy_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_gnu Checking test 185 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6278,14 +6278,14 @@ Checking test 185 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 281.241988 - 0: The maximum resident set size (KB) = 560788 + 0: The total amount of wall time = 283.764946 + 0: The maximum resident set size (KB) = 556652 Test 185 control_ras_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_gnu Checking test 186 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6332,14 +6332,14 @@ Checking test 186 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.284469 - 0: The maximum resident set size (KB) = 1308004 + 0: The total amount of wall time = 277.806156 + 0: The maximum resident set size (KB) = 1307552 Test 186 control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_p8_ugwpv1_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_gnu Checking test 187 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6386,14 +6386,14 @@ Checking test 187 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.323340 - 0: The maximum resident set size (KB) = 1307348 + 0: The total amount of wall time = 272.738007 + 0: The maximum resident set size (KB) = 1312752 Test 187 control_p8_ugwpv1_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_flake_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_gnu Checking test 188 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6404,14 +6404,14 @@ Checking test 188 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 346.146210 - 0: The maximum resident set size (KB) = 599816 + 0: The total amount of wall time = 340.912455 + 0: The maximum resident set size (KB) = 601132 Test 188 control_flake_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_gnu Checking test 189 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6458,14 +6458,14 @@ Checking test 189 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 689.690751 - 0: The maximum resident set size (KB) = 895100 + 0: The total amount of wall time = 690.371459 + 0: The maximum resident set size (KB) = 900684 Test 189 rap_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_gnu Checking test 190 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6512,14 +6512,14 @@ Checking test 190 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 693.551294 - 0: The maximum resident set size (KB) = 898104 + 0: The total amount of wall time = 695.688780 + 0: The maximum resident set size (KB) = 901716 Test 190 rap_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_gnu Checking test 191 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6566,14 +6566,14 @@ Checking test 191 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 611.268683 - 0: The maximum resident set size (KB) = 983768 + 0: The total amount of wall time = 617.489798 + 0: The maximum resident set size (KB) = 980016 Test 191 rap_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_gnu Checking test 192 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6612,14 +6612,14 @@ Checking test 192 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.652861 - 0: The maximum resident set size (KB) = 625004 + 0: The total amount of wall time = 356.741640 + 0: The maximum resident set size (KB) = 624140 Test 192 rap_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_gnu Checking test 193 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6666,14 +6666,14 @@ Checking test 193 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 684.575073 - 0: The maximum resident set size (KB) = 896844 + 0: The total amount of wall time = 689.306122 + 0: The maximum resident set size (KB) = 898992 Test 193 rap_sfcdiff_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_gnu Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6720,14 +6720,14 @@ Checking test 194 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 692.956862 - 0: The maximum resident set size (KB) = 897036 + 0: The total amount of wall time = 696.391226 + 0: The maximum resident set size (KB) = 897384 Test 194 rap_sfcdiff_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_sfcdiff_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_gnu Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6766,14 +6766,14 @@ Checking test 195 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 514.611257 - 0: The maximum resident set size (KB) = 630024 + 0: The total amount of wall time = 517.381590 + 0: The maximum resident set size (KB) = 623932 Test 195 rap_sfcdiff_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_gnu Checking test 196 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6820,14 +6820,14 @@ Checking test 196 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.599333 - 0: The maximum resident set size (KB) = 891568 + 0: The total amount of wall time = 348.759366 + 0: The maximum resident set size (KB) = 891576 Test 196 hrrr_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_noqr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_noqr_gnu Checking test 197 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6874,14 +6874,14 @@ Checking test 197 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 346.276386 - 0: The maximum resident set size (KB) = 884948 + 0: The total amount of wall time = 349.405197 + 0: The maximum resident set size (KB) = 881776 Test 197 hrrr_control_noqr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_gnu Checking test 198 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6928,14 +6928,14 @@ Checking test 198 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 304.725469 - 0: The maximum resident set size (KB) = 976560 + 0: The total amount of wall time = 303.918514 + 0: The maximum resident set size (KB) = 984328 Test 198 hrrr_control_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_gnu Checking test 199 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6982,42 +6982,42 @@ Checking test 199 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 346.158226 - 0: The maximum resident set size (KB) = 892444 + 0: The total amount of wall time = 351.623950 + 0: The maximum resident set size (KB) = 897492 Test 199 hrrr_control_decomp_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_gnu Checking test 200 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 201.082821 - 0: The maximum resident set size (KB) = 613028 + 0: The total amount of wall time = 180.665847 + 0: The maximum resident set size (KB) = 612808 Test 200 hrrr_control_restart_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_noqr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_noqr_gnu Checking test 201 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 180.612869 - 0: The maximum resident set size (KB) = 707324 + 0: The total amount of wall time = 178.922435 + 0: The maximum resident set size (KB) = 705032 Test 201 hrrr_control_restart_noqr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_gnu Checking test 202 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7064,224 +7064,224 @@ Checking test 202 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 669.572003 - 0: The maximum resident set size (KB) = 895348 + 0: The total amount of wall time = 679.545568 + 0: The maximum resident set size (KB) = 894672 Test 202 rrfs_v1beta_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_gnu Checking test 203 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 83.770174 - 0: The maximum resident set size (KB) = 600416 + 0: The total amount of wall time = 87.055437 + 0: The maximum resident set size (KB) = 593248 Test 203 control_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/regional_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_gnu Checking test 204 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 434.969481 - 0: The maximum resident set size (KB) = 602324 + 0: The total amount of wall time = 445.636796 + 0: The maximum resident set size (KB) = 595876 Test 204 regional_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_gnu Checking test 205 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.029285 - 0: The maximum resident set size (KB) = 919844 + 0: The total amount of wall time = 139.391328 + 0: The maximum resident set size (KB) = 906260 Test 205 rap_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_gnu Checking test 206 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.522272 - 0: The maximum resident set size (KB) = 911428 + 0: The total amount of wall time = 139.619453 + 0: The maximum resident set size (KB) = 902220 Test 206 hrrr_control_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_gf_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_gnu Checking test 207 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.930872 - 0: The maximum resident set size (KB) = 911460 + 0: The total amount of wall time = 137.736098 + 0: The maximum resident set size (KB) = 906700 Test 207 hrrr_gf_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_c3_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_gnu Checking test 208 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.866402 - 0: The maximum resident set size (KB) = 914132 + 0: The total amount of wall time = 141.483182 + 0: The maximum resident set size (KB) = 905752 Test 208 hrrr_c3_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_diag_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_gnu Checking test 209 rap_diag_debug_gnu 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.728221 - 0: The maximum resident set size (KB) = 1005068 + 0: The total amount of wall time = 154.912538 + 0: The maximum resident set size (KB) = 991520 Test 209 rap_diag_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.215254 - 0: The maximum resident set size (KB) = 873516 + 0: The total amount of wall time = 224.830077 + 0: The maximum resident set size (KB) = 870868 Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_progcld_thompson_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_gnu Checking test 211 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.907998 - 0: The maximum resident set size (KB) = 885084 + 0: The total amount of wall time = 142.457150 + 0: The maximum resident set size (KB) = 909212 Test 211 rap_progcld_thompson_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rrfs_v1beta_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_gnu Checking test 212 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.755853 - 0: The maximum resident set size (KB) = 911388 + 0: The total amount of wall time = 141.591540 + 0: The maximum resident set size (KB) = 904240 Test 212 rrfs_v1beta_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_ras_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_gnu Checking test 213 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 79.026826 - 0: The maximum resident set size (KB) = 544284 + 0: The total amount of wall time = 84.434006 + 0: The maximum resident set size (KB) = 544460 Test 213 control_ras_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_stochy_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_gnu Checking test 214 control_stochy_debug_gnu 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.032905 - 0: The maximum resident set size (KB) = 543148 + 0: The total amount of wall time = 122.999030 + 0: The maximum resident set size (KB) = 538724 Test 214 control_stochy_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_gnu Checking test 215 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 88.372124 - 0: The maximum resident set size (KB) = 1295696 + 0: The total amount of wall time = 90.288640 + 0: The maximum resident set size (KB) = 1276116 Test 215 control_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_flake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_gnu Checking test 216 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.439615 - 0: The maximum resident set size (KB) = 917516 + 0: The total amount of wall time = 141.157374 + 0: The maximum resident set size (KB) = 905656 Test 216 rap_flake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_clm_lake_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_gnu Checking test 217 rap_clm_lake_debug_gnu 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.204836 - 0: The maximum resident set size (KB) = 917908 + 0: The total amount of wall time = 159.337129 + 0: The maximum resident set size (KB) = 909784 Test 217 rap_clm_lake_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/gnv1_c96_no_nest_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_gnu Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7322,26 +7322,26 @@ Checking test 218 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.347977 - 0: The maximum resident set size (KB) = 917920 + 0: The total amount of wall time = 241.112585 + 0: The maximum resident set size (KB) = 919580 Test 218 gnv1_c96_no_nest_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/control_wam_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_gnu Checking test 219 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 137.421986 - 0: The maximum resident set size (KB) = 244972 + 0: The total amount of wall time = 136.397136 + 0: The maximum resident set size (KB) = 243708 Test 219 control_wam_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_gnu Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7388,14 +7388,14 @@ Checking test 220 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 692.764510 - 0: The maximum resident set size (KB) = 750048 + 0: The total amount of wall time = 701.163584 + 0: The maximum resident set size (KB) = 749188 Test 220 rap_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_gnu Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7442,14 +7442,14 @@ Checking test 221 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.454468 - 0: The maximum resident set size (KB) = 748012 + 0: The total amount of wall time = 351.809217 + 0: The maximum resident set size (KB) = 747952 Test 221 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_gnu Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7496,14 +7496,14 @@ Checking test 222 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 622.909581 - 0: The maximum resident set size (KB) = 804520 + 0: The total amount of wall time = 621.928224 + 0: The maximum resident set size (KB) = 806524 Test 222 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_gnu Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7550,14 +7550,14 @@ Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.705708 - 0: The maximum resident set size (KB) = 805892 + 0: The total amount of wall time = 307.518689 + 0: The maximum resident set size (KB) = 800100 Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_gnu Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7604,14 +7604,14 @@ Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 352.538569 - 0: The maximum resident set size (KB) = 746216 + 0: The total amount of wall time = 353.261201 + 0: The maximum resident set size (KB) = 750032 Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_gnu Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7650,28 +7650,28 @@ Checking test 225 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 517.257788 - 0: The maximum resident set size (KB) = 592932 + 0: The total amount of wall time = 518.087953 + 0: The maximum resident set size (KB) = 600172 Test 225 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_gnu Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 185.821866 - 0: The maximum resident set size (KB) = 582260 + 0: The total amount of wall time = 187.048900 + 0: The maximum resident set size (KB) = 582988 Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_control_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_gnu Checking test 227 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7687,40 +7687,40 @@ Checking test 227 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 241.101873 - 0: The maximum resident set size (KB) = 899848 + 0: The total amount of wall time = 237.804391 + 0: The maximum resident set size (KB) = 899928 Test 227 conus13km_control_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_gnu Checking test 228 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.783553 - 0: The maximum resident set size (KB) = 937436 + 0: The total amount of wall time = 100.544965 + 0: The maximum resident set size (KB) = 935228 Test 228 conus13km_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_restart_mismatch_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_gnu Checking test 229 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.730944 - 0: The maximum resident set size (KB) = 599308 + 0: The total amount of wall time = 127.134943 + 0: The maximum resident set size (KB) = 598668 Test 229 conus13km_restart_mismatch_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_gnu Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7767,42 +7767,42 @@ Checking test 230 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 407.328008 - 0: The maximum resident set size (KB) = 787716 + 0: The total amount of wall time = 404.788193 + 0: The maximum resident set size (KB) = 789304 Test 230 rap_control_dyn64_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_gnu Checking test 231 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.061955 - 0: The maximum resident set size (KB) = 763912 + 0: The total amount of wall time = 138.906825 + 0: The maximum resident set size (KB) = 762356 Test 231 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_gnu Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 138.516894 - 0: The maximum resident set size (KB) = 762000 + 0: The total amount of wall time = 138.683647 + 0: The maximum resident set size (KB) = 760040 Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_gnu Checking test 233 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7816,14 +7816,14 @@ Checking test 233 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 415.930622 - 0: The maximum resident set size (KB) = 917172 + 0: The total amount of wall time = 417.446415 + 0: The maximum resident set size (KB) = 916864 Test 233 conus13km_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_qr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_gnu Checking test 234 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7837,56 +7837,56 @@ Checking test 234 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 415.411982 - 0: The maximum resident set size (KB) = 637428 + 0: The total amount of wall time = 413.994785 + 0: The maximum resident set size (KB) = 634308 Test 234 conus13km_debug_qr_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_debug_2threads_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_gnu Checking test 235 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 250.018445 - 0: The maximum resident set size (KB) = 955564 + 0: The total amount of wall time = 248.865783 + 0: The maximum resident set size (KB) = 952708 Test 235 conus13km_debug_2threads_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/conus13km_radar_tten_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_gnu Checking test 236 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 415.685734 - 0: The maximum resident set size (KB) = 976656 + 0: The total amount of wall time = 422.215745 + 0: The maximum resident set size (KB) = 983396 Test 236 conus13km_radar_tten_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/rap_control_dyn64_phy32_debug_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_gnu Checking test 237 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.307142 - 0: The maximum resident set size (KB) = 792460 + 0: The total amount of wall time = 141.860154 + 0: The maximum resident set size (KB) = 786732 Test 237 rap_control_dyn64_phy32_debug_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_gnu Checking test 238 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -7951,14 +7951,14 @@ Checking test 238 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 630.737741 - 0: The maximum resident set size (KB) = 1508960 + 0: The total amount of wall time = 624.600887 + 0: The maximum resident set size (KB) = 1508816 Test 238 cpld_control_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_nowave_noaero_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_gnu Checking test 239 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8020,14 +8020,14 @@ Checking test 239 cpld_control_nowave_noaero_p8_gnu 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 = 376.902625 - 0: The maximum resident set size (KB) = 1405548 + 0: The total amount of wall time = 375.478552 + 0: The maximum resident set size (KB) = 1402492 Test 239 cpld_control_nowave_noaero_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_gnu Checking test 240 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8080,14 +8080,14 @@ Checking test 240 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 365.690517 - 0: The maximum resident set size (KB) = 1520780 + 0: The total amount of wall time = 355.193204 + 0: The maximum resident set size (KB) = 1519160 Test 240 cpld_debug_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_control_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_gnu Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -8151,14 +8151,14 @@ Checking test 241 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1309.292695 - 0: The maximum resident set size (KB) = 1381772 + 0: The total amount of wall time = 1305.263114 + 0: The maximum resident set size (KB) = 1377636 Test 241 cpld_control_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/cpld_debug_pdlib_p8_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_gnu Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -8210,25 +8210,25 @@ Checking test 242 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 762.149234 - 0: The maximum resident set size (KB) = 1387380 + 0: The total amount of wall time = 761.740712 + 0: The maximum resident set size (KB) = 1391124 Test 242 cpld_debug_pdlib_p8_gnu PASS -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_7410/datm_cdeps_control_cfsr_gnu +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_gnu Checking test 243 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.064629 - 0: The maximum resident set size (KB) = 695084 + 0: The total amount of wall time = 175.601857 + 0: The maximum resident set size (KB) = 700488 Test 243 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Mon Feb 12 21:38:25 UTC 2024 -Elapsed time: 01h:50m:34s. Have a nice day! +Wed Feb 14 01:27:40 UTC 2024 +Elapsed time: 03h:22m:37s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 52d0eb537b..1c31c7ef04 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Mon Feb 12 02:35:49 PM CST 2024 +Tue Feb 13 15:27:43 CST 2024 Start Regression test -Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 510 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 601 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 424 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 253 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 803 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 672 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 719 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 721 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 744 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 673 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 727 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 637 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 745 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 646 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 643 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 250 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 427 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 842 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 451 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 221 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 831 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 772 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 244 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 819 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 779 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 652 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 626 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 471 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 718 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 655 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 957 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 573 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 916 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 701 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1165 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 414 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 700 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1084 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 948 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1045 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 285 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 967 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 490 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 956 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1098 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 683 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_mixedmode_intel +Compile atm_debug_dyn32_intel elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 531 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 537 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 387 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 576 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 428 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 209 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 403 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 599 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 549 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 336 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 880 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 328 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 639 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 176 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 613 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 548 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 524 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 493 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 959 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 498 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 284 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 640 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 179 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 950 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 915 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 671 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 300 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 949 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 970 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 684 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 451.823372 - 0: The maximum resident set size (KB) = 1889368 + 0: The total amount of wall time = 437.888352 + 0: The maximum resident set size (KB) = 1897992 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 783.487041 - 0: The maximum resident set size (KB) = 1765228 + 0: The total amount of wall time = 874.181544 + 0: The maximum resident set size (KB) = 1765068 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -259,14 +259,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 837.817324 - 0: The maximum resident set size (KB) = 2151536 + 0: The total amount of wall time = 855.907654 + 0: The maximum resident set size (KB) = 2156492 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -319,14 +319,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 380.010740 - 0: The maximum resident set size (KB) = 1174540 + 0: The total amount of wall time = 378.825787 + 0: The maximum resident set size (KB) = 1189436 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 892.480567 - 0: The maximum resident set size (KB) = 1689272 + 0: The total amount of wall time = 916.253251 + 0: The maximum resident set size (KB) = 1689668 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -449,14 +449,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1203.667275 - 0: The maximum resident set size (KB) = 1733732 + 0: The total amount of wall time = 1219.029822 + 0: The maximum resident set size (KB) = 1730396 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -521,14 +521,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 446.297803 - 0: The maximum resident set size (KB) = 2077260 + 0: The total amount of wall time = 452.148644 + 0: The maximum resident set size (KB) = 2062320 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -593,14 +593,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 461.152058 - 0: The maximum resident set size (KB) = 2057152 + 0: The total amount of wall time = 444.970947 + 0: The maximum resident set size (KB) = 2075400 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -653,14 +653,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 254.110310 - 0: The maximum resident set size (KB) = 1978604 + 0: The total amount of wall time = 258.335649 + 0: The maximum resident set size (KB) = 1962816 Test 009 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -725,14 +725,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 458.574330 - 0: The maximum resident set size (KB) = 1992252 + 0: The total amount of wall time = 454.842010 + 0: The maximum resident set size (KB) = 1986628 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -785,14 +785,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 266.614398 - 0: The maximum resident set size (KB) = 1747240 + 0: The total amount of wall time = 319.217529 + 0: The maximum resident set size (KB) = 1729840 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -845,14 +845,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 550.067206 - 0: The maximum resident set size (KB) = 2493752 + 0: The total amount of wall time = 539.659766 + 0: The maximum resident set size (KB) = 2501924 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -905,14 +905,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 476.512382 - 0: The maximum resident set size (KB) = 2057736 + 0: The total amount of wall time = 448.604815 + 0: The maximum resident set size (KB) = 2077108 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -965,14 +965,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.178588 - 0: The maximum resident set size (KB) = 1883144 + 0: The total amount of wall time = 382.464389 + 0: The maximum resident set size (KB) = 1893244 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1037,14 +1037,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 462.374245 - 0: The maximum resident set size (KB) = 2096304 + 0: The total amount of wall time = 449.594208 + 0: The maximum resident set size (KB) = 2075056 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1097,14 +1097,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 916.721771 - 0: The maximum resident set size (KB) = 2807628 + 0: The total amount of wall time = 977.372712 + 0: The maximum resident set size (KB) = 2810084 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 347.504287 - 0: The maximum resident set size (KB) = 2923888 + 0: The total amount of wall time = 345.344625 + 0: The maximum resident set size (KB) = 2919944 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1212,14 +1212,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 527.530983 - 0: The maximum resident set size (KB) = 3626832 + 0: The total amount of wall time = 521.869891 + 0: The maximum resident set size (KB) = 3664192 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1267,14 +1267,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 361.132627 - 0: The maximum resident set size (KB) = 3611344 + 0: The total amount of wall time = 391.132602 + 0: The maximum resident set size (KB) = 3607392 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1325,14 +1325,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 299.062655 - 0: The maximum resident set size (KB) = 2015620 + 0: The total amount of wall time = 284.005064 + 0: The maximum resident set size (KB) = 2023192 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1396,14 +1396,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 413.026049 - 0: The maximum resident set size (KB) = 1776820 + 0: The total amount of wall time = 425.611750 + 0: The maximum resident set size (KB) = 1772740 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1465,14 +1465,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 230.327785 - 0: The maximum resident set size (KB) = 1815740 + 0: The total amount of wall time = 226.630814 + 0: The maximum resident set size (KB) = 1827172 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1525,14 +1525,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.437688 - 0: The maximum resident set size (KB) = 2067420 + 0: The total amount of wall time = 404.173642 + 0: The maximum resident set size (KB) = 2039316 Test 023 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1584,14 +1584,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 275.501105 - 0: The maximum resident set size (KB) = 1789356 + 0: The total amount of wall time = 276.977445 + 0: The maximum resident set size (KB) = 1782980 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 234.104777 - 0: The maximum resident set size (KB) = 1817736 + 0: The total amount of wall time = 230.490661 + 0: The maximum resident set size (KB) = 1824332 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1710,14 +1710,14 @@ Checking test 026 cpld_control_c48_intel 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 = 427.710294 - 0: The maximum resident set size (KB) = 2840708 + 0: The total amount of wall time = 435.264082 + 0: The maximum resident set size (KB) = 2833060 Test 026 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 439.255864 - 0: The maximum resident set size (KB) = 2077380 + 0: The total amount of wall time = 434.066483 + 0: The maximum resident set size (KB) = 2096696 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1853,14 +1853,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 819.728581 - 0: The maximum resident set size (KB) = 1803056 + 0: The total amount of wall time = 856.504774 + 0: The maximum resident set size (KB) = 1825632 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1912,14 +1912,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 396.266881 - 0: The maximum resident set size (KB) = 1286388 + 0: The total amount of wall time = 409.034960 + 0: The maximum resident set size (KB) = 1304384 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 928.820630 - 0: The maximum resident set size (KB) = 1721252 + 0: The total amount of wall time = 925.956399 + 0: The maximum resident set size (KB) = 1721564 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2042,14 +2042,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1286.314019 - 0: The maximum resident set size (KB) = 1764500 + 0: The total amount of wall time = 1280.936967 + 0: The maximum resident set size (KB) = 1780528 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2060,14 +2060,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.518769 - 0: The maximum resident set size (KB) = 705340 + 0: The total amount of wall time = 173.789417 + 0: The maximum resident set size (KB) = 724296 Test 032 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2094,18 +2094,18 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 117.220259 - 0: The maximum resident set size (KB) = 659600 + 0: The total amount of wall time = 118.806942 + 0: The maximum resident set size (KB) = 661548 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.322944 - 0: The maximum resident set size (KB) = 668656 + 0: The total amount of wall time = 127.057585 + 0: The maximum resident set size (KB) = 673924 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_latlon_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2134,32 +2134,32 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.347518 - 0: The maximum resident set size (KB) = 670628 + 0: The total amount of wall time = 122.788113 + 0: The maximum resident set size (KB) = 671632 Test 035 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.598980 - 0: The maximum resident set size (KB) = 673448 + 0: The total amount of wall time = 128.169366 + 0: The maximum resident set size (KB) = 671440 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,14 +2198,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 340.966705 -0: The maximum resident set size (KB) = 870532 +0: The total amount of wall time = 341.554025 +0: The maximum resident set size (KB) = 867892 Test 037 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2244,14 +2244,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 341.901668 -0: The maximum resident set size (KB) = 864788 +0: The total amount of wall time = 342.968618 +0: The maximum resident set size (KB) = 861532 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c192_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 468.140966 - 0: The maximum resident set size (KB) = 990168 + 0: The total amount of wall time = 469.464101 + 0: The maximum resident set size (KB) = 963520 Test 039 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 483.806495 - 0: The maximum resident set size (KB) = 1451244 + 0: The total amount of wall time = 578.703456 + 0: The maximum resident set size (KB) = 1468452 Test 040 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c384gdas_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2323,21 +2323,21 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 417.955903 - 0: The maximum resident set size (KB) = 1551488 + 0: The total amount of wall time = 470.768638 + 0: The maximum resident set size (KB) = 1525024 Test 041 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2348,28 +2348,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.151974 - 0: The maximum resident set size (KB) = 679428 + 0: The total amount of wall time = 84.258011 + 0: The maximum resident set size (KB) = 686240 Test 042 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 44.506409 - 0: The maximum resident set size (KB) = 543916 + 0: The total amount of wall time = 48.070790 + 0: The maximum resident set size (KB) = 540836 Test 043 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2380,14 +2380,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 72.350384 - 0: The maximum resident set size (KB) = 662704 + 0: The total amount of wall time = 79.709404 + 0: The maximum resident set size (KB) = 675984 Test 044 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr4_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2402,14 +2402,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.144709 - 0: The maximum resident set size (KB) = 666700 + 0: The total amount of wall time = 123.287393 + 0: The maximum resident set size (KB) = 668292 Test 045 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_iovr5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2424,14 +2424,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.385820 - 0: The maximum resident set size (KB) = 663936 + 0: The total amount of wall time = 125.240594 + 0: The maximum resident set size (KB) = 667624 Test 046 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2478,14 +2478,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 142.946430 - 0: The maximum resident set size (KB) = 1634152 + 0: The total amount of wall time = 154.872088 + 0: The maximum resident set size (KB) = 1654696 Test 047 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2532,14 +2532,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.457964 - 0: The maximum resident set size (KB) = 1638208 + 0: The total amount of wall time = 160.815227 + 0: The maximum resident set size (KB) = 1638104 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2586,14 +2586,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 139.416227 - 0: The maximum resident set size (KB) = 1632740 + 0: The total amount of wall time = 156.317750 + 0: The maximum resident set size (KB) = 1650648 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2632,14 +2632,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 78.641960 - 0: The maximum resident set size (KB) = 929628 + 0: The total amount of wall time = 77.005768 + 0: The maximum resident set size (KB) = 927628 Test 050 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2686,14 +2686,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 141.786512 - 0: The maximum resident set size (KB) = 1624048 + 0: The total amount of wall time = 159.519558 + 0: The maximum resident set size (KB) = 1639652 Test 051 control_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2732,14 +2732,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 77.637286 - 0: The maximum resident set size (KB) = 990728 + 0: The total amount of wall time = 77.862759 + 0: The maximum resident set size (KB) = 993836 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2782,14 +2782,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 149.273172 - 0: The maximum resident set size (KB) = 1622124 + 0: The total amount of wall time = 165.836501 + 0: The maximum resident set size (KB) = 1638004 Test 053 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2832,14 +2832,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 136.116915 - 0: The maximum resident set size (KB) = 1736152 + 0: The total amount of wall time = 139.470851 + 0: The maximum resident set size (KB) = 1734488 Test 054 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2858,14 +2858,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 260.213517 - 0: The maximum resident set size (KB) = 1641020 + 0: The total amount of wall time = 261.524588 + 0: The maximum resident set size (KB) = 1649536 Test 055 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.070882 - 0: The maximum resident set size (KB) = 1710156 + 0: The total amount of wall time = 201.379537 + 0: The maximum resident set size (KB) = 1726624 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_mynn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2966,14 +2966,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.573683 - 0: The maximum resident set size (KB) = 1642184 + 0: The total amount of wall time = 144.874225 + 0: The maximum resident set size (KB) = 1660116 Test 057 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/merra2_thompson_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.456241 - 0: The maximum resident set size (KB) = 1663880 + 0: The total amount of wall time = 169.586490 + 0: The maximum resident set size (KB) = 1664904 Test 058 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,28 +3038,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 259.633951 - 0: The maximum resident set size (KB) = 959536 + 0: The total amount of wall time = 265.141018 + 0: The maximum resident set size (KB) = 964112 Test 059 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 139.219117 - 0: The maximum resident set size (KB) = 1109672 + 0: The total amount of wall time = 139.297537 + 0: The maximum resident set size (KB) = 1110492 Test 060 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.319411 - 0: The maximum resident set size (KB) = 948460 + 0: The total amount of wall time = 278.723377 + 0: The maximum resident set size (KB) = 949084 Test 061 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3088,14 +3088,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 161.847975 - 0: The maximum resident set size (KB) = 915912 + 0: The total amount of wall time = 169.687880 + 0: The maximum resident set size (KB) = 916976 Test 062 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_noquilt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3103,28 +3103,28 @@ Checking test 063 regional_noquilt_intel 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 = 250.977806 - 0: The maximum resident set size (KB) = 1491020 + 0: The total amount of wall time = 255.691738 + 0: The maximum resident set size (KB) = 1493988 Test 063 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 259.553735 - 0: The maximum resident set size (KB) = 959712 + 0: The total amount of wall time = 267.741805 + 0: The maximum resident set size (KB) = 961376 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3135,14 +3135,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 261.383526 - 0: The maximum resident set size (KB) = 957184 + 0: The total amount of wall time = 266.429814 + 0: The maximum resident set size (KB) = 960056 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_wofs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3153,14 +3153,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 324.421182 - 0: The maximum resident set size (KB) = 2082948 + 0: The total amount of wall time = 329.961121 + 0: The maximum resident set size (KB) = 2097012 Test 066 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3207,14 +3207,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.742196 - 0: The maximum resident set size (KB) = 1225884 + 0: The total amount of wall time = 388.185731 + 0: The maximum resident set size (KB) = 1202548 Test 067 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3225,14 +3225,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 215.790207 - 0: The maximum resident set size (KB) = 1423432 + 0: The total amount of wall time = 216.592905 + 0: The maximum resident set size (KB) = 1408896 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3279,14 +3279,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 406.547752 - 0: The maximum resident set size (KB) = 1127368 + 0: The total amount of wall time = 405.107729 + 0: The maximum resident set size (KB) = 1123200 Test 069 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3333,14 +3333,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.956121 - 0: The maximum resident set size (KB) = 1376068 + 0: The total amount of wall time = 363.684866 + 0: The maximum resident set size (KB) = 1378300 Test 070 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3379,14 +3379,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.135055 - 0: The maximum resident set size (KB) = 1132988 + 0: The total amount of wall time = 199.531913 + 0: The maximum resident set size (KB) = 1134500 Test 071 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3433,14 +3433,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 381.916787 - 0: The maximum resident set size (KB) = 1200984 + 0: The total amount of wall time = 383.315239 + 0: The maximum resident set size (KB) = 1186604 Test 072 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3487,14 +3487,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 404.106020 - 0: The maximum resident set size (KB) = 1152168 + 0: The total amount of wall time = 404.632152 + 0: The maximum resident set size (KB) = 1158544 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3533,14 +3533,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 284.430079 - 0: The maximum resident set size (KB) = 1197900 + 0: The total amount of wall time = 287.255854 + 0: The maximum resident set size (KB) = 1233548 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3587,14 +3587,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.480464 - 0: The maximum resident set size (KB) = 1080892 + 0: The total amount of wall time = 198.285536 + 0: The maximum resident set size (KB) = 1091536 Test 075 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3641,14 +3641,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.963608 - 0: The maximum resident set size (KB) = 1046196 + 0: The total amount of wall time = 204.039737 + 0: The maximum resident set size (KB) = 1039496 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3695,28 +3695,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.669285 - 0: The maximum resident set size (KB) = 1122176 + 0: The total amount of wall time = 180.204479 + 0: The maximum resident set size (KB) = 1124796 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 103.070538 - 0: The maximum resident set size (KB) = 1023032 + 0: The total amount of wall time = 102.200774 + 0: The maximum resident set size (KB) = 1023448 Test 078 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3763,14 +3763,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 372.842344 - 0: The maximum resident set size (KB) = 1182788 + 0: The total amount of wall time = 373.485813 + 0: The maximum resident set size (KB) = 1196116 Test 079 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3785,14 +3785,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 447.510074 - 0: The maximum resident set size (KB) = 2008324 + 0: The total amount of wall time = 453.798762 + 0: The maximum resident set size (KB) = 2009056 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3807,14 +3807,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 438.584415 - 0: The maximum resident set size (KB) = 2204660 + 0: The total amount of wall time = 441.694584 + 0: The maximum resident set size (KB) = 2182848 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3825,14 +3825,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 297.202958 - 0: The maximum resident set size (KB) = 824780 + 0: The total amount of wall time = 297.608365 + 0: The maximum resident set size (KB) = 848712 Test 082 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3843,14 +3843,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 293.619005 - 0: The maximum resident set size (KB) = 812024 + 0: The total amount of wall time = 298.535042 + 0: The maximum resident set size (KB) = 806476 Test 083 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3861,26 +3861,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 161.707212 - 0: The maximum resident set size (KB) = 804772 + 0: The total amount of wall time = 163.356069 + 0: The maximum resident set size (KB) = 846068 Test 084 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wam_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 104.166406 - 0: The maximum resident set size (KB) = 778964 + 0: The total amount of wall time = 101.620319 + 0: The maximum resident set size (KB) = 778368 Test 085 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3927,14 +3927,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.818467 - 0: The maximum resident set size (KB) = 1643476 + 0: The total amount of wall time = 127.298750 + 0: The maximum resident set size (KB) = 1641608 Test 086 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_control_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3945,14 +3945,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 238.523916 - 0: The maximum resident set size (KB) = 959356 + 0: The total amount of wall time = 239.005327 + 0: The maximum resident set size (KB) = 959132 Test 087 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3979,364 +3979,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 125.782640 - 0: The maximum resident set size (KB) = 819084 + 0: The total amount of wall time = 127.239321 + 0: The maximum resident set size (KB) = 825760 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 127.994595 - 0: The maximum resident set size (KB) = 819952 + 0: The total amount of wall time = 127.357888 + 0: The maximum resident set size (KB) = 832044 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.153287 - 0: The maximum resident set size (KB) = 827488 + 0: The total amount of wall time = 141.638703 + 0: The maximum resident set size (KB) = 834244 Test 090 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.544030 - 0: The maximum resident set size (KB) = 827372 + 0: The total amount of wall time = 127.899569 + 0: The maximum resident set size (KB) = 830036 Test 091 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.499395 - 0: The maximum resident set size (KB) = 869788 + 0: The total amount of wall time = 198.772881 + 0: The maximum resident set size (KB) = 870380 Test 092 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel 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.764425 - 0: The maximum resident set size (KB) = 875248 + 0: The total amount of wall time = 193.252752 + 0: The maximum resident set size (KB) = 873952 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 130.002758 - 0: The maximum resident set size (KB) = 837256 + 0: The total amount of wall time = 129.214266 + 0: The maximum resident set size (KB) = 850172 Test 094 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 133.513938 - 0: The maximum resident set size (KB) = 885620 + 0: The total amount of wall time = 133.937645 + 0: The maximum resident set size (KB) = 889924 Test 095 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 140.720409 - 0: The maximum resident set size (KB) = 1656892 + 0: The total amount of wall time = 134.889526 + 0: The maximum resident set size (KB) = 1655804 Test 096 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 829.274606 - 0: The maximum resident set size (KB) = 892732 + 0: The total amount of wall time = 833.663040 + 0: The maximum resident set size (KB) = 904516 Test 097 regional_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.527061 - 0: The maximum resident set size (KB) = 1210304 + 0: The total amount of wall time = 232.480235 + 0: The maximum resident set size (KB) = 1215312 Test 098 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.264416 - 0: The maximum resident set size (KB) = 1212192 + 0: The total amount of wall time = 226.142135 + 0: The maximum resident set size (KB) = 1212992 Test 099 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.100184 - 0: The maximum resident set size (KB) = 1220684 + 0: The total amount of wall time = 232.270614 + 0: The maximum resident set size (KB) = 1224340 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel 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.184425 - 0: The maximum resident set size (KB) = 1231276 + 0: The total amount of wall time = 234.184599 + 0: The maximum resident set size (KB) = 1224576 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.787908 - 0: The maximum resident set size (KB) = 1224388 + 0: The total amount of wall time = 233.224511 + 0: The maximum resident set size (KB) = 1214164 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.458386 - 0: The maximum resident set size (KB) = 1297844 + 0: The total amount of wall time = 244.302640 + 0: The maximum resident set size (KB) = 1306548 Test 103 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel 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.120548 - 0: The maximum resident set size (KB) = 1221280 + 0: The total amount of wall time = 236.748197 + 0: The maximum resident set size (KB) = 1215648 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.889945 - 0: The maximum resident set size (KB) = 1214292 + 0: The total amount of wall time = 238.897417 + 0: The maximum resident set size (KB) = 1225476 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.519153 - 0: The maximum resident set size (KB) = 1220196 + 0: The total amount of wall time = 233.775045 + 0: The maximum resident set size (KB) = 1213840 Test 106 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.861170 - 0: The maximum resident set size (KB) = 1221332 + 0: The total amount of wall time = 232.700914 + 0: The maximum resident set size (KB) = 1231344 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.819438 - 0: The maximum resident set size (KB) = 1218328 + 0: The total amount of wall time = 229.445153 + 0: The maximum resident set size (KB) = 1209692 Test 108 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.096337 - 0: The maximum resident set size (KB) = 1220268 + 0: The total amount of wall time = 231.528662 + 0: The maximum resident set size (KB) = 1219104 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.561220 - 0: The maximum resident set size (KB) = 1218744 + 0: The total amount of wall time = 384.608919 + 0: The maximum resident set size (KB) = 1228024 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel 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.766613 - 0: The maximum resident set size (KB) = 1214064 + 0: The total amount of wall time = 226.569478 + 0: The maximum resident set size (KB) = 1214816 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.147903 - 0: The maximum resident set size (KB) = 1224352 + 0: The total amount of wall time = 304.549934 + 0: The maximum resident set size (KB) = 1231760 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.552976 - 0: The maximum resident set size (KB) = 1212004 + 0: The total amount of wall time = 237.239561 + 0: The maximum resident set size (KB) = 1215940 Test 113 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4377,14 +4377,14 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.873320 - 0: The maximum resident set size (KB) = 1220204 + 0: The total amount of wall time = 406.741596 + 0: The maximum resident set size (KB) = 1216796 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4395,14 +4395,14 @@ Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 199.680414 - 0: The maximum resident set size (KB) = 1309708 + 0: The total amount of wall time = 186.050043 + 0: The maximum resident set size (KB) = 1276152 Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_intel Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4449,14 +4449,14 @@ Checking test 116 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 315.328400 - 0: The maximum resident set size (KB) = 1142588 + 0: The total amount of wall time = 317.073044 + 0: The maximum resident set size (KB) = 1147356 Test 116 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_intel Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4503,14 +4503,14 @@ Checking test 117 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.941527 - 0: The maximum resident set size (KB) = 1044892 + 0: The total amount of wall time = 165.138313 + 0: The maximum resident set size (KB) = 1014072 Test 117 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_intel Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4557,14 +4557,14 @@ Checking test 118 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 311.950802 - 0: The maximum resident set size (KB) = 1295056 + 0: The total amount of wall time = 299.018973 + 0: The maximum resident set size (KB) = 1272956 Test 118 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_intel Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4611,14 +4611,14 @@ Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 155.379397 - 0: The maximum resident set size (KB) = 1034512 + 0: The total amount of wall time = 161.091018 + 0: The maximum resident set size (KB) = 1044888 Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_intel Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4665,14 +4665,14 @@ Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.440603 - 0: The maximum resident set size (KB) = 1035132 + 0: The total amount of wall time = 173.038878 + 0: The maximum resident set size (KB) = 987688 Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_intel Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4711,28 +4711,28 @@ Checking test 121 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.193640 - 0: The maximum resident set size (KB) = 1089964 + 0: The total amount of wall time = 240.518454 + 0: The maximum resident set size (KB) = 1134604 Test 121 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_intel Checking test 122 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.134745 - 0: The maximum resident set size (KB) = 962400 + 0: The total amount of wall time = 88.162058 + 0: The maximum resident set size (KB) = 965284 Test 122 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_intel Checking test 123 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4748,40 +4748,40 @@ Checking test 123 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 106.720304 - 0: The maximum resident set size (KB) = 1300616 + 0: The total amount of wall time = 103.587863 + 0: The maximum resident set size (KB) = 1307224 Test 123 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_intel Checking test 124 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 44.354665 - 0: The maximum resident set size (KB) = 1201024 + 0: The total amount of wall time = 41.732275 + 0: The maximum resident set size (KB) = 1208312 Test 124 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_intel Checking test 125 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 57.671850 - 0: The maximum resident set size (KB) = 1163784 + 0: The total amount of wall time = 55.604468 + 0: The maximum resident set size (KB) = 1154932 Test 125 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_intel Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4828,42 +4828,42 @@ Checking test 126 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.198639 - 0: The maximum resident set size (KB) = 1097568 + 0: The total amount of wall time = 214.456741 + 0: The maximum resident set size (KB) = 1101080 Test 126 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_intel Checking test 127 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.496279 - 0: The maximum resident set size (KB) = 1095320 + 0: The total amount of wall time = 227.769448 + 0: The maximum resident set size (KB) = 1096280 Test 127 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_intel Checking test 128 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.393731 - 0: The maximum resident set size (KB) = 1098620 + 0: The total amount of wall time = 225.377390 + 0: The maximum resident set size (KB) = 1099504 Test 128 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_intel Checking test 129 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4877,14 +4877,14 @@ Checking test 129 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 697.576904 - 0: The maximum resident set size (KB) = 1347488 + 0: The total amount of wall time = 693.796136 + 0: The maximum resident set size (KB) = 1345492 Test 129 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_intel Checking test 130 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4898,81 +4898,81 @@ Checking test 130 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 712.898446 - 0: The maximum resident set size (KB) = 995268 + 0: The total amount of wall time = 717.082360 + 0: The maximum resident set size (KB) = 985956 Test 130 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_intel Checking test 131 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 405.093150 - 0: The maximum resident set size (KB) = 1245404 + 0: The total amount of wall time = 402.194526 + 0: The maximum resident set size (KB) = 1237648 Test 131 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_intel Checking test 132 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 706.565714 - 0: The maximum resident set size (KB) = 1416416 + 0: The total amount of wall time = 702.156892 + 0: The maximum resident set size (KB) = 1407040 Test 132 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_intel Checking test 133 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.120107 - 0: The maximum resident set size (KB) = 1144896 + 0: The total amount of wall time = 232.341265 + 0: The maximum resident set size (KB) = 1152276 Test 133 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_intel Checking test 134 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 324.134135 - 0: The maximum resident set size (KB) = 867448 + 0: The total amount of wall time = 319.880213 + 0: The maximum resident set size (KB) = 885040 Test 134 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_thompson_gfdlsf_intel Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 299.811518 - 0: The maximum resident set size (KB) = 1281516 + 0: The total amount of wall time = 299.262357 + 0: The maximum resident set size (KB) = 1288556 Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_intel Checking test 136 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4981,14 +4981,14 @@ Checking test 136 hafs_regional_atm_ocn_intel 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.082116 - 0: The maximum resident set size (KB) = 954740 + 0: The total amount of wall time = 380.659094 + 0: The maximum resident set size (KB) = 950716 Test 136 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_wav_intel Checking test 137 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4997,14 +4997,14 @@ Checking test 137 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 834.316678 - 0: The maximum resident set size (KB) = 1014528 + 0: The total amount of wall time = 829.964413 + 0: The maximum resident set size (KB) = 972020 Test 137 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_wav_intel Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,14 +5015,14 @@ Checking test 138 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 889.318521 - 0: The maximum resident set size (KB) = 1018204 + 0: The total amount of wall time = 893.334177 + 0: The maximum resident set size (KB) = 1008888 Test 138 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_1nest_atm_intel Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5033,25 +5033,25 @@ Checking test 139 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 315.474492 - 0: The maximum resident set size (KB) = 604820 + 0: The total amount of wall time = 331.543285 + 0: The maximum resident set size (KB) = 607020 Test 139 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_telescopic_2nests_atm_intel Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5060,14 +5060,14 @@ Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 413.920523 - 0: The maximum resident set size (KB) = 619996 + 0: The total amount of wall time = 419.339445 + 0: The maximum resident set size (KB) = 617456 Test 140 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_1nest_atm_intel Checking test 141 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5087,26 +5087,26 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK @@ -5114,14 +5114,14 @@ Checking test 141 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 166.823503 - 0: The maximum resident set size (KB) = 433484 + 0: The total amount of wall time = 166.302451 + 0: The maximum resident set size (KB) = 438460 Test 141 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_multiple_4nests_atm_intel Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5141,14 +5141,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -5156,12 +5156,12 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK @@ -5171,13 +5171,13 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK @@ -5188,11 +5188,11 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK @@ -5203,14 +5203,14 @@ Checking test 142 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 463.133874 - 0: The maximum resident set size (KB) = 542580 + 0: The total amount of wall time = 483.770165 + 0: The maximum resident set size (KB) = 546352 Test 142 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_specified_moving_1nest_atm_intel Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5219,14 +5219,14 @@ Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 228.262745 - 0: The maximum resident set size (KB) = 617732 + 0: The total amount of wall time = 235.551186 + 0: The maximum resident set size (KB) = 623288 Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_intel Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5239,23 +5239,23 @@ Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 217.938963 - 0: The maximum resident set size (KB) = 619936 + 0: The total amount of wall time = 216.995328 + 0: The maximum resident set size (KB) = 622432 Test 144 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5264,42 +5264,42 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 280.162490 - 0: The maximum resident set size (KB) = 685828 + 0: The total amount of wall time = 297.687869 + 0: The maximum resident set size (KB) = 676236 Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_storm_following_1nest_atm_intel Checking test 146 hafs_global_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 78.540171 - 0: The maximum resident set size (KB) = 451104 + 0: The total amount of wall time = 79.283162 + 0: The maximum resident set size (KB) = 451492 Test 146 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 676.364143 - 0: The maximum resident set size (KB) = 636996 + 0: The total amount of wall time = 679.564047 + 0: The maximum resident set size (KB) = 632904 Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5310,14 +5310,14 @@ Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 963.542316 - 0: The maximum resident set size (KB) = 747144 + 0: The total amount of wall time = 972.161645 + 0: The maximum resident set size (KB) = 749480 Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5328,14 +5328,14 @@ Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 1039.318020 - 0: The maximum resident set size (KB) = 841392 + 0: The total amount of wall time = 1036.834964 + 0: The maximum resident set size (KB) = 808984 Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5345,14 +5345,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 618.068101 - 0: The maximum resident set size (KB) = 832012 + 0: The total amount of wall time = 639.200203 + 0: The maximum resident set size (KB) = 833588 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_intel Checking test 151 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5360,14 +5360,14 @@ Checking test 151 hafs_regional_docn_intel 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 = 324.611754 - 0: The maximum resident set size (KB) = 936884 + 0: The total amount of wall time = 341.959765 + 0: The maximum resident set size (KB) = 953852 Test 151 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_oisst_intel Checking test 152 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5375,131 +5375,131 @@ Checking test 152 hafs_regional_docn_oisst_intel 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 = 328.495838 - 0: The maximum resident set size (KB) = 928916 + 0: The total amount of wall time = 340.439543 + 0: The maximum resident set size (KB) = 936416 Test 152 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_datm_cdeps_intel Checking test 153 hafs_regional_datm_cdeps_intel 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 = 975.713199 - 0: The maximum resident set size (KB) = 1341288 + 0: The total amount of wall time = 982.682875 + 0: The maximum resident set size (KB) = 1338020 Test 153 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_intel Checking test 154 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.496421 - 0: The maximum resident set size (KB) = 1131496 + 0: The total amount of wall time = 123.766433 + 0: The maximum resident set size (KB) = 1141460 Test 154 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_restart_cfsr_intel Checking test 155 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 74.615006 - 0: The maximum resident set size (KB) = 1091708 + 0: The total amount of wall time = 77.117248 + 0: The maximum resident set size (KB) = 1090324 Test 155 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_gefs_intel Checking test 156 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.480557 - 0: The maximum resident set size (KB) = 1013700 + 0: The total amount of wall time = 122.111663 + 0: The maximum resident set size (KB) = 1023092 Test 156 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_iau_gefs_intel Checking test 157 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.175501 - 0: The maximum resident set size (KB) = 1006792 + 0: The total amount of wall time = 120.758062 + 0: The maximum resident set size (KB) = 1016880 Test 157 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_stochy_gefs_intel Checking test 158 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.361014 - 0: The maximum resident set size (KB) = 1002272 + 0: The total amount of wall time = 121.401423 + 0: The maximum resident set size (KB) = 1012620 Test 158 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_ciceC_cfsr_intel Checking test 159 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.936189 - 0: The maximum resident set size (KB) = 1147940 + 0: The total amount of wall time = 124.760673 + 0: The maximum resident set size (KB) = 1144692 Test 159 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_cfsr_intel Checking test 160 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.559403 - 0: The maximum resident set size (KB) = 1148308 + 0: The total amount of wall time = 125.566252 + 0: The maximum resident set size (KB) = 1151772 Test 160 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_gefs_intel Checking test 161 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 117.235872 - 0: The maximum resident set size (KB) = 1013792 + 0: The total amount of wall time = 119.276869 + 0: The maximum resident set size (KB) = 1003560 Test 161 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_cfsr_intel Checking test 162 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5508,14 +5508,14 @@ Checking test 162 datm_cdeps_mx025_cfsr_intel 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 = 285.435487 - 0: The maximum resident set size (KB) = 1157008 + 0: The total amount of wall time = 306.912649 + 0: The maximum resident set size (KB) = 1157404 Test 162 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_gefs_intel Checking test 163 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5524,77 +5524,77 @@ Checking test 163 datm_cdeps_mx025_gefs_intel 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 = 282.435475 - 0: The maximum resident set size (KB) = 1148160 + 0: The total amount of wall time = 297.418474 + 0: The maximum resident set size (KB) = 1155600 Test 163 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_multiple_files_cfsr_intel Checking test 164 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.206900 - 0: The maximum resident set size (KB) = 1149528 + 0: The total amount of wall time = 122.715134 + 0: The maximum resident set size (KB) = 1155500 Test 164 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_3072x1536_cfsr_intel Checking test 165 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 175.291794 - 0: The maximum resident set size (KB) = 2438792 + 0: The total amount of wall time = 178.475650 + 0: The maximum resident set size (KB) = 2383908 Test 165 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_gfs_intel Checking test 166 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 180.006985 - 0: The maximum resident set size (KB) = 2377084 + 0: The total amount of wall time = 182.093891 + 0: The maximum resident set size (KB) = 2462080 Test 166 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_debug_cfsr_intel Checking test 167 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 301.226193 - 0: The maximum resident set size (KB) = 1075328 + 0: The total amount of wall time = 304.262564 + 0: The maximum resident set size (KB) = 1070708 Test 167 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_faster_intel Checking test 168 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.741765 - 0: The maximum resident set size (KB) = 1137512 + 0: The total amount of wall time = 123.853572 + 0: The maximum resident set size (KB) = 1153504 Test 168 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_gswp3_intel Checking test 169 datm_cdeps_lnd_gswp3_intel 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 @@ -5603,14 +5603,14 @@ Checking test 169 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 46.105725 - 0: The maximum resident set size (KB) = 329128 + 0: The total amount of wall time = 54.556217 + 0: The maximum resident set size (KB) = 339208 Test 169 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_intel Checking test 170 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5619,14 +5619,14 @@ Checking test 170 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 44.455630 - 0: The maximum resident set size (KB) = 557844 + 0: The total amount of wall time = 50.246439 + 0: The maximum resident set size (KB) = 556460 Test 170 datm_cdeps_lnd_era5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/datm_cdeps_lnd_era5_rst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_rst_intel Checking test 171 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5635,14 +5635,14 @@ Checking test 171 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 34.204514 - 0: The maximum resident set size (KB) = 563280 + 0: The total amount of wall time = 34.788009 + 0: The maximum resident set size (KB) = 558684 Test 171 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_sbs_intel Checking test 172 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5731,14 +5731,14 @@ Checking test 172 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 344.546305 - 0: The maximum resident set size (KB) = 1634600 + 0: The total amount of wall time = 393.686892 + 0: The maximum resident set size (KB) = 1646876 Test 172 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_atmlnd_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_intel Checking test 173 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5827,14 +5827,14 @@ Checking test 173 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 347.393013 - 0: The maximum resident set size (KB) = 1644492 + 0: The total amount of wall time = 391.185936 + 0: The maximum resident set size (KB) = 1640980 Test 173 control_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_restart_p8_atmlnd_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_atmlnd_intel Checking test 174 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5855,14 +5855,14 @@ Checking test 174 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 183.711025 - 0: The maximum resident set size (KB) = 948208 + 0: The total amount of wall time = 197.423635 + 0: The maximum resident set size (KB) = 943504 Test 174 control_restart_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmwav_control_noaero_p8_intel Checking test 175 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5905,14 +5905,14 @@ Checking test 175 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 82.007732 - 0: The maximum resident set size (KB) = 1703500 + 0: The total amount of wall time = 87.123010 + 0: The maximum resident set size (KB) = 1690380 Test 175 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_atmwav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_atmwav_intel Checking test 176 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5956,14 +5956,14 @@ Checking test 176 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 81.983347 - 0: The maximum resident set size (KB) = 682412 + 0: The total amount of wall time = 85.909148 + 0: The maximum resident set size (KB) = 693668 Test 176 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_intel Checking test 177 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6007,14 +6007,14 @@ Checking test 177 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.812942 - 0: The maximum resident set size (KB) = 1792108 + 0: The total amount of wall time = 207.900695 + 0: The maximum resident set size (KB) = 1786704 Test 177 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_intel Checking test 178 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6058,14 +6058,14 @@ Checking test 178 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 246.158755 - 0: The maximum resident set size (KB) = 1802676 + 0: The total amount of wall time = 248.446801 + 0: The maximum resident set size (KB) = 1810340 Test 178 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_micro_intel Checking test 179 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6109,14 +6109,14 @@ Checking test 179 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.884852 - 0: The maximum resident set size (KB) = 1834884 + 0: The total amount of wall time = 262.880486 + 0: The maximum resident set size (KB) = 1818912 Test 179 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_atmaq_debug_intel Checking test 180 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6130,14 +6130,14 @@ Checking test 180 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 978.115169 - 0: The maximum resident set size (KB) = 4593772 + 0: The total amount of wall time = 995.403334 + 0: The maximum resident set size (KB) = 4589524 Test 180 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_c48_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_gnu Checking test 181 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6176,14 +6176,14 @@ Checking test 181 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 562.407920 -0: The maximum resident set size (KB) = 861728 +0: The total amount of wall time = 563.126826 +0: The maximum resident set size (KB) = 856372 Test 181 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_gnu Checking test 182 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6194,14 +6194,14 @@ Checking test 182 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 126.449389 - 0: The maximum resident set size (KB) = 730208 + 0: The total amount of wall time = 128.952842 + 0: The maximum resident set size (KB) = 727584 Test 182 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_gnu Checking test 183 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6212,14 +6212,14 @@ Checking test 183 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 223.435886 - 0: The maximum resident set size (KB) = 729576 + 0: The total amount of wall time = 218.740789 + 0: The maximum resident set size (KB) = 730840 Test 183 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_gnu Checking test 184 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6266,14 +6266,14 @@ Checking test 184 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 210.478077 - 0: The maximum resident set size (KB) = 1508236 + 0: The total amount of wall time = 210.224228 + 0: The maximum resident set size (KB) = 1508732 Test 184 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_p8_ugwpv1_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_gnu Checking test 185 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6320,14 +6320,14 @@ Checking test 185 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.030465 - 0: The maximum resident set size (KB) = 1509384 + 0: The total amount of wall time = 202.932154 + 0: The maximum resident set size (KB) = 1509904 Test 185 control_p8_ugwpv1_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_flake_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_gnu Checking test 186 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6338,14 +6338,14 @@ Checking test 186 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.293231 - 0: The maximum resident set size (KB) = 809676 + 0: The total amount of wall time = 256.130493 + 0: The maximum resident set size (KB) = 806960 Test 186 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_gnu Checking test 187 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6392,14 +6392,14 @@ Checking test 187 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.109550 - 0: The maximum resident set size (KB) = 1085788 + 0: The total amount of wall time = 451.330519 + 0: The maximum resident set size (KB) = 1091208 Test 187 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_gnu Checking test 188 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6446,14 +6446,14 @@ Checking test 188 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.975421 - 0: The maximum resident set size (KB) = 1084668 + 0: The total amount of wall time = 458.959764 + 0: The maximum resident set size (KB) = 1088776 Test 188 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_gnu Checking test 189 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6500,14 +6500,14 @@ Checking test 189 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 419.861946 - 0: The maximum resident set size (KB) = 1120928 + 0: The total amount of wall time = 420.439109 + 0: The maximum resident set size (KB) = 1149668 Test 189 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_gnu Checking test 190 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6546,14 +6546,14 @@ Checking test 190 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 229.989517 - 0: The maximum resident set size (KB) = 891592 + 0: The total amount of wall time = 229.913596 + 0: The maximum resident set size (KB) = 885032 Test 190 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_gnu Checking test 191 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6600,14 +6600,14 @@ Checking test 191 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 447.159703 - 0: The maximum resident set size (KB) = 1084764 + 0: The total amount of wall time = 463.113479 + 0: The maximum resident set size (KB) = 1087380 Test 191 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_gnu Checking test 192 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6654,14 +6654,14 @@ Checking test 192 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.859465 - 0: The maximum resident set size (KB) = 1084528 + 0: The total amount of wall time = 464.314001 + 0: The maximum resident set size (KB) = 1089012 Test 192 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_sfcdiff_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_gnu Checking test 193 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6700,14 +6700,14 @@ Checking test 193 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 333.801555 - 0: The maximum resident set size (KB) = 885360 + 0: The total amount of wall time = 332.598656 + 0: The maximum resident set size (KB) = 883832 Test 193 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_gnu Checking test 194 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6754,14 +6754,14 @@ Checking test 194 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.559443 - 0: The maximum resident set size (KB) = 1072176 + 0: The total amount of wall time = 236.622943 + 0: The maximum resident set size (KB) = 1077468 Test 194 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_noqr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_noqr_gnu Checking test 195 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6808,14 +6808,14 @@ Checking test 195 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 234.509912 - 0: The maximum resident set size (KB) = 1137940 + 0: The total amount of wall time = 235.403588 + 0: The maximum resident set size (KB) = 1137576 Test 195 hrrr_control_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_gnu Checking test 196 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6862,14 +6862,14 @@ Checking test 196 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 210.340335 - 0: The maximum resident set size (KB) = 1026960 + 0: The total amount of wall time = 213.903469 + 0: The maximum resident set size (KB) = 1047692 Test 196 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_gnu Checking test 197 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6916,42 +6916,42 @@ Checking test 197 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 233.094716 - 0: The maximum resident set size (KB) = 1070540 + 0: The total amount of wall time = 233.791135 + 0: The maximum resident set size (KB) = 1072556 Test 197 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_gnu Checking test 198 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.893900 - 0: The maximum resident set size (KB) = 877896 + 0: The total amount of wall time = 118.627056 + 0: The maximum resident set size (KB) = 881496 Test 198 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_noqr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_noqr_gnu Checking test 199 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.499942 - 0: The maximum resident set size (KB) = 932900 + 0: The total amount of wall time = 118.462913 + 0: The maximum resident set size (KB) = 932008 Test 199 hrrr_control_restart_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_gnu Checking test 200 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6998,224 +6998,224 @@ Checking test 200 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.897627 - 0: The maximum resident set size (KB) = 1074076 + 0: The total amount of wall time = 449.021288 + 0: The maximum resident set size (KB) = 1085288 Test 200 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_gnu Checking test 201 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 71.600716 - 0: The maximum resident set size (KB) = 774652 + 0: The total amount of wall time = 69.200372 + 0: The maximum resident set size (KB) = 770844 Test 201 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/regional_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_gnu Checking test 202 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 373.713261 - 0: The maximum resident set size (KB) = 924384 + 0: The total amount of wall time = 377.156934 + 0: The maximum resident set size (KB) = 921560 Test 202 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_gnu Checking test 203 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.568370 - 0: The maximum resident set size (KB) = 1098296 + 0: The total amount of wall time = 114.576153 + 0: The maximum resident set size (KB) = 1100672 Test 203 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_gnu Checking test 204 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.490563 - 0: The maximum resident set size (KB) = 1089352 + 0: The total amount of wall time = 110.673883 + 0: The maximum resident set size (KB) = 1084332 Test 204 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_gf_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_gnu Checking test 205 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.840029 - 0: The maximum resident set size (KB) = 1090928 + 0: The total amount of wall time = 115.786205 + 0: The maximum resident set size (KB) = 1088028 Test 205 hrrr_gf_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_c3_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_gnu Checking test 206 hrrr_c3_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.127629 - 0: The maximum resident set size (KB) = 1101068 + 0: The total amount of wall time = 111.138244 + 0: The maximum resident set size (KB) = 1092616 Test 206 hrrr_c3_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_gnu Checking test 207 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 121.168447 - 0: The maximum resident set size (KB) = 1267304 + 0: The total amount of wall time = 122.113608 + 0: The maximum resident set size (KB) = 1265044 Test 207 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.172818 - 0: The maximum resident set size (KB) = 1094248 + 0: The total amount of wall time = 185.147772 + 0: The maximum resident set size (KB) = 1090592 Test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_progcld_thompson_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_gnu Checking test 209 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.917695 - 0: The maximum resident set size (KB) = 1098148 + 0: The total amount of wall time = 120.514499 + 0: The maximum resident set size (KB) = 1097060 Test 209 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rrfs_v1beta_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_gnu Checking test 210 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.555284 - 0: The maximum resident set size (KB) = 1090400 + 0: The total amount of wall time = 114.877696 + 0: The maximum resident set size (KB) = 1093384 Test 210 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_ras_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_gnu Checking test 211 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 67.098186 - 0: The maximum resident set size (KB) = 724572 + 0: The total amount of wall time = 63.907110 + 0: The maximum resident set size (KB) = 721796 Test 211 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_stochy_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_gnu Checking test 212 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 73.337569 - 0: The maximum resident set size (KB) = 724176 + 0: The total amount of wall time = 74.901388 + 0: The maximum resident set size (KB) = 723000 Test 212 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/control_debug_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_gnu Checking test 213 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 74.128440 - 0: The maximum resident set size (KB) = 1507316 + 0: The total amount of wall time = 81.051961 + 0: The maximum resident set size (KB) = 1500556 Test 213 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_flake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_gnu Checking test 214 rap_flake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.201113 - 0: The maximum resident set size (KB) = 1107424 + 0: The total amount of wall time = 112.491500 + 0: The maximum resident set size (KB) = 1092684 Test 214 rap_flake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_clm_lake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_gnu Checking test 215 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.714615 - 0: The maximum resident set size (KB) = 1102944 + 0: The total amount of wall time = 127.679090 + 0: The maximum resident set size (KB) = 1094048 Test 215 rap_clm_lake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/gnv1_c96_no_nest_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_gnu Checking test 216 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7256,14 +7256,14 @@ Checking test 216 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.315302 - 0: The maximum resident set size (KB) = 1100892 + 0: The total amount of wall time = 200.545789 + 0: The maximum resident set size (KB) = 1100544 Test 216 gnv1_c96_no_nest_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_gnu Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7310,14 +7310,14 @@ Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 435.176866 - 0: The maximum resident set size (KB) = 963976 + 0: The total amount of wall time = 429.953691 + 0: The maximum resident set size (KB) = 962488 Test 217 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_gnu Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7364,14 +7364,14 @@ Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.575669 - 0: The maximum resident set size (KB) = 953520 + 0: The total amount of wall time = 226.310231 + 0: The maximum resident set size (KB) = 955820 Test 218 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_gnu Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7418,14 +7418,14 @@ Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.702233 - 0: The maximum resident set size (KB) = 968160 + 0: The total amount of wall time = 390.828922 + 0: The maximum resident set size (KB) = 998460 Test 219 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_gnu Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7472,14 +7472,14 @@ Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.404189 - 0: The maximum resident set size (KB) = 893360 + 0: The total amount of wall time = 201.202874 + 0: The maximum resident set size (KB) = 872020 Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_gnu Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7526,14 +7526,14 @@ Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.330151 - 0: The maximum resident set size (KB) = 951496 + 0: The total amount of wall time = 222.730813 + 0: The maximum resident set size (KB) = 953576 Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_gnu Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7572,28 +7572,28 @@ Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.306204 - 0: The maximum resident set size (KB) = 856744 + 0: The total amount of wall time = 321.277583 + 0: The maximum resident set size (KB) = 860768 Test 222 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_gnu Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.277208 - 0: The maximum resident set size (KB) = 855976 + 0: The total amount of wall time = 111.256666 + 0: The maximum resident set size (KB) = 857124 Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_gnu Checking test 224 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7609,40 +7609,40 @@ Checking test 224 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 152.926750 - 0: The maximum resident set size (KB) = 1270380 + 0: The total amount of wall time = 147.609195 + 0: The maximum resident set size (KB) = 1268964 Test 224 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_gnu Checking test 225 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 58.148834 - 0: The maximum resident set size (KB) = 1178076 + 0: The total amount of wall time = 70.638012 + 0: The maximum resident set size (KB) = 1177256 Test 225 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_restart_mismatch_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_gnu Checking test 226 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.144792 - 0: The maximum resident set size (KB) = 935668 + 0: The total amount of wall time = 82.444567 + 0: The maximum resident set size (KB) = 944856 Test 226 conus13km_restart_mismatch_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_gnu Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7689,42 +7689,42 @@ Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.829008 - 0: The maximum resident set size (KB) = 989516 + 0: The total amount of wall time = 254.112351 + 0: The maximum resident set size (KB) = 988508 Test 227 rap_control_dyn64_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_gnu Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.127121 - 0: The maximum resident set size (KB) = 976768 + 0: The total amount of wall time = 110.983948 + 0: The maximum resident set size (KB) = 976308 Test 228 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_gnu Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.850939 - 0: The maximum resident set size (KB) = 966744 + 0: The total amount of wall time = 108.601448 + 0: The maximum resident set size (KB) = 970300 Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_gnu Checking test 230 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7738,14 +7738,14 @@ Checking test 230 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 323.770786 - 0: The maximum resident set size (KB) = 1279396 + 0: The total amount of wall time = 322.248191 + 0: The maximum resident set size (KB) = 1283340 Test 230 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_qr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_gnu Checking test 231 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7759,54 +7759,54 @@ Checking test 231 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 340.840468 - 0: The maximum resident set size (KB) = 971656 + 0: The total amount of wall time = 337.325667 + 0: The maximum resident set size (KB) = 973308 Test 231 conus13km_debug_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_debug_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_gnu Checking test 232 conus13km_debug_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.519083 - 0: The maximum resident set size (KB) = 1187968 + 0: The total amount of wall time = 194.866941 + 0: The maximum resident set size (KB) = 1191440 Test 232 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/conus13km_radar_tten_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_gnu Checking test 233 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 322.923830 - 0: The maximum resident set size (KB) = 1350024 + 0: The total amount of wall time = 328.741249 + 0: The maximum resident set size (KB) = 1349176 Test 233 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2171844/rap_control_dyn64_phy32_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_gnu Checking test 234 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.511763 - 0: The maximum resident set size (KB) = 1002056 + 0: The total amount of wall time = 117.402626 + 0: The maximum resident set size (KB) = 1000200 Test 234 rap_control_dyn64_phy32_debug_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 02:57:32 AM CST 2024 -Elapsed time: 12h:21m:45s. Have a nice day! +Tue Feb 13 17:50:43 CST 2024 +Elapsed time: 02h:23m:03s. Have a nice day! diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index c3f73d0673..131777ec7c 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,56 +1,56 @@ -Mon Feb 12 21:36:05 UTC 2024 +Tue Feb 13 22:06:29 UTC 2024 Start Regression test -Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 382 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 2039 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1847 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1797 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 2229 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1862 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1827 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1819 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_debug_dyn32_intel elapsed time 421 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1977 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1827 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 2220 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1847 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1824 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON Compile datm_cdeps_debug_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 486 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 493 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1835 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1968 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 242 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2535 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 234 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1891 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1915 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 datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 532 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 100 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 1942 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 2010 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 2504 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 1829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1916 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 s2s_intel elapsed time 1896 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 343 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2184 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 324 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2814 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2315 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 3316 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 536 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5517 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2344 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_mixedmode_intel +Compile s2sw_debug_intel elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 2104 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 2904 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2246 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 3032 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 346 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 5527 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -115,14 +115,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 534.782062 - 0: The maximum resident set size (KB) = 1751836 + 0: The total amount of wall time = 428.106728 + 0: The maximum resident set size (KB) = 1760040 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -186,14 +186,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1230.188918 - 0: The maximum resident set size (KB) = 1636516 + 0: The total amount of wall time = 1234.472812 + 0: The maximum resident set size (KB) = 1637172 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_gfsv17_iau_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1334.672577 - 0: The maximum resident set size (KB) = 1866968 + 0: The total amount of wall time = 1328.242245 + 0: The maximum resident set size (KB) = 1853780 -Test 003 cpld_control_gfsv17_iau_intel PASS Tries: 2 +Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -299,14 +299,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 599.499592 - 0: The maximum resident set size (KB) = 983572 + 0: The total amount of wall time = 618.249105 + 0: The maximum resident set size (KB) = 975816 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -370,14 +370,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1426.469561 - 0: The maximum resident set size (KB) = 1610028 + 0: The total amount of wall time = 1437.722109 + 0: The maximum resident set size (KB) = 1626564 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_intel Checking test 006 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -442,14 +442,14 @@ Checking test 006 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 491.753492 - 0: The maximum resident set size (KB) = 1790460 + 0: The total amount of wall time = 465.499320 + 0: The maximum resident set size (KB) = 1807368 Test 006 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8.v2.sfc_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8.v2.sfc_intel Checking test 007 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,14 +514,14 @@ Checking test 007 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 478.170698 - 0: The maximum resident set size (KB) = 1792156 + 0: The total amount of wall time = 461.766353 + 0: The maximum resident set size (KB) = 1800652 Test 007 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -574,14 +574,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 293.603567 - 0: The maximum resident set size (KB) = 1696248 + 0: The total amount of wall time = 283.621669 + 0: The maximum resident set size (KB) = 1691528 Test 008 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -646,14 +646,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 564.552994 - 0: The maximum resident set size (KB) = 1825052 + 0: The total amount of wall time = 481.883916 + 0: The maximum resident set size (KB) = 1820636 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -706,14 +706,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 305.745305 - 0: The maximum resident set size (KB) = 1715528 + 0: The total amount of wall time = 304.624469 + 0: The maximum resident set size (KB) = 1713348 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -766,14 +766,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 436.673774 - 0: The maximum resident set size (KB) = 2206236 + 0: The total amount of wall time = 448.961949 + 0: The maximum resident set size (KB) = 2203392 Test 011 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -826,14 +826,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 457.465121 - 0: The maximum resident set size (KB) = 1778628 + 0: The total amount of wall time = 470.756992 + 0: The maximum resident set size (KB) = 1789400 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -886,14 +886,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 387.756619 - 0: The maximum resident set size (KB) = 1751480 + 0: The total amount of wall time = 411.808347 + 0: The maximum resident set size (KB) = 1755232 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -958,14 +958,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 487.231050 - 0: The maximum resident set size (KB) = 1791472 + 0: The total amount of wall time = 465.533393 + 0: The maximum resident set size (KB) = 1803176 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_s2sa_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_s2sa_p8_intel Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1016,14 +1016,14 @@ Checking test 015 cpld_s2sa_p8_intel results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 431.756247 - 0: The maximum resident set size (KB) = 1758056 + 0: The total amount of wall time = 428.550608 + 0: The maximum resident set size (KB) = 1768592 Test 015 cpld_s2sa_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1087,14 +1087,14 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.569615 - 0: The maximum resident set size (KB) = 1647968 + 0: The total amount of wall time = 388.072112 + 0: The maximum resident set size (KB) = 1636684 Test 016 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1156,14 +1156,14 @@ Checking test 017 cpld_control_nowave_noaero_p8_intel 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 = 347.086253 - 0: The maximum resident set size (KB) = 1690144 + 0: The total amount of wall time = 367.239966 + 0: The maximum resident set size (KB) = 1682884 Test 017 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_p8_intel Checking test 018 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 018 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 637.913018 - 0: The maximum resident set size (KB) = 1818084 + 0: The total amount of wall time = 639.767942 + 0: The maximum resident set size (KB) = 1818484 Test 018 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_noaero_p8_intel Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1275,14 +1275,14 @@ Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 423.784444 - 0: The maximum resident set size (KB) = 1653324 + 0: The total amount of wall time = 432.569234 + 0: The maximum resident set size (KB) = 1652628 Test 019 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 020 cpld_control_noaero_p8_agrid_intel 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 = 362.460804 - 0: The maximum resident set size (KB) = 1688728 + 0: The total amount of wall time = 352.667681 + 0: The maximum resident set size (KB) = 1697232 Test 020 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1401,14 +1401,14 @@ Checking test 021 cpld_control_c48_intel 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 = 769.214714 - 0: The maximum resident set size (KB) = 2781404 + 0: The total amount of wall time = 769.192221 + 0: The maximum resident set size (KB) = 2778724 Test 021 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1473,14 +1473,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 423.335587 - 0: The maximum resident set size (KB) = 1816108 + 0: The total amount of wall time = 512.516485 + 0: The maximum resident set size (KB) = 1815400 Test 022 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_control_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1544,14 +1544,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1246.127718 - 0: The maximum resident set size (KB) = 1665064 + 0: The total amount of wall time = 1252.772762 + 0: The maximum resident set size (KB) = 1666960 Test 023 cpld_control_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_restart_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1603,14 +1603,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 617.156240 - 0: The maximum resident set size (KB) = 1029984 + 0: The total amount of wall time = 627.079437 + 0: The maximum resident set size (KB) = 1027224 Test 024 cpld_restart_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_mpi_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1674,14 +1674,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1346.369940 - 0: The maximum resident set size (KB) = 1652932 + 0: The total amount of wall time = 1502.863638 + 0: The maximum resident set size (KB) = 1635456 Test 025 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/cpld_debug_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1733,14 +1733,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1911.438958 - 0: The maximum resident set size (KB) = 1669388 + 0: The total amount of wall time = 1938.562927 + 0: The maximum resident set size (KB) = 1673760 Test 026 cpld_debug_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,14 +1751,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 286.222758 - 0: The maximum resident set size (KB) = 642372 + 0: The total amount of wall time = 294.059572 + 0: The maximum resident set size (KB) = 646344 Test 027 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 187.681016 - 0: The maximum resident set size (KB) = 589304 + 0: The total amount of wall time = 217.984223 + 0: The maximum resident set size (KB) = 594980 Test 028 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1800,21 +1800,21 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.384104 - 0: The maximum resident set size (KB) = 599528 + 0: The total amount of wall time = 227.675308 + 0: The maximum resident set size (KB) = 592904 Test 029 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1825,14 +1825,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 209.873735 - 0: The maximum resident set size (KB) = 597932 + 0: The total amount of wall time = 215.090885 + 0: The maximum resident set size (KB) = 596860 Test 030 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 214.792128 - 0: The maximum resident set size (KB) = 591220 + 0: The total amount of wall time = 216.803775 + 0: The maximum resident set size (KB) = 599764 Test 031 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1889,14 +1889,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 606.579441 -0: The maximum resident set size (KB) = 842612 +0: The total amount of wall time = 602.373429 +0: The maximum resident set size (KB) = 849348 Test 032 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c48.v2.sfc_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48.v2.sfc_intel Checking test 033 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1935,14 +1935,14 @@ Checking test 033 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 606.975364 -0: The maximum resident set size (KB) = 844904 +0: The total amount of wall time = 605.497812 +0: The maximum resident set size (KB) = 846408 Test 033 control_c48.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c192_intel Checking test 034 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1953,14 +1953,14 @@ Checking test 034 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 752.567605 - 0: The maximum resident set size (KB) = 727536 + 0: The total amount of wall time = 765.277079 + 0: The maximum resident set size (KB) = 724512 Test 034 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384_intel Checking test 035 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1971,14 +1971,14 @@ Checking test 035 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1019.889235 - 0: The maximum resident set size (KB) = 891060 + 0: The total amount of wall time = 1022.072042 + 0: The maximum resident set size (KB) = 900384 Test 035 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384gdas_intel Checking test 036 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1990,45 +1990,45 @@ Checking test 036 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 874.560142 - 0: The maximum resident set size (KB) = 1018424 + 0: The total amount of wall time = 929.851752 + 0: The maximum resident set size (KB) = 1022636 Test 036 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_intel Checking test 037 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2039,28 +2039,28 @@ Checking test 037 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 125.015567 - 0: The maximum resident set size (KB) = 601880 + 0: The total amount of wall time = 139.297600 + 0: The maximum resident set size (KB) = 598852 Test 037 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_restart_intel Checking test 038 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 69.934029 - 0: The maximum resident set size (KB) = 428924 + 0: The total amount of wall time = 76.713317 + 0: The maximum resident set size (KB) = 431932 Test 038 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_intel Checking test 039 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2071,14 +2071,14 @@ Checking test 039 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.805499 - 0: The maximum resident set size (KB) = 596772 + 0: The total amount of wall time = 134.387228 + 0: The maximum resident set size (KB) = 597496 Test 039 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr4_intel Checking test 040 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2093,14 +2093,14 @@ Checking test 040 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 213.949351 - 0: The maximum resident set size (KB) = 593408 + 0: The total amount of wall time = 209.365755 + 0: The maximum resident set size (KB) = 590860 Test 040 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr5_intel Checking test 041 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2115,14 +2115,14 @@ Checking test 041 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.976749 - 0: The maximum resident set size (KB) = 596468 + 0: The total amount of wall time = 209.250823 + 0: The maximum resident set size (KB) = 595660 Test 041 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_intel Checking test 042 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2169,14 +2169,14 @@ Checking test 042 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.259030 - 0: The maximum resident set size (KB) = 1558272 + 0: The total amount of wall time = 242.335049 + 0: The maximum resident set size (KB) = 1570384 Test 042 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8.v2.sfc_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8.v2.sfc_intel Checking test 043 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2223,14 +2223,14 @@ Checking test 043 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.546037 - 0: The maximum resident set size (KB) = 1565240 + 0: The total amount of wall time = 240.935650 + 0: The maximum resident set size (KB) = 1569536 Test 043 control_p8.v2.sfc_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_ugwpv1_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_ugwpv1_intel Checking test 044 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2277,14 +2277,14 @@ Checking test 044 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.330175 - 0: The maximum resident set size (KB) = 1575000 + 0: The total amount of wall time = 244.369269 + 0: The maximum resident set size (KB) = 1570384 Test 044 control_p8_ugwpv1_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_intel Checking test 045 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2323,14 +2323,14 @@ Checking test 045 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 124.103869 - 0: The maximum resident set size (KB) = 810300 + 0: The total amount of wall time = 123.232688 + 0: The maximum resident set size (KB) = 813224 Test 045 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_noqr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_noqr_p8_intel Checking test 046 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2377,14 +2377,14 @@ Checking test 046 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 223.966687 - 0: The maximum resident set size (KB) = 1549348 + 0: The total amount of wall time = 235.400317 + 0: The maximum resident set size (KB) = 1545972 Test 046 control_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_noqr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_noqr_p8_intel Checking test 047 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2423,14 +2423,14 @@ Checking test 047 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 120.227079 - 0: The maximum resident set size (KB) = 835180 + 0: The total amount of wall time = 115.787462 + 0: The maximum resident set size (KB) = 836744 Test 047 control_restart_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_decomp_p8_intel Checking test 048 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2473,14 +2473,14 @@ Checking test 048 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 237.362702 - 0: The maximum resident set size (KB) = 1548184 + 0: The total amount of wall time = 250.225493 + 0: The maximum resident set size (KB) = 1564548 Test 048 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_2threads_p8_intel Checking test 049 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2523,14 +2523,14 @@ Checking test 049 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 223.751944 - 0: The maximum resident set size (KB) = 1645176 + 0: The total amount of wall time = 227.797386 + 0: The maximum resident set size (KB) = 1663432 Test 049 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_lndp_intel Checking test 050 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2549,14 +2549,14 @@ Checking test 050 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 417.231482 - 0: The maximum resident set size (KB) = 1560648 + 0: The total amount of wall time = 439.092017 + 0: The maximum resident set size (KB) = 1568156 Test 050 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_rrtmgp_intel Checking test 051 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2603,14 +2603,14 @@ Checking test 051 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 298.422724 - 0: The maximum resident set size (KB) = 1635200 + 0: The total amount of wall time = 322.024555 + 0: The maximum resident set size (KB) = 1628036 Test 051 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_mynn_intel Checking test 052 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2657,14 +2657,14 @@ Checking test 052 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.568739 - 0: The maximum resident set size (KB) = 1580556 + 0: The total amount of wall time = 242.210664 + 0: The maximum resident set size (KB) = 1577980 Test 052 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/merra2_thompson_intel Checking test 053 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2711,14 +2711,14 @@ Checking test 053 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 267.610727 - 0: The maximum resident set size (KB) = 1585996 + 0: The total amount of wall time = 286.232530 + 0: The maximum resident set size (KB) = 1581064 Test 053 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_intel Checking test 054 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2729,28 +2729,28 @@ Checking test 054 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 430.572297 - 0: The maximum resident set size (KB) = 758916 + 0: The total amount of wall time = 465.059233 + 0: The maximum resident set size (KB) = 754924 Test 054 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_restart_intel Checking test 055 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 219.037545 - 0: The maximum resident set size (KB) = 935416 + 0: The total amount of wall time = 232.631079 + 0: The maximum resident set size (KB) = 924908 Test 055 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_decomp_intel Checking test 056 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2761,14 +2761,14 @@ Checking test 056 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 455.034196 - 0: The maximum resident set size (KB) = 748772 + 0: The total amount of wall time = 480.682582 + 0: The maximum resident set size (KB) = 750780 Test 056 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2threads_intel Checking test 057 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2779,28 +2779,28 @@ Checking test 057 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 264.108947 - 0: The maximum resident set size (KB) = 750308 + 0: The total amount of wall time = 300.688659 + 0: The maximum resident set size (KB) = 747208 Test 057 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_netcdf_parallel_intel Checking test 058 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 416.634061 - 0: The maximum resident set size (KB) = 752540 + 0: The total amount of wall time = 462.175279 + 0: The maximum resident set size (KB) = 759244 Test 058 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2dwrtdecomp_intel Checking test 059 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2811,14 +2811,14 @@ Checking test 059 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 426.296210 - 0: The maximum resident set size (KB) = 756220 + 0: The total amount of wall time = 460.849069 + 0: The maximum resident set size (KB) = 753572 Test 059 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 595.012302 - 0: The maximum resident set size (KB) = 979152 + 0: The total amount of wall time = 622.549939 + 0: The maximum resident set size (KB) = 982332 Test 060 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2883,14 +2883,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 336.578899 - 0: The maximum resident set size (KB) = 1203488 + 0: The total amount of wall time = 378.262347 + 0: The maximum resident set size (KB) = 1191512 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2937,14 +2937,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 636.071325 - 0: The maximum resident set size (KB) = 971688 + 0: The total amount of wall time = 646.654023 + 0: The maximum resident set size (KB) = 974212 Test 062 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2991,14 +2991,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 579.475226 - 0: The maximum resident set size (KB) = 1061520 + 0: The total amount of wall time = 596.444166 + 0: The maximum resident set size (KB) = 1076012 Test 063 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3037,14 +3037,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 320.380683 - 0: The maximum resident set size (KB) = 983312 + 0: The total amount of wall time = 311.632937 + 0: The maximum resident set size (KB) = 978004 Test 064 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3091,14 +3091,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 607.543247 - 0: The maximum resident set size (KB) = 981920 + 0: The total amount of wall time = 615.912751 + 0: The maximum resident set size (KB) = 975292 Test 065 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3145,14 +3145,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 631.456578 - 0: The maximum resident set size (KB) = 961208 + 0: The total amount of wall time = 655.084638 + 0: The maximum resident set size (KB) = 974472 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3191,14 +3191,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.410399 - 0: The maximum resident set size (KB) = 990640 + 0: The total amount of wall time = 459.124533 + 0: The maximum resident set size (KB) = 984396 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3245,14 +3245,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 307.642296 - 0: The maximum resident set size (KB) = 974528 + 0: The total amount of wall time = 306.594831 + 0: The maximum resident set size (KB) = 971332 Test 068 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3299,14 +3299,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.398241 - 0: The maximum resident set size (KB) = 965840 + 0: The total amount of wall time = 312.725531 + 0: The maximum resident set size (KB) = 969396 Test 069 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3353,28 +3353,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.476061 - 0: The maximum resident set size (KB) = 1051404 + 0: The total amount of wall time = 280.229414 + 0: The maximum resident set size (KB) = 1038324 Test 070 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 163.094490 - 0: The maximum resident set size (KB) = 912224 + 0: The total amount of wall time = 162.782106 + 0: The maximum resident set size (KB) = 903328 Test 071 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3421,14 +3421,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 601.257205 - 0: The maximum resident set size (KB) = 969496 + 0: The total amount of wall time = 592.940855 + 0: The maximum resident set size (KB) = 972816 Test 072 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3443,14 +3443,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 760.476294 - 0: The maximum resident set size (KB) = 1927008 + 0: The total amount of wall time = 736.322287 + 0: The maximum resident set size (KB) = 1930496 Test 073 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3465,14 +3465,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 732.994073 - 0: The maximum resident set size (KB) = 1924848 + 0: The total amount of wall time = 727.459835 + 0: The maximum resident set size (KB) = 1926020 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3483,14 +3483,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 476.475224 - 0: The maximum resident set size (KB) = 683096 + 0: The total amount of wall time = 472.259244 + 0: The maximum resident set size (KB) = 686476 Test 075 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3501,14 +3501,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 463.147967 - 0: The maximum resident set size (KB) = 682252 + 0: The total amount of wall time = 473.776226 + 0: The maximum resident set size (KB) = 689928 Test 076 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3519,26 +3519,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 264.195431 - 0: The maximum resident set size (KB) = 653372 + 0: The total amount of wall time = 267.668097 + 0: The maximum resident set size (KB) = 651156 Test 077 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 159.515892 - 0: The maximum resident set size (KB) = 488696 + 0: The total amount of wall time = 182.392103 + 0: The maximum resident set size (KB) = 495612 Test 078 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3585,14 +3585,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.100612 - 0: The maximum resident set size (KB) = 1568516 + 0: The total amount of wall time = 203.712492 + 0: The maximum resident set size (KB) = 1565176 Test 079 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3603,14 +3603,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 388.027608 - 0: The maximum resident set size (KB) = 755708 + 0: The total amount of wall time = 381.544236 + 0: The maximum resident set size (KB) = 751508 Test 080 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3637,364 +3637,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 197.949405 - 0: The maximum resident set size (KB) = 748288 + 0: The total amount of wall time = 195.382809 + 0: The maximum resident set size (KB) = 755236 Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.934017 - 0: The maximum resident set size (KB) = 749784 + 0: The total amount of wall time = 193.667470 + 0: The maximum resident set size (KB) = 751360 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel 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.788547 - 0: The maximum resident set size (KB) = 755992 + 0: The total amount of wall time = 213.827979 + 0: The maximum resident set size (KB) = 757576 Test 083 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel 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.031486 - 0: The maximum resident set size (KB) = 752912 + 0: The total amount of wall time = 195.171345 + 0: The maximum resident set size (KB) = 754920 Test 084 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.862940 - 0: The maximum resident set size (KB) = 802476 + 0: The total amount of wall time = 306.173514 + 0: The maximum resident set size (KB) = 805012 Test 085 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.893166 - 0: The maximum resident set size (KB) = 804564 + 0: The total amount of wall time = 299.189282 + 0: The maximum resident set size (KB) = 799672 Test 086 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_debug_intel Checking test 087 control_ras_debug_intel 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.756996 - 0: The maximum resident set size (KB) = 764108 + 0: The total amount of wall time = 196.074184 + 0: The maximum resident set size (KB) = 765948 Test 087 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_diag_debug_intel Checking test 088 control_diag_debug_intel 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.879806 - 0: The maximum resident set size (KB) = 816552 + 0: The total amount of wall time = 201.393334 + 0: The maximum resident set size (KB) = 811344 Test 088 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_debug_p8_intel Checking test 089 control_debug_p8_intel 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.684691 - 0: The maximum resident set size (KB) = 1578496 + 0: The total amount of wall time = 209.134500 + 0: The maximum resident set size (KB) = 1580264 Test 089 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1294.906142 - 0: The maximum resident set size (KB) = 764884 + 0: The total amount of wall time = 1294.571150 + 0: The maximum resident set size (KB) = 767456 Test 090 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.037117 - 0: The maximum resident set size (KB) = 1142484 + 0: The total amount of wall time = 352.739697 + 0: The maximum resident set size (KB) = 1143984 Test 091 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.948917 - 0: The maximum resident set size (KB) = 1126728 + 0: The total amount of wall time = 351.954139 + 0: The maximum resident set size (KB) = 1129848 Test 092 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_gf_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.088782 - 0: The maximum resident set size (KB) = 1138236 + 0: The total amount of wall time = 356.503727 + 0: The maximum resident set size (KB) = 1143808 Test 093 hrrr_gf_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_c3_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel 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.937057 - 0: The maximum resident set size (KB) = 1146536 + 0: The total amount of wall time = 365.500152 + 0: The maximum resident set size (KB) = 1132220 Test 094 hrrr_c3_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 373.384664 - 0: The maximum resident set size (KB) = 1133048 + 0: The total amount of wall time = 361.455609 + 0: The maximum resident set size (KB) = 1143240 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 375.569447 - 0: The maximum resident set size (KB) = 1227640 + 0: The total amount of wall time = 370.133226 + 0: The maximum resident set size (KB) = 1225384 Test 096 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel 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.837048 - 0: The maximum resident set size (KB) = 1140416 + 0: The total amount of wall time = 367.080624 + 0: The maximum resident set size (KB) = 1132336 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel 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.619346 - 0: The maximum resident set size (KB) = 1154948 + 0: The total amount of wall time = 359.902877 + 0: The maximum resident set size (KB) = 1145848 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.167227 - 0: The maximum resident set size (KB) = 1139720 + 0: The total amount of wall time = 355.104906 + 0: The maximum resident set size (KB) = 1142676 Test 099 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.477841 - 0: The maximum resident set size (KB) = 1149552 + 0: The total amount of wall time = 358.139613 + 0: The maximum resident set size (KB) = 1147216 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel 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.444512 - 0: The maximum resident set size (KB) = 1138908 + 0: The total amount of wall time = 349.353756 + 0: The maximum resident set size (KB) = 1131740 Test 101 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel 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.048524 - 0: The maximum resident set size (KB) = 1140032 + 0: The total amount of wall time = 354.419121 + 0: The maximum resident set size (KB) = 1146220 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 584.564107 - 0: The maximum resident set size (KB) = 1145208 + 0: The total amount of wall time = 585.497395 + 0: The maximum resident set size (KB) = 1131680 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 354.524565 - 0: The maximum resident set size (KB) = 1134284 + 0: The total amount of wall time = 346.524844 + 0: The maximum resident set size (KB) = 1139112 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel 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.702399 - 0: The maximum resident set size (KB) = 1143736 + 0: The total amount of wall time = 446.655388 + 0: The maximum resident set size (KB) = 1143224 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.257679 - 0: The maximum resident set size (KB) = 1139584 + 0: The total amount of wall time = 355.722393 + 0: The maximum resident set size (KB) = 1148008 Test 106 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_c96_no_nest_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4035,26 +4035,26 @@ Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 621.988842 - 0: The maximum resident set size (KB) = 1144000 + 0: The total amount of wall time = 623.542340 + 0: The maximum resident set size (KB) = 1149448 Test 107 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 368.732194 - 0: The maximum resident set size (KB) = 431620 + 0: The total amount of wall time = 359.428519 + 0: The maximum resident set size (KB) = 433748 Test 108 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4065,14 +4065,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 307.325745 - 0: The maximum resident set size (KB) = 1080112 + 0: The total amount of wall time = 343.766126 + 0: The maximum resident set size (KB) = 1079348 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4119,14 +4119,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.646222 - 0: The maximum resident set size (KB) = 897736 + 0: The total amount of wall time = 533.275621 + 0: The maximum resident set size (KB) = 897372 Test 110 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4173,14 +4173,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 254.459983 - 0: The maximum resident set size (KB) = 869524 + 0: The total amount of wall time = 290.676863 + 0: The maximum resident set size (KB) = 864312 Test 111 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4227,14 +4227,14 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.654727 - 0: The maximum resident set size (KB) = 935216 + 0: The total amount of wall time = 516.032694 + 0: The maximum resident set size (KB) = 943856 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4281,14 +4281,14 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.951425 - 0: The maximum resident set size (KB) = 900808 + 0: The total amount of wall time = 286.869536 + 0: The maximum resident set size (KB) = 893000 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4335,14 +4335,14 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.511755 - 0: The maximum resident set size (KB) = 858584 + 0: The total amount of wall time = 313.685081 + 0: The maximum resident set size (KB) = 852292 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4381,28 +4381,28 @@ Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.795143 - 0: The maximum resident set size (KB) = 895716 + 0: The total amount of wall time = 371.283402 + 0: The maximum resident set size (KB) = 890876 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_dyn32_phy32_intel Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 135.689696 - 0: The maximum resident set size (KB) = 846412 + 0: The total amount of wall time = 137.386903 + 0: The maximum resident set size (KB) = 842772 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_control_intel Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4418,40 +4418,40 @@ Checking test 117 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 166.741815 - 0: The maximum resident set size (KB) = 1094164 + 0: The total amount of wall time = 160.536175 + 0: The maximum resident set size (KB) = 1094780 Test 117 conus13km_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_2threads_intel Checking test 118 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 71.137121 - 0: The maximum resident set size (KB) = 1045464 + 0: The total amount of wall time = 72.572251 + 0: The maximum resident set size (KB) = 1045064 Test 118 conus13km_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_restart_mismatch_intel Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 90.363616 - 0: The maximum resident set size (KB) = 1009008 + 0: The total amount of wall time = 90.220163 + 0: The maximum resident set size (KB) = 1015708 Test 119 conus13km_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_intel Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4498,42 +4498,42 @@ Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 337.286470 - 0: The maximum resident set size (KB) = 894768 + 0: The total amount of wall time = 332.349144 + 0: The maximum resident set size (KB) = 894392 Test 120 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_dyn32_phy32_intel Checking test 121 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 347.118740 - 0: The maximum resident set size (KB) = 1024996 + 0: The total amount of wall time = 348.227973 + 0: The maximum resident set size (KB) = 1014940 Test 121 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_dyn32_phy32_intel Checking test 122 hrrr_control_debug_dyn32_phy32_intel 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.435940 - 0: The maximum resident set size (KB) = 1015840 + 0: The total amount of wall time = 339.975464 + 0: The maximum resident set size (KB) = 1014704 Test 122 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_intel Checking test 123 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4547,14 +4547,14 @@ Checking test 123 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 1087.950847 - 0: The maximum resident set size (KB) = 1129212 + 0: The total amount of wall time = 1078.617766 + 0: The maximum resident set size (KB) = 1129708 Test 123 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_qr_intel Checking test 124 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4568,97 +4568,85 @@ Checking test 124 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1097.144274 - 0: The maximum resident set size (KB) = 844612 + 0: The total amount of wall time = 1086.949583 + 0: The maximum resident set size (KB) = 844356 Test 124 conus13km_debug_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_2threads_intel Checking test 125 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 625.508257 - 0: The maximum resident set size (KB) = 1082896 + 0: The total amount of wall time = 637.005964 + 0: The maximum resident set size (KB) = 1073244 Test 125 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/conus13km_radar_tten_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_radar_tten_debug_intel Checking test 126 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1090.871099 - 0: The maximum resident set size (KB) = 1189200 + 0: The total amount of wall time = 1080.027581 + 0: The maximum resident set size (KB) = 1191248 Test 126 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.218954 - 0: The maximum resident set size (KB) = 1052784 + 0: The total amount of wall time = 354.388561 + 0: The maximum resident set size (KB) = 1059404 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 440.317584 - 0: The maximum resident set size (KB) = 708940 + 0: The total amount of wall time = 476.717845 + 0: The maximum resident set size (KB) = 707808 Test 128 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 426.575343 - 0: The maximum resident set size (KB) = 1076816 + 0: The total amount of wall time = 425.227955 + 0: The maximum resident set size (KB) = 1087020 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 130 hafs_regional_atm_ocn_intel FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel 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 = 554.398133 - 0: The maximum resident set size (KB) = 769104 - -Test 130 hafs_regional_atm_ocn_intel PASS +Test 130 hafs_regional_atm_ocn_intel FAIL -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4667,14 +4655,14 @@ Checking test 131 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 980.919386 - 0: The maximum resident set size (KB) = 806804 + 0: The total amount of wall time = 990.821542 + 0: The maximum resident set size (KB) = 804264 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4685,14 +4673,14 @@ Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1079.750200 - 0: The maximum resident set size (KB) = 817652 + 0: The total amount of wall time = 1079.639482 + 0: The maximum resident set size (KB) = 821332 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/gnv1_nested_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_nested_intel Checking test 133 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4704,8 +4692,8 @@ Checking test 133 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK @@ -4714,39 +4702,39 @@ Checking test 133 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 381.266198 - 0: The maximum resident set size (KB) = 769868 + 0: The total amount of wall time = 410.179977 + 0: The maximum resident set size (KB) = 763276 Test 133 gnv1_nested_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_intel Checking test 134 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4754,14 +4742,14 @@ Checking test 134 hafs_regional_docn_intel 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 = 583.656699 - 0: The maximum resident set size (KB) = 768212 + 0: The total amount of wall time = 574.086147 + 0: The maximum resident set size (KB) = 763520 Test 134 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_oisst_intel Checking test 135 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4769,118 +4757,118 @@ Checking test 135 hafs_regional_docn_oisst_intel 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 = 551.298794 - 0: The maximum resident set size (KB) = 750556 + 0: The total amount of wall time = 561.841074 + 0: The maximum resident set size (KB) = 747004 Test 135 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_intel Checking test 136 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.916667 - 0: The maximum resident set size (KB) = 1037632 + 0: The total amount of wall time = 207.068092 + 0: The maximum resident set size (KB) = 1034420 Test 136 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_restart_cfsr_intel Checking test 137 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 125.908070 - 0: The maximum resident set size (KB) = 1017344 + 0: The total amount of wall time = 121.050281 + 0: The maximum resident set size (KB) = 1007432 Test 137 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_gefs_intel Checking test 138 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.714077 - 0: The maximum resident set size (KB) = 913544 + 0: The total amount of wall time = 204.004465 + 0: The maximum resident set size (KB) = 913884 Test 138 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_iau_gefs_intel Checking test 139 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 204.003941 - 0: The maximum resident set size (KB) = 907476 + 0: The total amount of wall time = 206.478686 + 0: The maximum resident set size (KB) = 914100 Test 139 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_stochy_gefs_intel Checking test 140 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.927272 - 0: The maximum resident set size (KB) = 912740 + 0: The total amount of wall time = 208.415550 + 0: The maximum resident set size (KB) = 914816 Test 140 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_ciceC_cfsr_intel Checking test 141 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.831267 - 0: The maximum resident set size (KB) = 1036912 + 0: The total amount of wall time = 207.675031 + 0: The maximum resident set size (KB) = 1041088 Test 141 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_cfsr_intel Checking test 142 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 208.755974 - 0: The maximum resident set size (KB) = 1038776 + 0: The total amount of wall time = 207.260765 + 0: The maximum resident set size (KB) = 1042384 Test 142 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_gefs_intel Checking test 143 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 201.449011 - 0: The maximum resident set size (KB) = 911748 + 0: The total amount of wall time = 204.051323 + 0: The maximum resident set size (KB) = 914296 Test 143 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_cfsr_intel Checking test 144 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4889,14 +4877,14 @@ Checking test 144 datm_cdeps_mx025_cfsr_intel 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 = 479.046727 - 0: The maximum resident set size (KB) = 878704 + 0: The total amount of wall time = 470.466933 + 0: The maximum resident set size (KB) = 872692 Test 144 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_gefs_intel Checking test 145 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4905,77 +4893,77 @@ Checking test 145 datm_cdeps_mx025_gefs_intel 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 = 467.773115 - 0: The maximum resident set size (KB) = 833532 + 0: The total amount of wall time = 469.482267 + 0: The maximum resident set size (KB) = 831800 Test 145 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_multiple_files_cfsr_intel Checking test 146 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.298024 - 0: The maximum resident set size (KB) = 1039060 + 0: The total amount of wall time = 205.678663 + 0: The maximum resident set size (KB) = 1041052 Test 146 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_3072x1536_cfsr_intel Checking test 147 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 288.865062 - 0: The maximum resident set size (KB) = 2393528 + 0: The total amount of wall time = 306.289101 + 0: The maximum resident set size (KB) = 2386896 Test 147 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_gfs_intel Checking test 148 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 326.031952 - 0: The maximum resident set size (KB) = 2400924 + 0: The total amount of wall time = 293.490128 + 0: The maximum resident set size (KB) = 2340200 Test 148 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_debug_cfsr_intel Checking test 149 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 462.707412 - 0: The maximum resident set size (KB) = 983568 + 0: The total amount of wall time = 459.473457 + 0: The maximum resident set size (KB) = 983740 Test 149 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_faster_intel Checking test 150 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.142029 - 0: The maximum resident set size (KB) = 1034996 + 0: The total amount of wall time = 238.194888 + 0: The maximum resident set size (KB) = 1036176 Test 150 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_gswp3_intel Checking test 151 datm_cdeps_lnd_gswp3_intel 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 @@ -4984,14 +4972,14 @@ Checking test 151 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 83.281912 - 0: The maximum resident set size (KB) = 229072 + 0: The total amount of wall time = 108.031724 + 0: The maximum resident set size (KB) = 228376 Test 151 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_intel Checking test 152 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5000,14 +4988,14 @@ Checking test 152 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 78.268524 - 0: The maximum resident set size (KB) = 248892 + 0: The total amount of wall time = 91.316552 + 0: The maximum resident set size (KB) = 248364 Test 152 datm_cdeps_lnd_era5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/datm_cdeps_lnd_era5_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_rst_intel Checking test 153 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5016,14 +5004,14 @@ Checking test 153 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 47.332999 - 0: The maximum resident set size (KB) = 244912 + 0: The total amount of wall time = 39.165795 + 0: The maximum resident set size (KB) = 245560 Test 153 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_sbs_intel Checking test 154 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5112,14 +5100,14 @@ Checking test 154 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 852.187129 - 0: The maximum resident set size (KB) = 1589464 + 0: The total amount of wall time = 692.889115 + 0: The maximum resident set size (KB) = 1594420 Test 154 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_p8_atmlnd_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_intel Checking test 155 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5208,14 +5196,14 @@ Checking test 155 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 789.772449 - 0: The maximum resident set size (KB) = 1589472 + 0: The total amount of wall time = 683.986966 + 0: The maximum resident set size (KB) = 1582664 Test 155 control_p8_atmlnd_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_restart_p8_atmlnd_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_atmlnd_intel Checking test 156 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5236,14 +5224,14 @@ Checking test 156 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 331.709767 - 0: The maximum resident set size (KB) = 857560 + 0: The total amount of wall time = 343.651554 + 0: The maximum resident set size (KB) = 853348 Test 156 control_restart_p8_atmlnd_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmwav_control_noaero_p8_intel Checking test 157 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5286,14 +5274,14 @@ Checking test 157 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 126.989919 - 0: The maximum resident set size (KB) = 1591356 + 0: The total amount of wall time = 127.277317 + 0: The maximum resident set size (KB) = 1590272 Test 157 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_atmwav_intel Checking test 158 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5337,14 +5325,14 @@ Checking test 158 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 125.291813 - 0: The maximum resident set size (KB) = 601844 + 0: The total amount of wall time = 152.366863 + 0: The maximum resident set size (KB) = 603188 Test 158 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_intel Checking test 159 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5388,14 +5376,14 @@ Checking test 159 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 332.964639 - 0: The maximum resident set size (KB) = 1687164 + 0: The total amount of wall time = 297.366017 + 0: The maximum resident set size (KB) = 1685880 Test 159 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_intel Checking test 160 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5439,14 +5427,14 @@ Checking test 160 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 404.525502 - 0: The maximum resident set size (KB) = 1698704 + 0: The total amount of wall time = 379.443106 + 0: The maximum resident set size (KB) = 1712780 -Test 160 atmaero_control_p8_rad_intel PASS +Test 160 atmaero_control_p8_rad_intel PASS Tries: 2 -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_265045/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_micro_intel Checking test 161 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5490,12 +5478,52 @@ Checking test 161 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 424.769735 - 0: The maximum resident set size (KB) = 1722428 + 0: The total amount of wall time = 388.582436 + 0: The maximum resident set size (KB) = 1725884 Test 161 atmaero_control_p8_rad_micro_intel PASS +FAILED TESTS: +hafs_regional_atm_ocn_intel 130 failed in run_test + +REGRESSION TEST FAILED +Wed Feb 14 02:08:12 UTC 2024 +Elapsed time: 04h:01m:43s. Have a nice day! +Wed Feb 14 02:14:51 UTC 2024 +Start Regression test + +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafsw_intel elapsed time 1956 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_302887/hafs_regional_atm_ocn_intel +Checking test 001 hafs_regional_atm_ocn_intel 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 = 552.777055 + 0: The maximum resident set size (KB) = 764200 + +Test 001 hafs_regional_atm_ocn_intel PASS + REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 01:18:49 UTC 2024 -Elapsed time: 03h:42m:45s. Have a nice day! +Wed Feb 14 03:03:11 UTC 2024 +Elapsed time: 00h:48m:22s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index e0179741c8..e6d4990e53 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,62 +1,62 @@ -Tue Feb 13 07:21:08 CST 2024 +Tue Feb 13 19:40:41 CST 2024 Start Regression test -Testing UFSWM Hash: ae393757eead6baae8844c526f495d20ef8d8969 +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (heads/develop) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 722 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 207 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 655 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 314 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 912 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 724 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 805 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 755 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 743 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 436 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 424 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 205 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 787 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 237 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 415 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile datm_cdeps_land_intel elapsed time 67 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 770 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 898 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 309 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 816 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 841 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 825 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 690 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 828 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 835 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 977 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 358 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1201 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 335 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1230 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 995 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 328 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 289 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1331 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 660 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_mixedmode_intel +Compile hafs_all_intel elapsed time 759 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 757 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 250 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 795 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 941 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 820 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 744 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 968 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 319 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1150 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1176 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 937 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 300 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 326 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1074 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 320.137770 - 0: The maximum resident set size (KB) = 3183292 + 0: The total amount of wall time = 301.535495 + 0: The maximum resident set size (KB) = 3179084 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 976.818741 - 0: The maximum resident set size (KB) = 1742672 + 0: The total amount of wall time = 974.980836 + 0: The maximum resident set size (KB) = 1741024 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1040.753397 - 0: The maximum resident set size (KB) = 2026528 + 0: The total amount of wall time = 1054.768539 + 0: The maximum resident set size (KB) = 2017916 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 482.902179 - 0: The maximum resident set size (KB) = 1108260 + 0: The total amount of wall time = 471.097118 + 0: The maximum resident set size (KB) = 1108868 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +376,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1164.770831 - 0: The maximum resident set size (KB) = 1657560 + 0: The total amount of wall time = 1153.528751 + 0: The maximum resident set size (KB) = 1643500 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1374.497143 - 0: The maximum resident set size (KB) = 1690716 + 0: The total amount of wall time = 1380.424891 + 0: The maximum resident set size (KB) = 1681692 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -507,14 +507,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.202045 - 0: The maximum resident set size (KB) = 3209212 + 0: The total amount of wall time = 326.555609 + 0: The maximum resident set size (KB) = 3209740 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -579,14 +579,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.271358 - 0: The maximum resident set size (KB) = 3211404 + 0: The total amount of wall time = 324.692990 + 0: The maximum resident set size (KB) = 3215900 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -639,14 +639,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 191.803666 - 0: The maximum resident set size (KB) = 3254740 + 0: The total amount of wall time = 191.987744 + 0: The maximum resident set size (KB) = 3252180 Test 009 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -711,14 +711,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 340.472232 - 0: The maximum resident set size (KB) = 3242128 + 0: The total amount of wall time = 326.013376 + 0: The maximum resident set size (KB) = 3239592 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -771,14 +771,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 192.945679 - 0: The maximum resident set size (KB) = 3273608 + 0: The total amount of wall time = 200.568233 + 0: The maximum resident set size (KB) = 3269664 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -831,14 +831,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 372.238535 - 0: The maximum resident set size (KB) = 3556092 + 0: The total amount of wall time = 355.299746 + 0: The maximum resident set size (KB) = 3554336 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -891,14 +891,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.537062 - 0: The maximum resident set size (KB) = 3205596 + 0: The total amount of wall time = 328.622754 + 0: The maximum resident set size (KB) = 3207056 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -951,14 +951,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 296.900474 - 0: The maximum resident set size (KB) = 3068824 + 0: The total amount of wall time = 269.503791 + 0: The maximum resident set size (KB) = 3068272 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1023,14 +1023,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.226686 - 0: The maximum resident set size (KB) = 3211628 + 0: The total amount of wall time = 325.232715 + 0: The maximum resident set size (KB) = 3213624 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1083,14 +1083,14 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 616.960230 - 0: The maximum resident set size (KB) = 3337716 + 0: The total amount of wall time = 595.455407 + 0: The maximum resident set size (KB) = 3259364 Test 016 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1143,14 +1143,14 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 365.798148 - 0: The maximum resident set size (KB) = 3621536 + 0: The total amount of wall time = 384.019087 + 0: The maximum resident set size (KB) = 3546764 Test 017 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1198,14 +1198,14 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 655.426186 - 0: The maximum resident set size (KB) = 4126352 + 0: The total amount of wall time = 638.338330 + 0: The maximum resident set size (KB) = 4123728 Test 018 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1253,14 +1253,14 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.394888 - 0: The maximum resident set size (KB) = 4374104 + 0: The total amount of wall time = 441.359999 + 0: The maximum resident set size (KB) = 4368600 Test 019 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1311,14 +1311,14 @@ Checking test 020 cpld_s2sa_p8_intel 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 = 318.934259 - 0: The maximum resident set size (KB) = 3174240 + 0: The total amount of wall time = 304.805018 + 0: The maximum resident set size (KB) = 3175164 Test 020 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1382,14 +1382,14 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 273.590493 - 0: The maximum resident set size (KB) = 1733960 + 0: The total amount of wall time = 256.703064 + 0: The maximum resident set size (KB) = 1724568 Test 021 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 022 cpld_control_nowave_noaero_p8_intel 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 = 265.003925 - 0: The maximum resident set size (KB) = 1782116 + 0: The total amount of wall time = 247.090018 + 0: The maximum resident set size (KB) = 1782448 Test 022 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1511,14 +1511,14 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 517.927542 - 0: The maximum resident set size (KB) = 3245532 + 0: The total amount of wall time = 502.349347 + 0: The maximum resident set size (KB) = 3248244 Test 023 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1570,14 +1570,14 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 352.849740 - 0: The maximum resident set size (KB) = 1753388 + 0: The total amount of wall time = 344.755866 + 0: The maximum resident set size (KB) = 1755776 Test 024 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1639,14 +1639,14 @@ Checking test 025 cpld_control_noaero_p8_agrid_intel 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 = 266.353843 - 0: The maximum resident set size (KB) = 1780576 + 0: The total amount of wall time = 245.304519 + 0: The maximum resident set size (KB) = 1780988 Test 025 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1696,14 +1696,14 @@ Checking test 026 cpld_control_c48_intel 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 = 485.509805 - 0: The maximum resident set size (KB) = 2833696 + 0: The total amount of wall time = 473.527220 + 0: The maximum resident set size (KB) = 2825808 Test 026 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1768,14 +1768,14 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 315.741561 - 0: The maximum resident set size (KB) = 3210468 + 0: The total amount of wall time = 333.172205 + 0: The maximum resident set size (KB) = 3207816 Test 027 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1839,14 +1839,14 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 981.770244 - 0: The maximum resident set size (KB) = 1771984 + 0: The total amount of wall time = 977.209337 + 0: The maximum resident set size (KB) = 1779632 Test 028 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1898,14 +1898,14 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 503.765702 - 0: The maximum resident set size (KB) = 1164720 + 0: The total amount of wall time = 478.275910 + 0: The maximum resident set size (KB) = 1169596 Test 029 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1969,14 +1969,14 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1094.704687 - 0: The maximum resident set size (KB) = 1679976 + 0: The total amount of wall time = 1101.840624 + 0: The maximum resident set size (KB) = 1667832 Test 030 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -2028,14 +2028,14 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1489.069965 - 0: The maximum resident set size (KB) = 1720612 + 0: The total amount of wall time = 1484.231567 + 0: The maximum resident set size (KB) = 1707192 Test 031 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_flake_intel Checking test 032 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2046,14 +2046,14 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.006941 - 0: The maximum resident set size (KB) = 703636 + 0: The total amount of wall time = 205.290697 + 0: The maximum resident set size (KB) = 703408 Test 032 control_flake_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2080,14 +2080,14 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 141.920380 - 0: The maximum resident set size (KB) = 647620 + 0: The total amount of wall time = 138.789268 + 0: The maximum resident set size (KB) = 652048 Test 033 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2102,14 +2102,14 @@ Checking test 034 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.580511 - 0: The maximum resident set size (KB) = 650364 + 0: The total amount of wall time = 150.138908 + 0: The maximum resident set size (KB) = 654884 Test 034 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_latlon_intel Checking test 035 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2120,14 +2120,14 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 143.877974 - 0: The maximum resident set size (KB) = 648308 + 0: The total amount of wall time = 145.746665 + 0: The maximum resident set size (KB) = 598520 Test 035 control_latlon_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2138,14 +2138,14 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.092259 - 0: The maximum resident set size (KB) = 648664 + 0: The total amount of wall time = 143.687698 + 0: The maximum resident set size (KB) = 651128 Test 036 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48_intel Checking test 037 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2184,14 +2184,14 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 353.688719 -0: The maximum resident set size (KB) = 876488 +0: The total amount of wall time = 348.566627 +0: The maximum resident set size (KB) = 862692 Test 037 control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c48.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48.v2.sfc_intel Checking test 038 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2230,14 +2230,14 @@ Checking test 038 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 355.015281 -0: The maximum resident set size (KB) = 871244 +0: The total amount of wall time = 351.363973 +0: The maximum resident set size (KB) = 872188 Test 038 control_c48.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c192_intel Checking test 039 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2248,14 +2248,14 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 544.880487 - 0: The maximum resident set size (KB) = 852544 + 0: The total amount of wall time = 536.023905 + 0: The maximum resident set size (KB) = 857416 Test 039 control_c192_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384_intel Checking test 040 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2266,14 +2266,14 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 601.418782 - 0: The maximum resident set size (KB) = 1242232 + 0: The total amount of wall time = 603.759118 + 0: The maximum resident set size (KB) = 1245304 Test 040 control_c384_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2288,17 +2288,17 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK @@ -2316,14 +2316,14 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 542.340370 - 0: The maximum resident set size (KB) = 1354860 + 0: The total amount of wall time = 536.538698 + 0: The maximum resident set size (KB) = 1308248 Test 041 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_intel Checking test 042 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2334,28 +2334,28 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 95.657819 - 0: The maximum resident set size (KB) = 658584 + 0: The total amount of wall time = 236.088814 + 0: The maximum resident set size (KB) = 659164 Test 042 control_stochy_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 52.409910 - 0: The maximum resident set size (KB) = 506568 + 0: The total amount of wall time = 51.087111 + 0: The maximum resident set size (KB) = 499604 Test 043 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_intel Checking test 044 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2366,14 +2366,14 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.197690 - 0: The maximum resident set size (KB) = 649152 + 0: The total amount of wall time = 89.825266 + 0: The maximum resident set size (KB) = 649260 Test 044 control_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr4_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr4_intel Checking test 045 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.944760 - 0: The maximum resident set size (KB) = 653948 + 0: The total amount of wall time = 143.342597 + 0: The maximum resident set size (KB) = 599720 Test 045 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_iovr5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr5_intel Checking test 046 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2410,14 +2410,14 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.120040 - 0: The maximum resident set size (KB) = 654868 + 0: The total amount of wall time = 139.612058 + 0: The maximum resident set size (KB) = 646880 Test 046 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_intel Checking test 047 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2464,14 +2464,14 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.744714 - 0: The maximum resident set size (KB) = 1634244 + 0: The total amount of wall time = 177.132743 + 0: The maximum resident set size (KB) = 1627744 Test 047 control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8.v2.sfc_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8.v2.sfc_intel Checking test 048 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2518,14 +2518,14 @@ Checking test 048 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.258009 - 0: The maximum resident set size (KB) = 1633372 + 0: The total amount of wall time = 176.627299 + 0: The maximum resident set size (KB) = 1628272 Test 048 control_p8.v2.sfc_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_ugwpv1_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2572,14 +2572,14 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.634120 - 0: The maximum resident set size (KB) = 1637332 + 0: The total amount of wall time = 162.648454 + 0: The maximum resident set size (KB) = 1626672 Test 049 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2618,14 +2618,14 @@ Checking test 050 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 93.817179 - 0: The maximum resident set size (KB) = 887880 + 0: The total amount of wall time = 90.237566 + 0: The maximum resident set size (KB) = 888596 Test 050 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_noqr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2672,14 +2672,14 @@ Checking test 051 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.838200 - 0: The maximum resident set size (KB) = 1609924 + 0: The total amount of wall time = 172.399677 + 0: The maximum resident set size (KB) = 1617304 Test 051 control_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_noqr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2718,14 +2718,14 @@ Checking test 052 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 88.086273 - 0: The maximum resident set size (KB) = 930232 + 0: The total amount of wall time = 88.759681 + 0: The maximum resident set size (KB) = 926672 Test 052 control_restart_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2768,14 +2768,14 @@ Checking test 053 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.440079 - 0: The maximum resident set size (KB) = 1613048 + 0: The total amount of wall time = 172.092008 + 0: The maximum resident set size (KB) = 1615132 Test 053 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2818,14 +2818,14 @@ Checking test 054 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.265497 - 0: The maximum resident set size (KB) = 1722552 + 0: The total amount of wall time = 178.386978 + 0: The maximum resident set size (KB) = 1714152 Test 054 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 304.616880 - 0: The maximum resident set size (KB) = 1632628 + 0: The total amount of wall time = 307.189829 + 0: The maximum resident set size (KB) = 1618456 Test 055 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.478061 - 0: The maximum resident set size (KB) = 1691784 + 0: The total amount of wall time = 229.876717 + 0: The maximum resident set size (KB) = 1687228 Test 056 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_mynn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2952,14 +2952,14 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.165263 - 0: The maximum resident set size (KB) = 1636764 + 0: The total amount of wall time = 167.886708 + 0: The maximum resident set size (KB) = 1628684 Test 057 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/merra2_thompson_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.388047 - 0: The maximum resident set size (KB) = 1640672 + 0: The total amount of wall time = 200.169508 + 0: The maximum resident set size (KB) = 1644112 Test 058 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_intel Checking test 059 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3024,28 +3024,28 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 300.787254 - 0: The maximum resident set size (KB) = 856192 + 0: The total amount of wall time = 302.599084 + 0: The maximum resident set size (KB) = 856200 Test 059 regional_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_restart_intel Checking test 060 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 154.257351 - 0: The maximum resident set size (KB) = 1021732 + 0: The total amount of wall time = 160.401540 + 0: The maximum resident set size (KB) = 1023744 Test 060 regional_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_decomp_intel Checking test 061 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3056,14 +3056,14 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 322.155953 - 0: The maximum resident set size (KB) = 846760 + 0: The total amount of wall time = 318.727468 + 0: The maximum resident set size (KB) = 848060 Test 061 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2threads_intel Checking test 062 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3074,14 +3074,14 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 210.109307 - 0: The maximum resident set size (KB) = 843420 + 0: The total amount of wall time = 213.331729 + 0: The maximum resident set size (KB) = 842564 Test 062 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_noquilt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3089,28 +3089,28 @@ Checking test 063 regional_noquilt_intel 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 = 296.505225 - 0: The maximum resident set size (KB) = 1360944 + 0: The total amount of wall time = 294.509183 + 0: The maximum resident set size (KB) = 1364140 Test 063 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 301.588209 - 0: The maximum resident set size (KB) = 856660 + 0: The total amount of wall time = 293.990290 + 0: The maximum resident set size (KB) = 855428 Test 064 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3121,14 +3121,14 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 301.572668 - 0: The maximum resident set size (KB) = 855720 + 0: The total amount of wall time = 296.906280 + 0: The maximum resident set size (KB) = 852100 Test 065 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_wofs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_wofs_intel Checking test 066 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3139,14 +3139,14 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 388.610672 - 0: The maximum resident set size (KB) = 1921536 + 0: The total amount of wall time = 385.584485 + 0: The maximum resident set size (KB) = 1921680 Test 066 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_intel Checking test 067 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3193,14 +3193,14 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 455.002541 - 0: The maximum resident set size (KB) = 1101696 + 0: The total amount of wall time = 454.379619 + 0: The maximum resident set size (KB) = 1109460 Test 067 rap_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3211,14 +3211,14 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 278.679811 - 0: The maximum resident set size (KB) = 1295948 + 0: The total amount of wall time = 275.976213 + 0: The maximum resident set size (KB) = 1303044 Test 068 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_decomp_intel Checking test 069 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3265,14 +3265,14 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.513808 - 0: The maximum resident set size (KB) = 1031808 + 0: The total amount of wall time = 476.816352 + 0: The maximum resident set size (KB) = 1028124 Test 069 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_intel Checking test 070 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3319,14 +3319,14 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.205573 - 0: The maximum resident set size (KB) = 1181644 + 0: The total amount of wall time = 466.628534 + 0: The maximum resident set size (KB) = 1182704 Test 070 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_intel Checking test 071 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3365,14 +3365,14 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.790556 - 0: The maximum resident set size (KB) = 1101304 + 0: The total amount of wall time = 232.608853 + 0: The maximum resident set size (KB) = 1098420 Test 071 rap_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3419,14 +3419,14 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 449.987491 - 0: The maximum resident set size (KB) = 1098676 + 0: The total amount of wall time = 451.386579 + 0: The maximum resident set size (KB) = 1099996 Test 072 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3473,14 +3473,14 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.195657 - 0: The maximum resident set size (KB) = 1035948 + 0: The total amount of wall time = 477.216399 + 0: The maximum resident set size (KB) = 1023840 Test 073 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3519,14 +3519,14 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.521897 - 0: The maximum resident set size (KB) = 1136416 + 0: The total amount of wall time = 340.230630 + 0: The maximum resident set size (KB) = 1135196 Test 074 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_intel Checking test 075 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3573,14 +3573,14 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.874974 - 0: The maximum resident set size (KB) = 1031240 + 0: The total amount of wall time = 228.662743 + 0: The maximum resident set size (KB) = 1039932 Test 075 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3627,14 +3627,14 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.722682 - 0: The maximum resident set size (KB) = 1025744 + 0: The total amount of wall time = 237.099533 + 0: The maximum resident set size (KB) = 1019136 Test 076 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3681,28 +3681,28 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.696297 - 0: The maximum resident set size (KB) = 1108096 + 0: The total amount of wall time = 193.806730 + 0: The maximum resident set size (KB) = 1111304 Test 077 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.963484 - 0: The maximum resident set size (KB) = 1000016 + 0: The total amount of wall time = 120.266180 + 0: The maximum resident set size (KB) = 1000480 Test 078 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3749,14 +3749,14 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 445.826785 - 0: The maximum resident set size (KB) = 1104644 + 0: The total amount of wall time = 444.578004 + 0: The maximum resident set size (KB) = 1090636 Test 079 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3771,14 +3771,14 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 540.880889 - 0: The maximum resident set size (KB) = 1996392 + 0: The total amount of wall time = 539.862203 + 0: The maximum resident set size (KB) = 1995360 Test 080 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3793,14 +3793,14 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.891853 - 0: The maximum resident set size (KB) = 2074640 + 0: The total amount of wall time = 528.734531 + 0: The maximum resident set size (KB) = 2067700 Test 081 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_intel Checking test 082 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3811,14 +3811,14 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.602505 - 0: The maximum resident set size (KB) = 750596 + 0: The total amount of wall time = 348.666453 + 0: The maximum resident set size (KB) = 709872 Test 082 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3829,14 +3829,14 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.345273 - 0: The maximum resident set size (KB) = 749620 + 0: The total amount of wall time = 340.256091 + 0: The maximum resident set size (KB) = 750524 Test 083 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_intel Checking test 084 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3847,26 +3847,26 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.574288 - 0: The maximum resident set size (KB) = 739860 + 0: The total amount of wall time = 190.111149 + 0: The maximum resident set size (KB) = 741976 Test 084 control_ras_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_intel Checking test 085 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.072251 - 0: The maximum resident set size (KB) = 656612 + 0: The total amount of wall time = 117.836898 + 0: The maximum resident set size (KB) = 659492 Test 085 control_wam_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3913,14 +3913,14 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.246167 - 0: The maximum resident set size (KB) = 1632840 + 0: The total amount of wall time = 147.710157 + 0: The maximum resident set size (KB) = 1634152 Test 086 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_control_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3931,14 +3931,14 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.600584 - 0: The maximum resident set size (KB) = 850360 + 0: The total amount of wall time = 269.950099 + 0: The maximum resident set size (KB) = 851480 Test 087 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3965,364 +3965,364 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 158.781980 - 0: The maximum resident set size (KB) = 817936 + 0: The total amount of wall time = 162.342462 + 0: The maximum resident set size (KB) = 817468 Test 088 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.984889 - 0: The maximum resident set size (KB) = 813672 + 0: The total amount of wall time = 158.582992 + 0: The maximum resident set size (KB) = 761260 Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_stochy_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel 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.036182 - 0: The maximum resident set size (KB) = 812488 + 0: The total amount of wall time = 179.328922 + 0: The maximum resident set size (KB) = 817520 Test 090 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.001549 - 0: The maximum resident set size (KB) = 816176 + 0: The total amount of wall time = 158.282236 + 0: The maximum resident set size (KB) = 815488 Test 091 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.795480 - 0: The maximum resident set size (KB) = 866976 + 0: The total amount of wall time = 242.121993 + 0: The maximum resident set size (KB) = 862520 Test 092 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel 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.943895 - 0: The maximum resident set size (KB) = 864720 + 0: The total amount of wall time = 235.562702 + 0: The maximum resident set size (KB) = 860060 Test 093 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_ras_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.796367 - 0: The maximum resident set size (KB) = 827464 + 0: The total amount of wall time = 159.786021 + 0: The maximum resident set size (KB) = 828620 Test 094 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.813592 - 0: The maximum resident set size (KB) = 874568 + 0: The total amount of wall time = 161.567847 + 0: The maximum resident set size (KB) = 870248 Test 095 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.643867 - 0: The maximum resident set size (KB) = 1639572 + 0: The total amount of wall time = 165.609448 + 0: The maximum resident set size (KB) = 1643948 Test 096 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_debug_intel Checking test 097 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 997.857687 - 0: The maximum resident set size (KB) = 842436 + 0: The total amount of wall time = 1029.052233 + 0: The maximum resident set size (KB) = 842300 Test 097 regional_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_intel Checking test 098 rap_control_debug_intel 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.848999 - 0: The maximum resident set size (KB) = 1200748 + 0: The total amount of wall time = 290.234996 + 0: The maximum resident set size (KB) = 1208800 Test 098 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel 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.894333 - 0: The maximum resident set size (KB) = 1205652 + 0: The total amount of wall time = 281.196024 + 0: The maximum resident set size (KB) = 1201560 Test 099 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_gf_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.903194 - 0: The maximum resident set size (KB) = 1200536 + 0: The total amount of wall time = 298.043240 + 0: The maximum resident set size (KB) = 1144964 Test 100 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_c3_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel 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.577737 - 0: The maximum resident set size (KB) = 1197872 + 0: The total amount of wall time = 295.484683 + 0: The maximum resident set size (KB) = 1195980 Test 101 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel 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.876541 - 0: The maximum resident set size (KB) = 1203680 + 0: The total amount of wall time = 285.614768 + 0: The maximum resident set size (KB) = 1203704 Test 102 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_diag_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.671210 - 0: The maximum resident set size (KB) = 1284240 + 0: The total amount of wall time = 297.461129 + 0: The maximum resident set size (KB) = 1290176 Test 103 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel 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.559141 - 0: The maximum resident set size (KB) = 1202408 + 0: The total amount of wall time = 291.470095 + 0: The maximum resident set size (KB) = 1199732 Test 104 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel 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.039251 - 0: The maximum resident set size (KB) = 1210684 + 0: The total amount of wall time = 294.313429 + 0: The maximum resident set size (KB) = 1198352 Test 105 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.733280 - 0: The maximum resident set size (KB) = 1203416 + 0: The total amount of wall time = 314.634665 + 0: The maximum resident set size (KB) = 1150932 Test 106 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel 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.473001 - 0: The maximum resident set size (KB) = 1203888 + 0: The total amount of wall time = 286.027627 + 0: The maximum resident set size (KB) = 1211628 Test 107 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel 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.147913 - 0: The maximum resident set size (KB) = 1194952 + 0: The total amount of wall time = 279.674781 + 0: The maximum resident set size (KB) = 1198516 Test 108 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel 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.344693 - 0: The maximum resident set size (KB) = 1201816 + 0: The total amount of wall time = 287.094300 + 0: The maximum resident set size (KB) = 1202684 Test 109 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 471.073616 - 0: The maximum resident set size (KB) = 1198576 + 0: The total amount of wall time = 474.631970 + 0: The maximum resident set size (KB) = 1188640 Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel 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.476746 - 0: The maximum resident set size (KB) = 1195068 + 0: The total amount of wall time = 282.726763 + 0: The maximum resident set size (KB) = 1202944 Test 111 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 337.077867 - 0: The maximum resident set size (KB) = 1203376 + 0: The total amount of wall time = 356.573609 + 0: The maximum resident set size (KB) = 1206544 Test 112 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_flake_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel 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.719924 - 0: The maximum resident set size (KB) = 1202444 + 0: The total amount of wall time = 292.796758 + 0: The maximum resident set size (KB) = 1203280 Test 113 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_c96_no_nest_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4363,26 +4363,26 @@ Checking test 114 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 483.587321 - 0: The maximum resident set size (KB) = 1199812 + 0: The total amount of wall time = 498.216245 + 0: The maximum resident set size (KB) = 1204652 Test 114 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_wam_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.105171 - 0: The maximum resident set size (KB) = 505868 + 0: The total amount of wall time = 286.764877 + 0: The maximum resident set size (KB) = 515624 Test 115 control_wam_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4393,14 +4393,14 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 259.393839 - 0: The maximum resident set size (KB) = 1167240 + 0: The total amount of wall time = 263.599302 + 0: The maximum resident set size (KB) = 1168112 Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4447,14 +4447,14 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.838074 - 0: The maximum resident set size (KB) = 1049032 + 0: The total amount of wall time = 374.977947 + 0: The maximum resident set size (KB) = 990992 Test 117 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4501,14 +4501,14 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.249031 - 0: The maximum resident set size (KB) = 993904 + 0: The total amount of wall time = 194.241147 + 0: The maximum resident set size (KB) = 989448 Test 118 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4555,14 +4555,14 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 397.779542 - 0: The maximum resident set size (KB) = 1086992 + 0: The total amount of wall time = 391.465469 + 0: The maximum resident set size (KB) = 1088532 Test 119 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4609,14 +4609,14 @@ Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.259225 - 0: The maximum resident set size (KB) = 965660 + 0: The total amount of wall time = 168.650345 + 0: The maximum resident set size (KB) = 960700 Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4663,14 +4663,14 @@ Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.174262 - 0: The maximum resident set size (KB) = 936728 + 0: The total amount of wall time = 208.189304 + 0: The maximum resident set size (KB) = 932732 Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4709,28 +4709,28 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.525637 - 0: The maximum resident set size (KB) = 1037772 + 0: The total amount of wall time = 284.767218 + 0: The maximum resident set size (KB) = 1034380 Test 122 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.169043 - 0: The maximum resident set size (KB) = 923184 + 0: The total amount of wall time = 107.453722 + 0: The maximum resident set size (KB) = 933064 Test 123 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_control_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_control_intel Checking test 124 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,40 +4746,40 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 114.477522 - 0: The maximum resident set size (KB) = 1202640 + 0: The total amount of wall time = 113.741949 + 0: The maximum resident set size (KB) = 1198248 Test 124 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 50.636063 - 0: The maximum resident set size (KB) = 1121968 + 0: The total amount of wall time = 56.689549 + 0: The maximum resident set size (KB) = 1123316 Test 125 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 68.473048 - 0: The maximum resident set size (KB) = 1064972 + 0: The total amount of wall time = 71.324885 + 0: The maximum resident set size (KB) = 1112256 Test 126 conus13km_restart_mismatch_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4826,42 +4826,42 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.460714 - 0: The maximum resident set size (KB) = 995000 + 0: The total amount of wall time = 244.166162 + 0: The maximum resident set size (KB) = 996080 Test 127 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.674209 - 0: The maximum resident set size (KB) = 1084072 + 0: The total amount of wall time = 281.122094 + 0: The maximum resident set size (KB) = 1081220 Test 128 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel 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.174193 - 0: The maximum resident set size (KB) = 1084692 + 0: The total amount of wall time = 273.077148 + 0: The maximum resident set size (KB) = 1078984 Test 129 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4875,14 +4875,14 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 858.046640 - 0: The maximum resident set size (KB) = 1228476 + 0: The total amount of wall time = 883.616506 + 0: The maximum resident set size (KB) = 1232096 Test 130 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_qr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4896,81 +4896,81 @@ Checking test 131 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 886.257909 - 0: The maximum resident set size (KB) = 923892 + 0: The total amount of wall time = 877.481632 + 0: The maximum resident set size (KB) = 930760 Test 131 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 487.724543 - 0: The maximum resident set size (KB) = 1153664 + 0: The total amount of wall time = 512.702983 + 0: The maximum resident set size (KB) = 1100960 Test 132 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 880.303019 - 0: The maximum resident set size (KB) = 1293376 + 0: The total amount of wall time = 864.228547 + 0: The maximum resident set size (KB) = 1292208 Test 133 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.813123 - 0: The maximum resident set size (KB) = 1117312 + 0: The total amount of wall time = 293.173758 + 0: The maximum resident set size (KB) = 1123684 Test 134 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 326.815762 - 0: The maximum resident set size (KB) = 739728 + 0: The total amount of wall time = 328.596464 + 0: The maximum resident set size (KB) = 738476 Test 135 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 351.147113 - 0: The maximum resident set size (KB) = 1119708 + 0: The total amount of wall time = 364.630257 + 0: The maximum resident set size (KB) = 1120072 Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4979,14 +4979,14 @@ Checking test 137 hafs_regional_atm_ocn_intel results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 412.286472 - 0: The maximum resident set size (KB) = 828212 + 0: The total amount of wall time = 411.993723 + 0: The maximum resident set size (KB) = 783524 Test 137 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4995,14 +4995,14 @@ Checking test 138 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 772.792483 - 0: The maximum resident set size (KB) = 863476 + 0: The total amount of wall time = 791.269515 + 0: The maximum resident set size (KB) = 860592 Test 138 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5013,14 +5013,14 @@ Checking test 139 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 864.136423 - 0: The maximum resident set size (KB) = 886000 + 0: The total amount of wall time = 875.524976 + 0: The maximum resident set size (KB) = 884624 Test 139 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5042,14 +5042,14 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 371.077882 - 0: The maximum resident set size (KB) = 500792 + 0: The total amount of wall time = 365.464749 + 0: The maximum resident set size (KB) = 499320 Test 140 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5058,14 +5058,14 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 442.028429 - 0: The maximum resident set size (KB) = 521768 + 0: The total amount of wall time = 443.561957 + 0: The maximum resident set size (KB) = 486292 Test 141 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5075,18 +5075,18 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK @@ -5112,14 +5112,14 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 184.650281 - 0: The maximum resident set size (KB) = 370728 + 0: The total amount of wall time = 182.443505 + 0: The maximum resident set size (KB) = 373596 Test 142 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5151,15 +5151,15 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK @@ -5177,14 +5177,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK @@ -5201,14 +5201,14 @@ Checking test 143 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 473.950464 - 0: The maximum resident set size (KB) = 467056 + 0: The total amount of wall time = 491.611369 + 0: The maximum resident set size (KB) = 479896 Test 143 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5217,14 +5217,14 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 243.959253 - 0: The maximum resident set size (KB) = 532552 + 0: The total amount of wall time = 243.768041 + 0: The maximum resident set size (KB) = 528900 Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5246,14 +5246,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 230.519592 - 0: The maximum resident set size (KB) = 531148 + 0: The total amount of wall time = 235.248058 + 0: The maximum resident set size (KB) = 527440 Test 145 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5262,96 +5262,96 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 318.111875 - 0: The maximum resident set size (KB) = 594608 + 0: The total amount of wall time = 319.007158 + 0: The maximum resident set size (KB) = 543232 Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 73.974122 - 0: The maximum resident set size (KB) = 405436 + 0: The total amount of wall time = 84.376151 + 0: The maximum resident set size (KB) = 402088 Test 147 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/gnv1_nested_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK Comparing RESTART/20200825.180000.coupler.res .........OK Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 265.992543 - 0: The maximum resident set size (KB) = 809036 - -Test 148 gnv1_nested_intel PASS Tries: 2 - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_debug_intel + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK + + 0: The total amount of wall time = 289.137622 + 0: The maximum resident set size (KB) = 803856 + +Test 148 gnv1_nested_intel FAIL Tries: 2 + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 791.890844 - 0: The maximum resident set size (KB) = 578968 + 0: The total amount of wall time = 1249.711129 + 0: The maximum resident set size (KB) = 574500 Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5362,14 +5362,14 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 574.391096 - 0: The maximum resident set size (KB) = 676728 + 0: The total amount of wall time = 577.595540 + 0: The maximum resident set size (KB) = 672492 Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5380,14 +5380,14 @@ Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 567.054858 - 0: The maximum resident set size (KB) = 711308 + 0: The total amount of wall time = 581.714316 + 0: The maximum resident set size (KB) = 716316 Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5397,14 +5397,14 @@ Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 414.011432 - 0: The maximum resident set size (KB) = 731488 + 0: The total amount of wall time = 457.182550 + 0: The maximum resident set size (KB) = 643412 Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_intel Checking test 153 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5412,14 +5412,14 @@ Checking test 153 hafs_regional_docn_intel 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 = 377.463284 - 0: The maximum resident set size (KB) = 830280 + 0: The total amount of wall time = 373.592859 + 0: The maximum resident set size (KB) = 831768 Test 153 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_oisst_intel Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5427,131 +5427,131 @@ Checking test 154 hafs_regional_docn_oisst_intel results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 375.348019 - 0: The maximum resident set size (KB) = 817940 + 0: The total amount of wall time = 384.377249 + 0: The maximum resident set size (KB) = 815344 Test 154 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_datm_cdeps_intel Checking test 155 hafs_regional_datm_cdeps_intel 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 = 961.509856 - 0: The maximum resident set size (KB) = 1211824 + 0: The total amount of wall time = 948.326176 + 0: The maximum resident set size (KB) = 1209820 Test 155 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_intel Checking test 156 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.659234 - 0: The maximum resident set size (KB) = 1100676 + 0: The total amount of wall time = 152.647059 + 0: The maximum resident set size (KB) = 1138652 Test 156 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_restart_cfsr_intel Checking test 157 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.960814 - 0: The maximum resident set size (KB) = 1088100 + 0: The total amount of wall time = 88.683271 + 0: The maximum resident set size (KB) = 1091432 Test 157 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_gefs_intel Checking test 158 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.088906 - 0: The maximum resident set size (KB) = 1011320 + 0: The total amount of wall time = 147.245503 + 0: The maximum resident set size (KB) = 1015548 Test 158 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_iau_gefs_intel Checking test 159 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.868252 - 0: The maximum resident set size (KB) = 1008800 + 0: The total amount of wall time = 148.886800 + 0: The maximum resident set size (KB) = 1013800 Test 159 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_stochy_gefs_intel Checking test 160 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.832993 - 0: The maximum resident set size (KB) = 1020416 + 0: The total amount of wall time = 148.175446 + 0: The maximum resident set size (KB) = 1019588 Test 160 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_ciceC_cfsr_intel Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.837693 - 0: The maximum resident set size (KB) = 1144264 + 0: The total amount of wall time = 153.317638 + 0: The maximum resident set size (KB) = 1131700 Test 161 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_cfsr_intel Checking test 162 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.743569 - 0: The maximum resident set size (KB) = 1139092 + 0: The total amount of wall time = 147.508235 + 0: The maximum resident set size (KB) = 1116288 Test 162 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_gefs_intel Checking test 163 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.103990 - 0: The maximum resident set size (KB) = 1014016 + 0: The total amount of wall time = 148.047303 + 0: The maximum resident set size (KB) = 1019492 Test 163 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_cfsr_intel Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5560,14 +5560,14 @@ Checking test 164 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 348.519925 - 0: The maximum resident set size (KB) = 1060008 + 0: The total amount of wall time = 353.523564 + 0: The maximum resident set size (KB) = 1058268 Test 164 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_gefs_intel Checking test 165 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5576,77 +5576,77 @@ Checking test 165 datm_cdeps_mx025_gefs_intel 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 = 338.533738 - 0: The maximum resident set size (KB) = 1046004 + 0: The total amount of wall time = 345.307426 + 0: The maximum resident set size (KB) = 1001192 Test 165 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_multiple_files_cfsr_intel Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.239029 - 0: The maximum resident set size (KB) = 1128924 + 0: The total amount of wall time = 153.115196 + 0: The maximum resident set size (KB) = 1137200 Test 166 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_3072x1536_cfsr_intel Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 216.424833 - 0: The maximum resident set size (KB) = 2452904 + 0: The total amount of wall time = 217.054180 + 0: The maximum resident set size (KB) = 2403708 Test 167 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_gfs_intel Checking test 168 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 208.716914 - 0: The maximum resident set size (KB) = 2491112 + 0: The total amount of wall time = 217.555488 + 0: The maximum resident set size (KB) = 2469852 Test 168 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_debug_cfsr_intel Checking test 169 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 372.658357 - 0: The maximum resident set size (KB) = 1073980 + 0: The total amount of wall time = 362.860271 + 0: The maximum resident set size (KB) = 1063896 Test 169 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_faster_intel Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.238847 - 0: The maximum resident set size (KB) = 1117860 + 0: The total amount of wall time = 153.275664 + 0: The maximum resident set size (KB) = 1139668 Test 170 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_gswp3_intel Checking test 171 datm_cdeps_lnd_gswp3_intel 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 @@ -5655,14 +5655,14 @@ Checking test 171 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 42.544200 - 0: The maximum resident set size (KB) = 258140 + 0: The total amount of wall time = 51.538648 + 0: The maximum resident set size (KB) = 260780 Test 171 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_intel Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 172 datm_cdeps_lnd_era5_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 44.188053 - 0: The maximum resident set size (KB) = 319844 + 0: The total amount of wall time = 54.342466 + 0: The maximum resident set size (KB) = 326276 Test 172 datm_cdeps_lnd_era5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/datm_cdeps_lnd_era5_rst_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_rst_intel Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK @@ -5687,14 +5687,14 @@ Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - 0: The total amount of wall time = 26.864296 - 0: The maximum resident set size (KB) = 324004 + 0: The total amount of wall time = 31.364450 + 0: The maximum resident set size (KB) = 322284 Test 173 datm_cdeps_lnd_era5_rst_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_sbs_intel Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5783,14 +5783,14 @@ Checking test 174 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 248.860392 - 0: The maximum resident set size (KB) = 1610064 + 0: The total amount of wall time = 263.329875 + 0: The maximum resident set size (KB) = 1611364 Test 174 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_p8_atmlnd_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_intel Checking test 175 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5879,14 +5879,14 @@ Checking test 175 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 248.172545 - 0: The maximum resident set size (KB) = 1601908 + 0: The total amount of wall time = 264.134060 + 0: The maximum resident set size (KB) = 1606780 Test 175 control_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_restart_p8_atmlnd_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_atmlnd_intel Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5907,14 +5907,14 @@ Checking test 176 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 128.325973 - 0: The maximum resident set size (KB) = 905048 + 0: The total amount of wall time = 125.990273 + 0: The maximum resident set size (KB) = 900868 Test 176 control_restart_p8_atmlnd_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmwav_control_noaero_p8_intel Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5957,14 +5957,14 @@ Checking test 177 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 96.368620 - 0: The maximum resident set size (KB) = 1662076 + 0: The total amount of wall time = 105.534816 + 0: The maximum resident set size (KB) = 1659924 Test 177 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/control_atmwav_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_atmwav_intel Checking test 178 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -6008,14 +6008,14 @@ Checking test 178 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 94.819646 - 0: The maximum resident set size (KB) = 675536 + 0: The total amount of wall time = 96.788507 + 0: The maximum resident set size (KB) = 676480 Test 178 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_intel Checking test 179 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6059,14 +6059,14 @@ Checking test 179 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.627200 - 0: The maximum resident set size (KB) = 3027264 + 0: The total amount of wall time = 239.493134 + 0: The maximum resident set size (KB) = 3024016 Test 179 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_intel Checking test 180 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6110,14 +6110,14 @@ Checking test 180 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.310815 - 0: The maximum resident set size (KB) = 3090976 + 0: The total amount of wall time = 292.670045 + 0: The maximum resident set size (KB) = 3089668 Test 180 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_micro_intel Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6161,14 +6161,14 @@ Checking test 181 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 301.730404 - 0: The maximum resident set size (KB) = 3109836 + 0: The total amount of wall time = 302.777064 + 0: The maximum resident set size (KB) = 3104452 Test 181 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_25006/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_atmaq_debug_intel Checking test 182 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6182,12 +6182,91 @@ Checking test 182 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1275.399529 - 0: The maximum resident set size (KB) = 4574848 + 0: The total amount of wall time = 1300.410865 + 0: The maximum resident set size (KB) = 4580096 Test 182 regional_atmaq_debug_intel PASS +FAILED TESTS: +148 gnv1_nested_intel failed in check_result +gnv1_nested_intel 148 failed in run_test + +REGRESSION TEST FAILED +Wed Feb 14 02:59:29 CST 2024 +Elapsed time: 07h:18m:50s. Have a nice day! +Wed Feb 14 08:25:16 CST 2024 +Start Regression test + +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile hafsw_intel elapsed time 881 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_294699/gnv1_nested_intel +Checking test 001 gnv1_nested_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + + 0: The total amount of wall time = 284.447630 + 0: The maximum resident set size (KB) = 802428 + +Test 001 gnv1_nested_intel PASS Tries: 2 + REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 08:55:49 CST 2024 -Elapsed time: 01h:34m:42s. Have a nice day! +Wed Feb 14 09:00:56 CST 2024 +Elapsed time: 00h:35m:41s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index acadb652df..a8a4b54def 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,54 +1,54 @@ -Tue Feb 13 14:08:04 UTC 2024 +Tue Feb 13 20:56:17 UTC 2024 Start Regression test -Testing UFSWM Hash: a4014c12cf57c846465a3c9dc6add104e0e0bb3f +Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 28bfc365eb65364f1b4972a870837640cb7331a3 FV3 (remotes/origin/HEAD) + b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 986 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 236 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 629 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 574 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 940 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 1139 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 821 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 1184 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 828 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 657 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 920 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 950 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 1275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 898 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 682 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 668 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 859 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1263 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 652 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 258 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 950 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1926 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 649 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 614 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 675 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1085 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_mixedmode_intel +Compile atmaero_intel elapsed time 619 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 404 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_intel elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 927 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 1579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 1452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 921 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 1170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 933 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_mom6w_intel elapsed time 709 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 361 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 759 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 832 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 1053 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 1296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 748 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 717 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 907 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 287 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 705 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1279 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1393 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 1362 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 250 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 1439 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 1193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 331.863056 -The maximum resident set size (KB) = 2979448 +The total amount of wall time = 329.457449 +The maximum resident set size (KB) = 2971044 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 930.280986 -The maximum resident set size (KB) = 1592472 +The total amount of wall time = 915.125525 +The maximum resident set size (KB) = 1595356 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -237,14 +237,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.120000.out_pnt.ww3 .........OK Comparing 20210323.120000.out_grd.ww3 .........OK -The total amount of wall time = 988.600915 -The maximum resident set size (KB) = 1709036 +The total amount of wall time = 997.808037 +The maximum resident set size (KB) = 1709916 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -297,14 +297,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 511.775827 -The maximum resident set size (KB) = 844884 +The total amount of wall time = 470.189352 +The maximum resident set size (KB) = 845676 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -368,14 +368,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1058.114943 -The maximum resident set size (KB) = 1574192 +The total amount of wall time = 1066.801900 +The maximum resident set size (KB) = 1567592 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -427,14 +427,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1434.523120 -The maximum resident set size (KB) = 1600708 +The total amount of wall time = 1416.465302 +The maximum resident set size (KB) = 1603992 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -499,14 +499,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 366.520247 -The maximum resident set size (KB) = 3004848 +The total amount of wall time = 368.621338 +The maximum resident set size (KB) = 3004160 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -571,14 +571,14 @@ Checking test 008 cpld_control_p8.v2.sfc_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 374.641217 -The maximum resident set size (KB) = 3004676 +The total amount of wall time = 365.650165 +The maximum resident set size (KB) = 3003280 Test 008 cpld_control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -631,14 +631,14 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 220.776679 -The maximum resident set size (KB) = 3061304 +The total amount of wall time = 220.617873 +The maximum resident set size (KB) = 3067660 Test 009 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -703,14 +703,14 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 373.110410 -The maximum resident set size (KB) = 3030140 +The total amount of wall time = 371.869084 +The maximum resident set size (KB) = 3027368 Test 010 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -763,14 +763,14 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 223.330382 -The maximum resident set size (KB) = 3081576 +The total amount of wall time = 227.395411 +The maximum resident set size (KB) = 3080028 Test 011 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -823,14 +823,14 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 328.492173 -The maximum resident set size (KB) = 3314268 +The total amount of wall time = 330.381081 +The maximum resident set size (KB) = 3318488 Test 012 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -883,14 +883,14 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.404786 -The maximum resident set size (KB) = 3000836 +The total amount of wall time = 364.001102 +The maximum resident set size (KB) = 2997096 Test 013 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -943,14 +943,14 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 311.264276 -The maximum resident set size (KB) = 2924920 +The total amount of wall time = 308.580036 +The maximum resident set size (KB) = 2923452 Test 014 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1015,14 +1015,14 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 372.575156 -The maximum resident set size (KB) = 3001148 +The total amount of wall time = 366.990523 +The maximum resident set size (KB) = 3002992 Test 015 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_bmark_p8_intel Checking test 016 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1070,14 +1070,14 @@ Checking test 016 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 756.229756 -The maximum resident set size (KB) = 3952788 +The total amount of wall time = 763.623435 +The maximum resident set size (KB) = 3957120 Test 016 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_bmark_p8_intel Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1125,14 +1125,14 @@ Checking test 017 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 535.396418 -The maximum resident set size (KB) = 4245336 +The total amount of wall time = 540.980220 +The maximum resident set size (KB) = 4253632 Test 017 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_s2sa_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_s2sa_p8_intel Checking test 018 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1183,14 +1183,14 @@ Checking test 018 cpld_s2sa_p8_intel 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 = 345.947134 -The maximum resident set size (KB) = 2968192 +The total amount of wall time = 351.731756 +The maximum resident set size (KB) = 2969680 Test 018 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_intel Checking test 019 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1254,14 +1254,14 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 275.784359 -The maximum resident set size (KB) = 1584180 +The total amount of wall time = 273.246572 +The maximum resident set size (KB) = 1591812 Test 019 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_nowave_noaero_p8_intel Checking test 020 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1323,14 +1323,14 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel 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 = 281.338276 -The maximum resident set size (KB) = 1633792 +The total amount of wall time = 278.832067 +The maximum resident set size (KB) = 1635008 Test 020 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1392,14 +1392,14 @@ Checking test 021 cpld_control_noaero_p8_agrid_intel 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 = 278.570462 -The maximum resident set size (KB) = 1633692 +The total amount of wall time = 280.325052 +The maximum resident set size (KB) = 1634760 Test 021 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1449,14 +1449,14 @@ Checking test 022 cpld_control_c48_intel 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 = 407.756080 -The maximum resident set size (KB) = 2645008 +The total amount of wall time = 418.314915 +The maximum resident set size (KB) = 2650180 Test 022 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_faster_intel Checking test 023 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1521,14 +1521,14 @@ Checking test 023 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 358.611900 -The maximum resident set size (KB) = 3002248 +The total amount of wall time = 367.397222 +The maximum resident set size (KB) = 3002092 Test 023 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_pdlib_p8_intel Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1592,14 +1592,14 @@ Checking test 024 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 931.577332 -The maximum resident set size (KB) = 1596928 +The total amount of wall time = 934.716069 +The maximum resident set size (KB) = 1608900 Test 024 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_pdlib_p8_intel Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1651,14 +1651,14 @@ Checking test 025 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 472.299588 -The maximum resident set size (KB) = 896532 +The total amount of wall time = 478.797496 +The maximum resident set size (KB) = 900020 Test 025 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_pdlib_p8_intel Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1722,14 +1722,14 @@ Checking test 026 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1086.726641 -The maximum resident set size (KB) = 1572716 +The total amount of wall time = 1083.391522 +The maximum resident set size (KB) = 1585180 Test 026 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_pdlib_p8_intel Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1781,14 +1781,14 @@ Checking test 027 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1502.550695 -The maximum resident set size (KB) = 1617084 +The total amount of wall time = 1493.649751 +The maximum resident set size (KB) = 1622384 Test 027 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_flake_intel Checking test 028 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1799,14 +1799,14 @@ Checking test 028 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.407031 -The maximum resident set size (KB) = 573496 +The total amount of wall time = 214.400844 +The maximum resident set size (KB) = 573988 Test 028 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_intel Checking test 029 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 029 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.640254 -The maximum resident set size (KB) = 523944 +The total amount of wall time = 132.972562 +The maximum resident set size (KB) = 521276 Test 029 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_parallel_intel Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1855,14 +1855,14 @@ Checking test 030 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.287643 -The maximum resident set size (KB) = 527888 +The total amount of wall time = 141.212648 +The maximum resident set size (KB) = 526704 Test 030 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_latlon_intel Checking test 031 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1873,14 +1873,14 @@ Checking test 031 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.985086 -The maximum resident set size (KB) = 523464 +The total amount of wall time = 134.857626 +The maximum resident set size (KB) = 524092 Test 031 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_intel Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1891,14 +1891,14 @@ Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.308739 -The maximum resident set size (KB) = 523760 +The total amount of wall time = 137.418331 +The maximum resident set size (KB) = 526616 Test 032 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48_intel Checking test 033 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1937,14 +1937,14 @@ Checking test 033 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.959389 -The maximum resident set size (KB) = 718740 +The total amount of wall time = 333.592096 +The maximum resident set size (KB) = 717112 Test 033 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c48.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48.v2.sfc_intel Checking test 034 control_c48.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1983,14 +1983,14 @@ Checking test 034 control_c48.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 327.277723 -The maximum resident set size (KB) = 714672 +The total amount of wall time = 328.720224 +The maximum resident set size (KB) = 716440 Test 034 control_c48.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c192_intel Checking test 035 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 035 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 529.573246 -The maximum resident set size (KB) = 638152 +The total amount of wall time = 529.668191 +The maximum resident set size (KB) = 640132 Test 035 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384_intel Checking test 036 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2019,14 +2019,14 @@ Checking test 036 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 599.185011 -The maximum resident set size (KB) = 949244 +The total amount of wall time = 629.797197 +The maximum resident set size (KB) = 952916 Test 036 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384gdas_intel Checking test 037 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 037 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 532.690549 -The maximum resident set size (KB) = 1093316 +The total amount of wall time = 547.581361 +The maximum resident set size (KB) = 1093116 Test 037 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_intel Checking test 038 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2087,28 +2087,28 @@ Checking test 038 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.197198 -The maximum resident set size (KB) = 532184 +The total amount of wall time = 91.065977 +The maximum resident set size (KB) = 531320 Test 038 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_restart_intel Checking test 039 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 50.901170 -The maximum resident set size (KB) = 327960 +The total amount of wall time = 50.389895 +The maximum resident set size (KB) = 333432 Test 039 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_intel Checking test 040 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2119,14 +2119,14 @@ Checking test 040 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 86.524647 -The maximum resident set size (KB) = 528408 +The total amount of wall time = 84.923118 +The maximum resident set size (KB) = 533912 Test 040 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr4_intel Checking test 041 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 041 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.482418 -The maximum resident set size (KB) = 523260 +The total amount of wall time = 135.357882 +The maximum resident set size (KB) = 525600 Test 041 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr5_intel Checking test 042 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2163,14 +2163,14 @@ Checking test 042 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.336665 -The maximum resident set size (KB) = 526612 +The total amount of wall time = 137.210152 +The maximum resident set size (KB) = 525788 Test 042 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_intel Checking test 043 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2217,14 +2217,14 @@ Checking test 043 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.203829 -The maximum resident set size (KB) = 1502800 +The total amount of wall time = 164.561276 +The maximum resident set size (KB) = 1509544 Test 043 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8.v2.sfc_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8.v2.sfc_intel Checking test 044 control_p8.v2.sfc_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2271,14 +2271,14 @@ Checking test 044 control_p8.v2.sfc_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.847954 -The maximum resident set size (KB) = 1507972 +The total amount of wall time = 165.199652 +The maximum resident set size (KB) = 1499432 Test 044 control_p8.v2.sfc_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_ugwpv1_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_ugwpv1_intel Checking test 045 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2325,14 +2325,14 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 161.687212 -The maximum resident set size (KB) = 1495372 +The total amount of wall time = 161.744955 +The maximum resident set size (KB) = 1511016 Test 045 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_intel Checking test 046 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2371,14 +2371,14 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 91.093186 -The maximum resident set size (KB) = 695152 +The total amount of wall time = 91.919863 +The maximum resident set size (KB) = 685864 Test 046 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_noqr_p8_intel Checking test 047 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2425,14 +2425,14 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 169.859551 -The maximum resident set size (KB) = 1489324 +The total amount of wall time = 165.373090 +The maximum resident set size (KB) = 1489272 Test 047 control_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_noqr_p8_intel Checking test 048 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2471,14 +2471,14 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK -The total amount of wall time = 90.499336 -The maximum resident set size (KB) = 695748 +The total amount of wall time = 91.345866 +The maximum resident set size (KB) = 697124 Test 048 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_decomp_p8_intel Checking test 049 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2521,14 +2521,14 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 169.821968 -The maximum resident set size (KB) = 1496728 +The total amount of wall time = 169.341980 +The maximum resident set size (KB) = 1500340 Test 049 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_2threads_p8_intel Checking test 050 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2571,14 +2571,14 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 146.911854 -The maximum resident set size (KB) = 1591180 +The total amount of wall time = 146.392199 +The maximum resident set size (KB) = 1588536 Test 050 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_lndp_intel Checking test 051 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2597,14 +2597,14 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 297.043958 -The maximum resident set size (KB) = 1498888 +The total amount of wall time = 295.237804 +The maximum resident set size (KB) = 1497160 Test 051 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_rrtmgp_intel Checking test 052 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2651,14 +2651,14 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 223.402010 -The maximum resident set size (KB) = 1563876 +The total amount of wall time = 220.698043 +The maximum resident set size (KB) = 1553816 Test 052 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_mynn_intel Checking test 053 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2705,14 +2705,14 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.789872 -The maximum resident set size (KB) = 1514112 +The total amount of wall time = 167.783667 +The maximum resident set size (KB) = 1515868 Test 053 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/merra2_thompson_intel Checking test 054 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2759,14 +2759,14 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.396620 -The maximum resident set size (KB) = 1515348 +The total amount of wall time = 201.082056 +The maximum resident set size (KB) = 1513680 Test 054 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_intel Checking test 055 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2777,28 +2777,28 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 292.955178 -The maximum resident set size (KB) = 606100 +The total amount of wall time = 289.593049 +The maximum resident set size (KB) = 606708 Test 055 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_restart_intel Checking test 056 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 155.492101 -The maximum resident set size (KB) = 779516 +The total amount of wall time = 159.399463 +The maximum resident set size (KB) = 780488 Test 056 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_decomp_intel Checking test 057 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2809,14 +2809,14 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 307.857793 -The maximum resident set size (KB) = 605888 +The total amount of wall time = 307.435087 +The maximum resident set size (KB) = 607256 Test 057 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2threads_intel Checking test 058 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2827,14 +2827,14 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 181.747232 -The maximum resident set size (KB) = 657948 +The total amount of wall time = 177.156835 +The maximum resident set size (KB) = 659388 Test 058 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_noquilt_intel Checking test 059 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2842,28 +2842,28 @@ Checking test 059 regional_noquilt_intel 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 = 283.600928 -The maximum resident set size (KB) = 1145312 +The total amount of wall time = 279.602604 +The maximum resident set size (KB) = 1141992 Test 059 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_netcdf_parallel_intel Checking test 060 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 286.948719 -The maximum resident set size (KB) = 608952 +The total amount of wall time = 292.727447 +The maximum resident set size (KB) = 607064 Test 060 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2dwrtdecomp_intel Checking test 061 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2874,14 +2874,14 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.745601 -The maximum resident set size (KB) = 608372 +The total amount of wall time = 289.398405 +The maximum resident set size (KB) = 609276 Test 061 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_wofs_intel Checking test 062 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2892,14 +2892,14 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 384.983069 -The maximum resident set size (KB) = 1580848 +The total amount of wall time = 409.445515 +The maximum resident set size (KB) = 1578212 Test 062 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_intel Checking test 063 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2946,14 +2946,14 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 405.722503 -The maximum resident set size (KB) = 916712 +The total amount of wall time = 410.338009 +The maximum resident set size (KB) = 920936 Test 063 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_intel Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2964,14 +2964,14 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 242.649556 -The maximum resident set size (KB) = 1095884 +The total amount of wall time = 241.772100 +The maximum resident set size (KB) = 1097516 Test 064 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_decomp_intel Checking test 065 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3018,14 +3018,14 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.811077 -The maximum resident set size (KB) = 917640 +The total amount of wall time = 425.915912 +The maximum resident set size (KB) = 916880 Test 065 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_intel Checking test 066 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3072,14 +3072,14 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 368.279718 -The maximum resident set size (KB) = 1010928 +The total amount of wall time = 371.714893 +The maximum resident set size (KB) = 1010916 Test 066 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_intel Checking test 067 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3118,14 +3118,14 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.777322 -The maximum resident set size (KB) = 785068 +The total amount of wall time = 209.368309 +The maximum resident set size (KB) = 787660 Test 067 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_intel Checking test 068 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3172,14 +3172,14 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 408.653594 -The maximum resident set size (KB) = 912504 +The total amount of wall time = 407.332610 +The maximum resident set size (KB) = 918480 Test 068 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_decomp_intel Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3226,14 +3226,14 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 421.519770 -The maximum resident set size (KB) = 915048 +The total amount of wall time = 425.020834 +The maximum resident set size (KB) = 913772 Test 069 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_restart_intel Checking test 070 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3272,14 +3272,14 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.817813 -The maximum resident set size (KB) = 785600 +The total amount of wall time = 305.208277 +The maximum resident set size (KB) = 784272 Test 070 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_intel Checking test 071 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3326,14 +3326,14 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.652600 -The maximum resident set size (KB) = 910760 +The total amount of wall time = 211.238137 +The maximum resident set size (KB) = 908564 Test 071 hrrr_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_intel Checking test 072 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3380,14 +3380,14 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.227628 -The maximum resident set size (KB) = 907536 +The total amount of wall time = 214.646837 +The maximum resident set size (KB) = 909172 Test 072 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_intel Checking test 073 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3434,28 +3434,28 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.148913 -The maximum resident set size (KB) = 991784 +The total amount of wall time = 188.989521 +The maximum resident set size (KB) = 993336 Test 073 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_intel Checking test 074 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.707657 -The maximum resident set size (KB) = 741100 +The total amount of wall time = 110.490743 +The maximum resident set size (KB) = 741580 Test 074 hrrr_control_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_intel Checking test 075 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3502,14 +3502,14 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 398.210105 -The maximum resident set size (KB) = 911776 +The total amount of wall time = 399.653333 +The maximum resident set size (KB) = 909444 Test 075 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_intel Checking test 076 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3524,14 +3524,14 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 485.793754 -The maximum resident set size (KB) = 1872736 +The total amount of wall time = 488.590260 +The maximum resident set size (KB) = 1874712 Test 076 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_nohailnoccn_intel Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 470.553367 -The maximum resident set size (KB) = 1859924 +The total amount of wall time = 471.900454 +The maximum resident set size (KB) = 1862596 Test 077 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_intel Checking test 078 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3564,14 +3564,14 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 339.604589 -The maximum resident set size (KB) = 599140 +The total amount of wall time = 338.065704 +The maximum resident set size (KB) = 596512 Test 078 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_intel Checking test 079 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3582,14 +3582,14 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 333.273528 -The maximum resident set size (KB) = 594992 +The total amount of wall time = 336.679038 +The maximum resident set size (KB) = 596352 Test 079 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_intel Checking test 080 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3600,26 +3600,26 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.374528 -The maximum resident set size (KB) = 560764 +The total amount of wall time = 184.721866 +The maximum resident set size (KB) = 561572 Test 080 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_intel Checking test 081 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 121.504900 -The maximum resident set size (KB) = 271740 +The total amount of wall time = 121.009893 +The maximum resident set size (KB) = 272776 Test 081 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_faster_intel Checking test 082 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 170.040326 -The maximum resident set size (KB) = 1501620 +The total amount of wall time = 161.975328 +The maximum resident set size (KB) = 1504956 Test 082 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_faster_intel Checking test 083 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3684,14 +3684,14 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 287.418651 -The maximum resident set size (KB) = 609532 +The total amount of wall time = 283.981035 +The maximum resident set size (KB) = 610684 Test 083 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_debug_intel Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3718,364 +3718,364 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 161.768232 -The maximum resident set size (KB) = 686488 +The total amount of wall time = 160.630431 +The maximum resident set size (KB) = 688756 Test 084 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_debug_intel Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.667011 -The maximum resident set size (KB) = 690672 +The total amount of wall time = 158.871953 +The maximum resident set size (KB) = 689884 Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_debug_intel Checking test 086 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.218504 -The maximum resident set size (KB) = 690636 +The total amount of wall time = 181.484643 +The maximum resident set size (KB) = 688880 Test 086 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_debug_intel Checking test 087 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.306687 -The maximum resident set size (KB) = 693552 +The total amount of wall time = 163.081272 +The maximum resident set size (KB) = 692596 Test 087 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_debug_intel Checking test 088 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 252.986938 -The maximum resident set size (KB) = 733916 +The total amount of wall time = 251.748787 +The maximum resident set size (KB) = 730708 Test 088 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_debug_intel Checking test 089 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 248.302778 -The maximum resident set size (KB) = 734092 +The total amount of wall time = 248.344384 +The maximum resident set size (KB) = 730964 Test 089 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_debug_intel Checking test 090 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.072806 -The maximum resident set size (KB) = 703268 +The total amount of wall time = 165.276975 +The maximum resident set size (KB) = 705064 Test 090 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_diag_debug_intel Checking test 091 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.661862 -The maximum resident set size (KB) = 747428 +The total amount of wall time = 167.192686 +The maximum resident set size (KB) = 746564 Test 091 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_debug_p8_intel Checking test 092 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.512682 -The maximum resident set size (KB) = 1518856 +The total amount of wall time = 168.593384 +The maximum resident set size (KB) = 1519076 Test 092 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_debug_intel Checking test 093 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1055.399361 -The maximum resident set size (KB) = 633448 +The total amount of wall time = 1066.856512 +The maximum resident set size (KB) = 629600 Test 093 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_intel Checking test 094 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 303.544779 -The maximum resident set size (KB) = 1073204 +The total amount of wall time = 301.779372 +The maximum resident set size (KB) = 1075308 Test 094 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_intel Checking test 095 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.099265 -The maximum resident set size (KB) = 1069120 +The total amount of wall time = 295.778703 +The maximum resident set size (KB) = 1070848 Test 095 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_gf_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_gf_debug_intel Checking test 096 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.824493 -The maximum resident set size (KB) = 1074276 +The total amount of wall time = 302.218082 +The maximum resident set size (KB) = 1070948 Test 096 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_c3_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_c3_debug_intel Checking test 097 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.807577 -The maximum resident set size (KB) = 1070544 +The total amount of wall time = 303.616359 +The maximum resident set size (KB) = 1077440 Test 097 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_drag_suite_debug_intel Checking test 098 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.122005 -The maximum resident set size (KB) = 1072124 +The total amount of wall time = 303.308680 +The maximum resident set size (KB) = 1076344 Test 098 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_diag_debug_intel Checking test 099 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.007019 -The maximum resident set size (KB) = 1159744 +The total amount of wall time = 317.922053 +The maximum resident set size (KB) = 1155636 Test 099 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_cires_ugwp_debug_intel Checking test 100 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 311.834487 -The maximum resident set size (KB) = 1074140 +The total amount of wall time = 308.973760 +The maximum resident set size (KB) = 1076912 Test 100 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_ugwp_debug_intel Checking test 101 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.511767 -The maximum resident set size (KB) = 1076956 +The total amount of wall time = 311.026485 +The maximum resident set size (KB) = 1075560 Test 101 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_lndp_debug_intel Checking test 102 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.109317 -The maximum resident set size (KB) = 1079104 +The total amount of wall time = 305.383239 +The maximum resident set size (KB) = 1075928 Test 102 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_progcld_thompson_debug_intel Checking test 103 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.315894 -The maximum resident set size (KB) = 1073260 +The total amount of wall time = 302.741453 +The maximum resident set size (KB) = 1077264 Test 103 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_debug_intel Checking test 104 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.365451 -The maximum resident set size (KB) = 1068892 +The total amount of wall time = 294.837008 +The maximum resident set size (KB) = 1073164 Test 104 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_debug_intel Checking test 105 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.555887 -The maximum resident set size (KB) = 1074148 +The total amount of wall time = 304.036555 +The maximum resident set size (KB) = 1072336 Test 105 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 497.072433 -The maximum resident set size (KB) = 1068848 +The total amount of wall time = 492.553809 +The maximum resident set size (KB) = 1076192 Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_debug_intel Checking test 107 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.915862 -The maximum resident set size (KB) = 1067668 +The total amount of wall time = 298.032419 +The maximum resident set size (KB) = 1069732 Test 107 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_clm_lake_debug_intel Checking test 108 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 356.387245 -The maximum resident set size (KB) = 1078344 +The total amount of wall time = 352.917507 +The maximum resident set size (KB) = 1076212 Test 108 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_flake_debug_intel Checking test 109 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.996573 -The maximum resident set size (KB) = 1077284 +The total amount of wall time = 301.551968 +The maximum resident set size (KB) = 1076008 Test 109 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/gnv1_c96_no_nest_debug_intel Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4116,26 +4116,26 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -The total amount of wall time = 535.652666 -The maximum resident set size (KB) = 1076836 +The total amount of wall time = 523.092725 +The maximum resident set size (KB) = 1078752 Test 110 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_debug_intel Checking test 111 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.765315 -The maximum resident set size (KB) = 300624 +The total amount of wall time = 303.613563 +The maximum resident set size (KB) = 297748 Test 111 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4146,14 +4146,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 230.588524 -The maximum resident set size (KB) = 953000 +The total amount of wall time = 229.960894 +The maximum resident set size (KB) = 955568 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4200,14 +4200,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 337.326050 -The maximum resident set size (KB) = 796180 +The total amount of wall time = 341.630584 +The maximum resident set size (KB) = 790648 Test 113 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4254,14 +4254,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 178.905085 -The maximum resident set size (KB) = 783112 +The total amount of wall time = 178.772819 +The maximum resident set size (KB) = 789348 Test 114 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4308,14 +4308,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 310.614336 -The maximum resident set size (KB) = 852672 +The total amount of wall time = 307.071625 +The maximum resident set size (KB) = 851684 Test 115 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4362,14 +4362,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 159.617650 -The maximum resident set size (KB) = 840160 +The total amount of wall time = 160.312016 +The maximum resident set size (KB) = 842460 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4416,14 +4416,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.643781 -The maximum resident set size (KB) = 789440 +The total amount of wall time = 185.773661 +The maximum resident set size (KB) = 788012 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4462,28 +4462,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 253.106647 -The maximum resident set size (KB) = 688544 +The total amount of wall time = 249.761858 +The maximum resident set size (KB) = 685740 Test 118 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.502140 -The maximum resident set size (KB) = 670152 +The total amount of wall time = 94.800100 +The maximum resident set size (KB) = 672828 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4499,40 +4499,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 131.034625 -The maximum resident set size (KB) = 1006496 +The total amount of wall time = 120.458608 +The maximum resident set size (KB) = 1001904 Test 120 conus13km_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 60.720676 -The maximum resident set size (KB) = 1007992 +The total amount of wall time = 63.708613 +The maximum resident set size (KB) = 1006300 Test 121 conus13km_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.331365 -The maximum resident set size (KB) = 883324 +The total amount of wall time = 70.556962 +The maximum resident set size (KB) = 881612 Test 122 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4579,42 +4579,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 236.334234 -The maximum resident set size (KB) = 810948 +The total amount of wall time = 231.102342 +The maximum resident set size (KB) = 808800 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.528702 -The maximum resident set size (KB) = 946132 +The total amount of wall time = 293.406693 +The maximum resident set size (KB) = 953444 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.755949 -The maximum resident set size (KB) = 954084 +The total amount of wall time = 287.858761 +The maximum resident set size (KB) = 950340 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4628,14 +4628,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 897.482195 -The maximum resident set size (KB) = 1038980 +The total amount of wall time = 878.284115 +The maximum resident set size (KB) = 1032908 Test 126 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4649,81 +4649,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK -The total amount of wall time = 904.198403 -The maximum resident set size (KB) = 711580 +The total amount of wall time = 890.943396 +The maximum resident set size (KB) = 706196 Test 127 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 515.369189 -The maximum resident set size (KB) = 1039352 +The total amount of wall time = 512.752532 +The maximum resident set size (KB) = 1038256 Test 128 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 905.178589 -The maximum resident set size (KB) = 1098940 +The total amount of wall time = 891.230808 +The maximum resident set size (KB) = 1099020 Test 129 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.613106 -The maximum resident set size (KB) = 973616 +The total amount of wall time = 306.260542 +The maximum resident set size (KB) = 978604 Test 130 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 353.649348 -The maximum resident set size (KB) = 614244 +The total amount of wall time = 362.041813 +The maximum resident set size (KB) = 615168 Test 131 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 329.437837 -The maximum resident set size (KB) = 963172 +The total amount of wall time = 362.816354 +The maximum resident set size (KB) = 967296 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4732,14 +4732,14 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 425.789147 -The maximum resident set size (KB) = 659588 +The total amount of wall time = 451.226496 +The maximum resident set size (KB) = 663968 Test 133 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4748,14 +4748,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 754.119878 -The maximum resident set size (KB) = 686160 +The total amount of wall time = 773.805636 +The maximum resident set size (KB) = 699364 Test 134 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4766,14 +4766,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 941.578158 -The maximum resident set size (KB) = 704864 +The total amount of wall time = 950.462122 +The maximum resident set size (KB) = 705936 Test 135 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4795,14 +4795,14 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 321.936508 -The maximum resident set size (KB) = 389092 +The total amount of wall time = 329.945797 +The maximum resident set size (KB) = 390916 Test 136 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4811,14 +4811,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 410.299541 -The maximum resident set size (KB) = 405160 +The total amount of wall time = 424.056544 +The maximum resident set size (KB) = 403680 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4865,14 +4865,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 176.905599 -The maximum resident set size (KB) = 281040 +The total amount of wall time = 183.370516 +The maximum resident set size (KB) = 282692 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4954,14 +4954,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK -The total amount of wall time = 492.900377 -The maximum resident set size (KB) = 376844 +The total amount of wall time = 533.029334 +The maximum resident set size (KB) = 370648 Test 139 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4970,14 +4970,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 224.126547 -The maximum resident set size (KB) = 413184 +The total amount of wall time = 236.033646 +The maximum resident set size (KB) = 420680 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4999,14 +4999,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 210.963513 -The maximum resident set size (KB) = 413076 +The total amount of wall time = 222.784444 +The maximum resident set size (KB) = 423636 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5015,42 +5015,42 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 279.097440 -The maximum resident set size (KB) = 488400 +The total amount of wall time = 281.563093 +The maximum resident set size (KB) = 486356 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 96.254248 -The maximum resident set size (KB) = 315000 +The total amount of wall time = 103.904984 +The maximum resident set size (KB) = 312176 Test 143 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK -The total amount of wall time = 825.697003 -The maximum resident set size (KB) = 509060 +The total amount of wall time = 820.616990 +The maximum resident set size (KB) = 499728 Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5061,14 +5061,14 @@ Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 525.917581 -The maximum resident set size (KB) = 530736 +The total amount of wall time = 545.584197 +The maximum resident set size (KB) = 530336 Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5079,14 +5079,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel r Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 540.934501 -The maximum resident set size (KB) = 711364 +The total amount of wall time = 539.742323 +The maximum resident set size (KB) = 709488 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... Comparing atmf003.nc .........OK Comparing sfcf003.nc .........OK @@ -5096,14 +5096,14 @@ Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel res Comparing 20200825.150000.out_grd.ww3 .........OK Comparing 20200825.150000.out_pnt.ww3 .........OK -The total amount of wall time = 391.536720 -The maximum resident set size (KB) = 711812 +The total amount of wall time = 395.034358 +The maximum resident set size (KB) = 710156 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5111,14 +5111,14 @@ Checking test 148 hafs_regional_docn_intel 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 = 401.565907 -The maximum resident set size (KB) = 657504 +The total amount of wall time = 420.771629 +The maximum resident set size (KB) = 653444 Test 148 hafs_regional_docn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5126,27 +5126,27 @@ Checking test 149 hafs_regional_docn_oisst_intel 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 = 397.116334 -The maximum resident set size (KB) = 631908 +The total amount of wall time = 425.538250 +The maximum resident set size (KB) = 642652 Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_datm_cdeps_intel Checking test 150 hafs_regional_datm_cdeps_intel 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 = 951.527204 -The maximum resident set size (KB) = 881208 +The total amount of wall time = 952.679601 +The maximum resident set size (KB) = 881048 Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_sbs_intel Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5235,14 +5235,14 @@ Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 278.121137 -The maximum resident set size (KB) = 1540412 +The total amount of wall time = 283.442813 +The maximum resident set size (KB) = 1552624 Test 151 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_p8_atmlnd_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_intel Checking test 152 control_p8_atmlnd_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5331,14 +5331,14 @@ Checking test 152 control_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 278.964452 -The maximum resident set size (KB) = 1542860 +The total amount of wall time = 284.467436 +The maximum resident set size (KB) = 1537904 Test 152 control_p8_atmlnd_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/control_restart_p8_atmlnd_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_atmlnd_intel Checking test 153 control_restart_p8_atmlnd_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -5359,14 +5359,14 @@ Checking test 153 control_restart_p8_atmlnd_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK -The total amount of wall time = 155.160197 -The maximum resident set size (KB) = 743224 +The total amount of wall time = 156.243371 +The maximum resident set size (KB) = 738544 Test 153 control_restart_p8_atmlnd_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_intel Checking test 154 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5410,14 +5410,14 @@ Checking test 154 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 241.471847 -The maximum resident set size (KB) = 2849432 +The total amount of wall time = 245.700323 +The maximum resident set size (KB) = 2854944 Test 154 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_intel Checking test 155 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5461,14 +5461,14 @@ Checking test 155 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 279.536510 -The maximum resident set size (KB) = 2911716 +The total amount of wall time = 281.685079 +The maximum resident set size (KB) = 2913048 Test 155 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_micro_intel Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5512,14 +5512,14 @@ Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 294.213178 -The maximum resident set size (KB) = 2924264 +The total amount of wall time = 297.673172 +The maximum resident set size (KB) = 2925768 Test 156 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240212/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46000/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_atmaq_debug_intel Checking test 157 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5533,12 +5533,12 @@ Checking test 157 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1342.376959 -The maximum resident set size (KB) = 4445612 +The total amount of wall time = 1339.534722 +The maximum resident set size (KB) = 4436092 Test 157 regional_atmaq_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 15:25:48 UTC 2024 -Elapsed time: 01h:17m:44s. Have a nice day! +Tue Feb 13 22:27:49 UTC 2024 +Elapsed time: 01h:31m:33s. Have a nice day! diff --git a/tests/parm/diag_table/diag_table_gfsv16_3d_soil b/tests/parm/diag_table/diag_table_gfsv16_3d_soil new file mode 100644 index 0000000000..cc4a869f6d --- /dev/null +++ b/tests/parm/diag_table/diag_table_gfsv16_3d_soil @@ -0,0 +1,210 @@ +20210322.06Z.C96.64bit.non-mono +2021 03 22 06 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" + +# +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt", "soilt" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw", "soilw" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soill", "soill", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/tests/control_CubedSphereGrid_parallel b/tests/tests/control_CubedSphereGrid_parallel index 3063c0db11..eec8725429 100644 --- a/tests/tests/control_CubedSphereGrid_parallel +++ b/tests/tests/control_CubedSphereGrid_parallel @@ -42,3 +42,4 @@ export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=control.nml.IN +export DIAG_TABLE=diag_table_gfsv16_3d_soil From 698866272846e8c0f8f61ddb1b20d6463460cd63 Mon Sep 17 00:00:00 2001 From: Brian Curtis <64433609+BrianCurtis-NOAA@users.noreply.github.com> Date: Wed, 21 Feb 2024 16:37:31 -0500 Subject: [PATCH 07/10] Re-work testing verification, fail file naming consistency, remove lsf support, simplify RT logs. (#2061) * UFSWM * Re-work test verification in rt.sh for developers to use in PR process. (Closes #2058) * fail_ file name upgraded to use compile/test name instead of number. * Regression test logs do not clearly indicate when a test fails to run. (Closes #1821) * New test_changes.list file: * Verification of what tests change for each PR. * Used with './rt.sh -c -b test_changes.list` to help create new baselines for each PR. --- .github/pull_request_template.md | 198 +- modulefiles/ufs_derecho.intel.lua | 2 +- tests/compile.sh | 8 +- tests/fv3_conf/compile_qsub.IN_acorn | 2 +- tests/fv3_conf/compile_qsub.IN_derecho | 2 +- tests/fv3_conf/compile_qsub.IN_wcoss2 | 2 +- tests/fv3_conf/compile_slurm.IN_gaea | 2 +- tests/fv3_conf/compile_slurm.IN_hera | 2 +- tests/fv3_conf/compile_slurm.IN_hercules | 2 +- tests/fv3_conf/compile_slurm.IN_jet | 2 +- tests/fv3_conf/compile_slurm.IN_noaacloud | 2 +- tests/fv3_conf/compile_slurm.IN_orion | 2 +- tests/fv3_conf/compile_slurm.IN_s4 | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 434 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 158 +- .../OpnReqTests_regional_control_hera.log | 74 +- tests/logs/RegressionTests_acorn.log | 6120 +----------- tests/logs/RegressionTests_derecho.log | 5927 +----------- tests/logs/RegressionTests_gaea.log | 6592 +------------ tests/logs/RegressionTests_hera.log | 8603 +---------------- tests/logs/RegressionTests_hercules.log | 8172 +--------------- tests/logs/RegressionTests_jet.log | 5812 +---------- tests/logs/RegressionTests_orion.log | 6550 +------------ tests/logs/RegressionTests_wcoss2.log | 5782 +---------- tests/opnReqTest | 16 +- tests/rt.sh | 702 +- tests/rt_utils.sh | 136 +- tests/run_compile.sh | 34 +- tests/run_test.sh | 48 +- tests/test_changes.list | 0 30 files changed, 3486 insertions(+), 51902 deletions(-) create mode 100644 tests/test_changes.list diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 37214bf9aa..f287387a35 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,93 +1,144 @@ ## Commit Queue Requirements: - + - [ ] Fill out all sections of this template. - [ ] All sub component pull requests have been reviewed by their code managers. -- [ ] Run the full RT suite (compared to current baselines) on either Hera/Derecho/Hercules AND have committed the log to my PR branch. -- [ ] Add list of all failed regression tests in "Regression Tests" section. - -## PR Information +- [ ] Run the full Intel+GNU RT suite (compared to current baselines) on either Hera/Derecho/Hercules +- [ ] Commit 'test_changes.list' from previous step +--- +## Description: + -### Description - -### Commit Message +### Commit Message: +``` +* UFSWM - + * AQM - + * CDEPS - + * CICE - + * CMEPS - + * CMakeModules - + * FV3 - + * ccpp-physics - + * atmos_cubed_sphere - + * GOCART - + * HYCOM - + * MOM6 - + * NOAHMP - + * WW3 - + * stochastic_physics - +``` +### Priority: + +* Critical Bugfix: Reason +* High: Reason +* Normal -### Priority -- [ ] Critical Bugfix (This PR contains a critical bug fix and should be prioritized.) -- [ ] High (This PR contains a feature or fix needed for a time-sensitive project (eg, retrospectives, implementations)) -- [ ] Normal - -### Blocking Dependencies - +## Git Tracking +### UFSWM: + +* Closes # +* None -### Git Issues Fixed By This PR - +### Sub component Pull Requests: + +* AQM: +* CDEPS: +* CICE: +* CMEPS: +* CMakeModules: +* FV3: + * ccpp-physics: + * atmos_cubed_sphere: +* GOCART: +* HYCOM: +* MOM6: +* NOAHMP: +* WW3: +* stochastic_physics: +* None +### UFSWM Blocking Dependencies: + +* Blocked by # +* None +--- ## Changes - -### Subcomponent (with links) - - -- [ ] AQM -- [ ] CDEPS -- [ ] CICE -- [ ] CMEPS -- [ ] CMakeModules -- [ ] FV3 -- [ ] GOCART -- [ ] HYCOM -- [ ] MOM6 -- [ ] NOAHMP -- [ ] WW3 -- [ ] stochastic_physics -- [ ] none +* PR Adds New Tests/Baselines. +* PR Updates/Changes Baselines. +* No Baseline Changes. -### Input data -- [ ] No changes are expected to input data. -- [ ] Changes are expected to input data: - - [ ] New input data. - - [ ] Updated input data. - -### Regression Tests: -- [ ] No changes are expected to any regression test. -- [ ] Changes are expected to the following tests: -
FAILED REGRESSION TESTS - - -
+### Input data Changes: + +* None. +* New input data. +* Updated input data. -### Libraries - -- [ ] Not Needed -- [ ] Needed - - [ ] Create separate issue in [JCSDA/spack-stack](https://github.com/JCSDA/spack-stack) asking for update to library. Include library name, library version. - - [ ] Add issue link from JCSDA/spack-stack following this item +### Library Changes/Upgrades: + +* Required + * Library names w/versions: + * Git Stack Issue (JCSDA/spack-stack#) +* No Updates + +--- -### Testing Log: +## Testing Log: - RDHPCS - [ ] Hera - [ ] Orion @@ -98,8 +149,5 @@ Please list all individual issue titles addressed with github links at the end i - WCOSS2 - [ ] Dogwood/Cactus - [ ] Acorn -- CI - - [ ] Completed -- opnReqTest - - [ ] N/A - - [ ] Log attached to comment \ No newline at end of file +- [ ] CI +- [ ] opnReqTest (complete task if unnecessary) \ No newline at end of file diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua index 3bf89ee9fe..a7998b036e 100644 --- a/modulefiles/ufs_derecho.intel.lua +++ b/modulefiles/ufs_derecho.intel.lua @@ -3,7 +3,7 @@ loads UFS Model prerequisites for NOAA Parallelworks/Intel ]]) setenv("LMOD_TMOD_FIND_FIRST","yes") -prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles") load("ecflow/5.8.4") load("mysql/8.0.33") diff --git a/tests/compile.sh b/tests/compile.sh index 284fb51cc0..3cf536428b 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -24,20 +24,20 @@ fi readonly ARGC=$# if [[ $ARGC -lt 2 ]]; then - echo "Usage: $0 MACHINE_ID [ MAKE_OPT [ COMPILE_NR ] [ RT_COMPILER ] [ clean_before ] [ clean_after ] ]" + echo "Usage: $0 MACHINE_ID [ MAKE_OPT [ COMPILE_ID ] [ RT_COMPILER ] [ clean_before ] [ clean_after ] ]" echo Valid MACHINE_IDs: echo $( ls -1 ../cmake/configure_* | sed s:.*configure_::g | sed s:\.cmake:: ) | fold -sw72 exit 1 else MACHINE_ID=$1 MAKE_OPT=${2:-} - COMPILE_NR=${3:+_$3} + COMPILE_ID=${3:+_$3} RT_COMPILER=${4:-intel} clean_before=${5:-YES} clean_after=${6:-YES} fi -BUILD_NAME=fv3${COMPILE_NR} +BUILD_NAME=fv3${COMPILE_ID} PATHTR=${PATHTR:-$( cd ${MYDIR}/.. && pwd )} BUILD_DIR=${BUILD_DIR:-$(pwd)/build_${BUILD_NAME}} @@ -131,4 +131,4 @@ fi elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compiling ${CMAKE_FLAGS} finished" -echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_NR}_time.log +echo "Compile ${COMPILE_ID/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_ID}_time.log diff --git a/tests/fv3_conf/compile_qsub.IN_acorn b/tests/fv3_conf/compile_qsub.IN_acorn index 12aaa9247f..feb553c13f 100644 --- a/tests/fv3_conf/compile_qsub.IN_acorn +++ b/tests/fv3_conf/compile_qsub.IN_acorn @@ -15,7 +15,7 @@ cd $PBS_O_WORKDIR echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_derecho b/tests/fv3_conf/compile_qsub.IN_derecho index 6744d25935..66a6672c03 100644 --- a/tests/fv3_conf/compile_qsub.IN_derecho +++ b/tests/fv3_conf/compile_qsub.IN_derecho @@ -13,7 +13,7 @@ echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` module purge -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index 12aaa9247f..feb553c13f 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -15,7 +15,7 @@ cd $PBS_O_WORKDIR echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index 8c942053fc..97aceeebae 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -15,7 +15,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera index 0c1fb4dbff..aa84ba5b00 100644 --- a/tests/fv3_conf/compile_slurm.IN_hera +++ b/tests/fv3_conf/compile_slurm.IN_hera @@ -13,7 +13,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_hercules b/tests/fv3_conf/compile_slurm.IN_hercules index f0eeee484b..619ca76905 100644 --- a/tests/fv3_conf/compile_slurm.IN_hercules +++ b/tests/fv3_conf/compile_slurm.IN_hercules @@ -14,7 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_jet b/tests/fv3_conf/compile_slurm.IN_jet index e0e4591e2a..88149c43ac 100644 --- a/tests/fv3_conf/compile_slurm.IN_jet +++ b/tests/fv3_conf/compile_slurm.IN_jet @@ -14,7 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_noaacloud b/tests/fv3_conf/compile_slurm.IN_noaacloud index b9c4ca4146..c5a08095c4 100644 --- a/tests/fv3_conf/compile_slurm.IN_noaacloud +++ b/tests/fv3_conf/compile_slurm.IN_noaacloud @@ -11,7 +11,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion index f0eeee484b..619ca76905 100644 --- a/tests/fv3_conf/compile_slurm.IN_orion +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -14,7 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_s4 b/tests/fv3_conf/compile_slurm.IN_s4 index 0c1fb4dbff..aa84ba5b00 100644 --- a/tests/fv3_conf/compile_slurm.IN_s4 +++ b/tests/fv3_conf/compile_slurm.IN_s4 @@ -13,7 +13,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt echo "Compile started: " `date` -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] echo "Compile ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 725944afe9..641bb1eb78 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,11 +1,11 @@ -Tue Feb 13 21:21:48 UTC 2024 +Fri Feb 16 23:35:21 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_bit_base -Checking test bit_base control_p8_gnu results .... -Moving baseline bit_base control_p8_gnu files .... +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/bit_base_bit_base +Checking test bit_base results .... +Moving baseline bit_base files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -51,16 +51,16 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.361825 - 0: The maximum resident set size (KB) = 1308576 + 0: The total amount of wall time = 286.838063 + 0: The maximum resident set size (KB) = 1310900 -Test bit_base control_p8_gnu PASS +Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dbg_base -Checking test dbg_base control_p8_gnu results .... -Moving baseline dbg_base control_p8_gnu files .... +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -106,178 +106,178 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 892.068909 - 0: The maximum resident set size (KB) = 1288180 + 0: The total amount of wall time = 901.459527 + 0: The maximum resident set size (KB) = 1284480 -Test dbg_base control_p8_gnu PASS +Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_dcp -Checking test dcp control_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dcp_dcp +Checking test dcp results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 246.793051 - 0: The maximum resident set size (KB) = 1282680 + 0: The total amount of wall time = 252.691945 + 0: The maximum resident set size (KB) = 1279076 -Test dcp control_p8_gnu PASS +Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_mpi -Checking test mpi control_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/mpi_mpi +Checking test mpi results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 248.634230 - 0: The maximum resident set size (KB) = 1280096 + 0: The total amount of wall time = 252.381682 + 0: The maximum resident set size (KB) = 1281444 -Test mpi control_p8_gnu PASS +Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_rst -Checking test rst control_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/rst_rst +Checking test rst results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 248.281693 - 0: The maximum resident set size (KB) = 1282264 + 0: The total amount of wall time = 250.909525 + 0: The maximum resident set size (KB) = 1280000 -Test rst control_p8_gnu PASS +Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_std_base -Checking test std_base control_p8_gnu results .... -Moving baseline std_base control_p8_gnu files .... +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... Moving sfcf000.nc .........OK Moving sfcf021.nc .........OK Moving sfcf024.nc .........OK @@ -323,65 +323,65 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.485530 - 0: The maximum resident set size (KB) = 1281568 + 0: The total amount of wall time = 255.556867 + 0: The maximum resident set size (KB) = 1284028 -Test std_base control_p8_gnu PASS +Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_162511/control_p8_gnu_thr -Checking test thr control_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/thr_thr +Checking test thr results .... + Comparing sfcf000.nc .....USING NCCMP......OK + Comparing sfcf021.nc .....USING NCCMP......OK + Comparing sfcf024.nc .....USING NCCMP......OK + Comparing atmf000.nc .....USING NCCMP......OK + Comparing atmf021.nc .....USING NCCMP......OK + Comparing atmf024.nc .....USING NCCMP......OK + Comparing GFSFLX.GrbF00 .....USING CMP......OK + Comparing GFSFLX.GrbF21 .....USING CMP......OK + Comparing GFSFLX.GrbF24 .....USING CMP......OK + Comparing GFSPRS.GrbF00 .....USING CMP......OK + Comparing GFSPRS.GrbF21 .....USING CMP......OK + Comparing GFSPRS.GrbF24 .....USING CMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 248.484763 - 0: The maximum resident set size (KB) = 1281196 + 0: The total amount of wall time = 261.471265 + 0: The maximum resident set size (KB) = 1280040 -Test thr control_p8_gnu PASS +Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Feb 14 00:35:01 UTC 2024 -Elapsed time: 03h:13m:14s. Have a nice day! +Sat Feb 17 10:33:22 UTC 2024 +Elapsed time: 10h:58m:02s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 31de475a3b..98e09e571e 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,11 +1,11 @@ -Wed Feb 14 04:10:02 UTC 2024 +Mon Feb 19 14:50:19 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_dbg_base -Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... -Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/dbg_base_dbg_base +Checking test dbg_base results .... +Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -66,85 +66,85 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1212.229695 - 0: The maximum resident set size (KB) = 1415208 + 0: The total amount of wall time = 1252.713120 + 0: The maximum resident set size (KB) = 1390364 -Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS +Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_rst -Checking test rst cpld_control_nowave_noaero_p8_gnu results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/rst_rst +Checking test rst results .... + Comparing sfcf021.tile1.nc .....USING NCCMP......OK + Comparing sfcf021.tile2.nc .....USING NCCMP......OK + Comparing sfcf021.tile3.nc .....USING NCCMP......OK + Comparing sfcf021.tile4.nc .....USING NCCMP......OK + Comparing sfcf021.tile5.nc .....USING NCCMP......OK + Comparing sfcf021.tile6.nc .....USING NCCMP......OK + Comparing atmf021.tile1.nc .....USING NCCMP......OK + Comparing atmf021.tile2.nc .....USING NCCMP......OK + Comparing atmf021.tile3.nc .....USING NCCMP......OK + Comparing atmf021.tile4.nc .....USING NCCMP......OK + Comparing atmf021.tile5.nc .....USING NCCMP......OK + Comparing atmf021.tile6.nc .....USING NCCMP......OK + Comparing sfcf024.tile1.nc .....USING NCCMP......OK + Comparing sfcf024.tile2.nc .....USING NCCMP......OK + Comparing sfcf024.tile3.nc .....USING NCCMP......OK + Comparing sfcf024.tile4.nc .....USING NCCMP......OK + Comparing sfcf024.tile5.nc .....USING NCCMP......OK + Comparing sfcf024.tile6.nc .....USING NCCMP......OK + Comparing atmf024.tile1.nc .....USING NCCMP......OK + Comparing atmf024.tile2.nc .....USING NCCMP......OK + Comparing atmf024.tile3.nc .....USING NCCMP......OK + Comparing atmf024.tile4.nc .....USING NCCMP......OK + Comparing atmf024.tile5.nc .....USING NCCMP......OK + Comparing atmf024.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK + Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK + Comparing RESTART/20210323.060000.MOM.res.nc .....USING NCCMP......OK + Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 378.073713 - 0: The maximum resident set size (KB) = 1407348 + 0: The total amount of wall time = 384.439726 + 0: The maximum resident set size (KB) = 1385248 -Test rst cpld_control_nowave_noaero_p8_gnu PASS +Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_268170/cpld_control_nowave_noaero_p8_gnu_std_base -Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... -Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK Moving sfcf021.tile2.nc .........OK Moving sfcf021.tile3.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 374.073820 - 0: The maximum resident set size (KB) = 1404512 + 0: The total amount of wall time = 385.798138 + 0: The maximum resident set size (KB) = 1402428 -Test std_base cpld_control_nowave_noaero_p8_gnu PASS +Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Feb 14 05:41:37 UTC 2024 -Elapsed time: 01h:31m:36s. Have a nice day! +Mon Feb 19 15:48:40 UTC 2024 +Elapsed time: 00h:58m:22s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c9c7ed6a19..e5ae1412cf 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,29 +1,29 @@ -Wed Feb 14 01:29:21 UTC 2024 +Mon Feb 19 14:05:32 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_dcp -Checking test dcp regional_control_gnu results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/dcp_dcp +Checking test dcp results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 559.463910 - 0: The maximum resident set size (KB) = 591668 + 0: The total amount of wall time = 514.940897 + 0: The maximum resident set size (KB) = 588032 -Test dcp regional_control_gnu PASS +Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_std_base -Checking test std_base regional_control_gnu results .... -Moving baseline std_base regional_control_gnu files .... +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/std_base_std_base +Checking test std_base results .... +Moving baseline std_base files .... Moving dynf000.nc .........OK Moving dynf006.nc .........OK Moving phyf000.nc .........OK @@ -33,29 +33,29 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 508.581538 - 0: The maximum resident set size (KB) = 592660 + 0: The total amount of wall time = 514.782298 + 0: The maximum resident set size (KB) = 587896 -Test std_base regional_control_gnu PASS +Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_308416/regional_control_gnu_thr -Checking test thr regional_control_gnu results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 511.135763 - 0: The maximum resident set size (KB) = 589920 - -Test thr regional_control_gnu PASS +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/thr_thr +Checking test thr results .... + Comparing dynf000.nc .....USING NCCMP......OK + Comparing dynf006.nc .....USING NCCMP......OK + Comparing phyf000.nc .....USING NCCMP......OK + Comparing phyf006.nc .....USING NCCMP......OK + Comparing PRSLEV.GrbF00 .....USING CMP......OK + Comparing PRSLEV.GrbF06 .....USING CMP......OK + Comparing NATLEV.GrbF00 .....USING CMP......OK + Comparing NATLEV.GrbF06 .....USING CMP......OK + + 0: The total amount of wall time = 515.415577 + 0: The maximum resident set size (KB) = 587940 + +Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Feb 14 02:06:37 UTC 2024 -Elapsed time: 00h:37m:19s. Have a nice day! +Mon Feb 19 14:42:44 UTC 2024 +Elapsed time: 00h:37m:13s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 6890dc893d..1949d65587 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,5851 +1,297 @@ -Tue Feb 13 20:55:05 UTC 2024 -Start Regression test +====START OF ACORN REGRESSION TESTING LOG==== -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +UFSWM hash used in testing: +681a70733ad51929905514527b6d5a497cd17776 + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 512 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 184 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 506 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 561 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 518 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 527 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 535 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 452 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 544 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 569 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 207 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 573 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 568 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile ifi_intel elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 624 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 517 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 551 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 688 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 612 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 228 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 901 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 891 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 613 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 575 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 215 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 931 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 173 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 494 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 320.583545 -The maximum resident set size (KB) = 2972576 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 901.799342 -The maximum resident set size (KB) = 1588508 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - -The total amount of wall time = 974.923853 -The maximum resident set size (KB) = 1720608 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 453.147966 -The maximum resident set size (KB) = 850788 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 1050.571882 -The maximum resident set size (KB) = 1583444 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 1399.707911 -The maximum resident set size (KB) = 1595160 - -Test 006 cpld_debug_gfsv17_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 362.865109 -The maximum resident set size (KB) = 3004020 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 364.769886 -The maximum resident set size (KB) = 3003128 - -Test 008 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 213.080535 -The maximum resident set size (KB) = 3059576 - -Test 009 cpld_restart_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 365.772763 -The maximum resident set size (KB) = 3025532 - -Test 010 cpld_control_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 218.157201 -The maximum resident set size (KB) = 3079728 - -Test 011 cpld_restart_qr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_2threads_p8_intel -Checking test 012 cpld_2threads_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 324.432111 -The maximum resident set size (KB) = 3313180 - -Test 012 cpld_2threads_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_decomp_p8_intel -Checking test 013 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 358.722397 -The maximum resident set size (KB) = 2998228 - -Test 013 cpld_decomp_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_p8_intel -Checking test 014 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 302.284206 -The maximum resident set size (KB) = 2927044 - -Test 014 cpld_mpi_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_ciceC_p8_intel -Checking test 015 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 365.707176 -The maximum resident set size (KB) = 3004176 - -Test 015 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_s2sa_p8_intel -Checking test 016 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 342.533134 -The maximum resident set size (KB) = 2967192 - -Test 016 cpld_s2sa_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_intel -Checking test 017 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 270.199657 -The maximum resident set size (KB) = 1589104 - -Test 017 cpld_control_noaero_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_nowave_noaero_p8_intel -Checking test 018 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 275.006469 -The maximum resident set size (KB) = 1642404 - -Test 018 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_noaero_p8_agrid_intel -Checking test 019 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 276.189323 -The maximum resident set size (KB) = 1640476 - -Test 019 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_c48_intel -Checking test 020 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 406.266867 -The maximum resident set size (KB) = 2648452 - -Test 020 cpld_control_c48_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_p8_faster_intel -Checking test 021 cpld_control_p8_faster_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 356.457787 -The maximum resident set size (KB) = 3000956 - -Test 021 cpld_control_p8_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_control_pdlib_p8_intel -Checking test 022 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 918.591947 -The maximum resident set size (KB) = 1610356 - -Test 022 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_restart_pdlib_p8_intel -Checking test 023 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 459.042002 -The maximum resident set size (KB) = 911180 - -Test 023 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_mpi_pdlib_p8_intel -Checking test 024 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 1067.175522 -The maximum resident set size (KB) = 1588248 - -Test 024 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/cpld_debug_pdlib_p8_intel -Checking test 025 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 1492.573145 -The maximum resident set size (KB) = 1619396 - -Test 025 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_flake_intel -Checking test 026 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 212.425640 -The maximum resident set size (KB) = 577640 - -Test 026 control_flake_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_intel -Checking test 027 control_CubedSphereGrid_intel 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 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 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 - -The total amount of wall time = 131.386684 -The maximum resident set size (KB) = 526392 - -Test 027 control_CubedSphereGrid_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_parallel_intel -Checking test 028 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 136.694364 -The maximum resident set size (KB) = 537332 - -Test 028 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_latlon_intel -Checking test 029 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 132.333839 -The maximum resident set size (KB) = 528304 - -Test 029 control_latlon_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_intel -Checking test 030 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 134.767542 -The maximum resident set size (KB) = 528816 - -Test 030 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48_intel -Checking test 031 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 329.365162 -The maximum resident set size (KB) = 719448 - -Test 031 control_c48_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c48.v2.sfc_intel -Checking test 032 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 329.463873 -The maximum resident set size (KB) = 719856 - -Test 032 control_c48.v2.sfc_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c192_intel -Checking test 033 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 527.742681 -The maximum resident set size (KB) = 646284 - -Test 033 control_c192_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384_intel -Checking test 034 control_c384_intel 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 = 583.500948 -The maximum resident set size (KB) = 962448 - -Test 034 control_c384_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_c384gdas_intel -Checking test 035 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 515.564583 -The maximum resident set size (KB) = 1097384 - -Test 035 control_c384gdas_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_intel -Checking test 036 control_stochy_intel 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 = 87.837103 -The maximum resident set size (KB) = 538000 - -Test 036 control_stochy_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_restart_intel -Checking test 037 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 49.563804 -The maximum resident set size (KB) = 335200 - -Test 037 control_stochy_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_intel -Checking test 038 control_lndp_intel 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 = 84.153988 -The maximum resident set size (KB) = 531396 - -Test 038 control_lndp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr4_intel -Checking test 039 control_iovr4_intel 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 - -The total amount of wall time = 132.889405 -The maximum resident set size (KB) = 527212 - -Test 039 control_iovr4_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_iovr5_intel -Checking test 040 control_iovr5_intel 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 - -The total amount of wall time = 132.853333 -The maximum resident set size (KB) = 531036 - -Test 040 control_iovr5_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_intel -Checking test 041 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 162.156825 -The maximum resident set size (KB) = 1509992 - -Test 041 control_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8.v2.sfc_intel -Checking test 042 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 161.953549 -The maximum resident set size (KB) = 1502732 - -Test 042 control_p8.v2.sfc_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_ugwpv1_intel -Checking test 043 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 160.401269 -The maximum resident set size (KB) = 1516136 - -Test 043 control_p8_ugwpv1_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_intel -Checking test 044 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 90.183429 -The maximum resident set size (KB) = 694940 - -Test 044 control_restart_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_noqr_p8_intel -Checking test 045 control_noqr_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 162.797982 -The maximum resident set size (KB) = 1499940 - -Test 045 control_noqr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_noqr_p8_intel -Checking test 046 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 87.900642 -The maximum resident set size (KB) = 699552 - -Test 046 control_restart_noqr_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_decomp_p8_intel -Checking test 047 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 166.882279 -The maximum resident set size (KB) = 1506664 - -Test 047 control_decomp_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_2threads_p8_intel -Checking test 048 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 142.974058 -The maximum resident set size (KB) = 1588264 - -Test 048 control_2threads_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_lndp_intel -Checking test 049 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 292.615876 -The maximum resident set size (KB) = 1505996 - -Test 049 control_p8_lndp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_rrtmgp_intel -Checking test 050 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 218.092373 -The maximum resident set size (KB) = 1561024 - -Test 050 control_p8_rrtmgp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_mynn_intel -Checking test 051 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 165.718800 -The maximum resident set size (KB) = 1513556 - -Test 051 control_p8_mynn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/merra2_thompson_intel -Checking test 052 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 197.063639 -The maximum resident set size (KB) = 1510884 - -Test 052 merra2_thompson_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_intel -Checking test 053 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 281.547353 -The maximum resident set size (KB) = 612740 - -Test 053 regional_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_restart_intel -Checking test 054 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 154.229868 -The maximum resident set size (KB) = 779896 - -Test 054 regional_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_decomp_intel -Checking test 055 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 298.617670 -The maximum resident set size (KB) = 611504 - -Test 055 regional_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2threads_intel -Checking test 056 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 172.744636 -The maximum resident set size (KB) = 666676 - -Test 056 regional_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_noquilt_intel -Checking test 057 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -The total amount of wall time = 276.876585 -The maximum resident set size (KB) = 1148844 - -Test 057 regional_noquilt_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_2dwrtdecomp_intel -Checking test 058 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 284.198888 -The maximum resident set size (KB) = 612640 - -Test 058 regional_2dwrtdecomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_wofs_intel -Checking test 059 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 372.331648 -The maximum resident set size (KB) = 1585356 - -Test 059 regional_wofs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_control_intel -Checking test 060 regional_ifi_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 314.278095 -The maximum resident set size (KB) = 611780 - -Test 060 regional_ifi_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_decomp_intel -Checking test 061 regional_ifi_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 330.518680 -The maximum resident set size (KB) = 611004 - -Test 061 regional_ifi_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_ifi_2threads_intel -Checking test 062 regional_ifi_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 191.814831 -The maximum resident set size (KB) = 663552 - -Test 062 regional_ifi_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_intel -Checking test 063 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 404.139433 -The maximum resident set size (KB) = 917148 - -Test 063 rap_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_intel -Checking test 064 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 238.614743 -The maximum resident set size (KB) = 1099324 - -Test 064 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_decomp_intel -Checking test 065 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 420.342724 -The maximum resident set size (KB) = 917176 - -Test 065 rap_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_intel -Checking test 066 rap_2threads_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 369.944418 -The maximum resident set size (KB) = 1003028 - -Test 066 rap_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_intel -Checking test 067 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 208.230702 -The maximum resident set size (KB) = 787668 - -Test 067 rap_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_intel -Checking test 068 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 404.037357 -The maximum resident set size (KB) = 910668 - -Test 068 rap_sfcdiff_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_decomp_intel -Checking test 069 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 419.821399 -The maximum resident set size (KB) = 910936 - -Test 069 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_restart_intel -Checking test 070 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 302.542040 -The maximum resident set size (KB) = 786160 - -Test 070 rap_sfcdiff_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_intel -Checking test 071 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 207.422949 -The maximum resident set size (KB) = 907440 - -Test 071 hrrr_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_intel -Checking test 072 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 211.266940 -The maximum resident set size (KB) = 908928 - -Test 072 hrrr_control_decomp_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_intel -Checking test 073 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 185.765973 -The maximum resident set size (KB) = 984068 - -Test 073 hrrr_control_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_intel -Checking test 074 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 109.444178 -The maximum resident set size (KB) = 743616 - -Test 074 hrrr_control_restart_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_intel -Checking test 075 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 396.973313 -The maximum resident set size (KB) = 903656 - -Test 075 rrfs_v1beta_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_intel -Checking test 076 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 483.985501 -The maximum resident set size (KB) = 1871016 - -Test 076 rrfs_v1nssl_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1nssl_nohailnoccn_intel -Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 468.624004 -The maximum resident set size (KB) = 1859480 - -Test 077 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_intel -Checking test 078 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 336.283994 -The maximum resident set size (KB) = 606300 - -Test 078 control_csawmg_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_intel -Checking test 079 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 332.691438 -The maximum resident set size (KB) = 602368 - -Test 079 control_csawmgt_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_intel -Checking test 080 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 119.382718 -The maximum resident set size (KB) = 273604 - -Test 080 control_wam_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_faster_intel -Checking test 081 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 156.497008 -The maximum resident set size (KB) = 1500872 - -Test 081 control_p8_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_control_faster_intel -Checking test 082 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 272.768730 -The maximum resident set size (KB) = 605424 - -Test 082 regional_control_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_CubedSphereGrid_debug_intel -Checking test 083 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 160.015649 -The maximum resident set size (KB) = 685740 - -Test 083 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 084 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 157.546243 -The maximum resident set size (KB) = 686840 - -Test 084 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_stochy_debug_intel -Checking test 085 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 179.804539 -The maximum resident set size (KB) = 692976 - -Test 085 control_stochy_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_lndp_debug_intel -Checking test 086 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 161.841649 -The maximum resident set size (KB) = 691400 - -Test 086 control_lndp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmg_debug_intel -Checking test 087 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 249.947359 -The maximum resident set size (KB) = 728084 - -Test 087 control_csawmg_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_csawmgt_debug_intel -Checking test 088 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 246.536305 -The maximum resident set size (KB) = 731928 - -Test 088 control_csawmgt_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_ras_debug_intel -Checking test 089 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 162.918826 -The maximum resident set size (KB) = 699560 - -Test 089 control_ras_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_diag_debug_intel -Checking test 090 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 164.525885 -The maximum resident set size (KB) = 750820 - -Test 090 control_diag_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_debug_p8_intel -Checking test 091 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 167.141659 -The maximum resident set size (KB) = 1519644 - -Test 091 control_debug_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_debug_intel -Checking test 092 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 1046.652034 -The maximum resident set size (KB) = 636352 - -Test 092 regional_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_intel -Checking test 093 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 299.583165 -The maximum resident set size (KB) = 1072896 - -Test 093 rap_control_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_intel -Checking test 094 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 293.074200 -The maximum resident set size (KB) = 1066068 - -Test 094 hrrr_control_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_gf_debug_intel -Checking test 095 hrrr_gf_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 298.226129 -The maximum resident set size (KB) = 1076576 - -Test 095 hrrr_gf_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_c3_debug_intel -Checking test 096 hrrr_c3_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 298.620112 -The maximum resident set size (KB) = 1076948 - -Test 096 hrrr_c3_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_drag_suite_debug_intel -Checking test 097 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 300.449765 -The maximum resident set size (KB) = 1072792 - -Test 097 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_diag_debug_intel -Checking test 098 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 313.037681 -The maximum resident set size (KB) = 1155780 - -Test 098 rap_diag_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_cires_ugwp_debug_intel -Checking test 099 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 305.872024 -The maximum resident set size (KB) = 1075240 - -Test 099 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_unified_ugwp_debug_intel -Checking test 100 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 305.344272 -The maximum resident set size (KB) = 1079696 - -Test 100 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_lndp_debug_intel -Checking test 101 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 301.838610 -The maximum resident set size (KB) = 1076408 - -Test 101 rap_lndp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_progcld_thompson_debug_intel -Checking test 102 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 300.022365 -The maximum resident set size (KB) = 1072432 - -Test 102 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_debug_intel -Checking test 103 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 293.658661 -The maximum resident set size (KB) = 1074016 - -Test 103 rap_noah_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_sfcdiff_debug_intel -Checking test 104 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 299.824717 -The maximum resident set size (KB) = 1072920 - -Test 104 rap_sfcdiff_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 490.771679 -The maximum resident set size (KB) = 1075128 - -Test 105 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rrfs_v1beta_debug_intel -Checking test 106 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 294.072021 -The maximum resident set size (KB) = 1064612 - -Test 106 rrfs_v1beta_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_clm_lake_debug_intel -Checking test 107 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 351.370858 -The maximum resident set size (KB) = 1074324 - -Test 107 rap_clm_lake_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_flake_debug_intel -Checking test 108 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 302.887751 -The maximum resident set size (KB) = 1072304 - -Test 108 rap_flake_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_c96_no_nest_debug_intel -Checking test 109 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 526.510557 -The maximum resident set size (KB) = 1078572 - -Test 109 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_wam_debug_intel -Checking test 110 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -The total amount of wall time = 299.016847 -The maximum resident set size (KB) = 299136 - -Test 110 control_wam_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 226.914977 -The maximum resident set size (KB) = 960248 - -Test 111 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn32_phy32_intel -Checking test 112 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 335.157411 -The maximum resident set size (KB) = 794408 - -Test 112 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_dyn32_phy32_intel -Checking test 113 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 175.437514 -The maximum resident set size (KB) = 791508 - -Test 113 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_2threads_dyn32_phy32_intel -Checking test 114 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 306.899439 -The maximum resident set size (KB) = 856812 - -Test 114 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_2threads_dyn32_phy32_intel -Checking test 115 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 160.316286 -The maximum resident set size (KB) = 846172 - -Test 115 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_decomp_dyn32_phy32_intel -Checking test 116 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 183.284931 -The maximum resident set size (KB) = 790480 - -Test 116 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_restart_dyn32_phy32_intel -Checking test 117 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 250.436915 -The maximum resident set size (KB) = 692492 - -Test 117 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_restart_dyn32_phy32_intel -Checking test 118 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 93.137371 -The maximum resident set size (KB) = 676932 - -Test 118 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_control_intel -Checking test 119 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 116.922325 -The maximum resident set size (KB) = 1007600 - -Test 119 conus13km_control_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_2threads_intel -Checking test 120 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 60.646438 -The maximum resident set size (KB) = 1006948 - -Test 120 conus13km_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_restart_mismatch_intel -Checking test 121 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 70.187236 -The maximum resident set size (KB) = 881616 - -Test 121 conus13km_restart_mismatch_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_intel -Checking test 122 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 229.114228 -The maximum resident set size (KB) = 818692 - -Test 122 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_debug_dyn32_phy32_intel -Checking test 123 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 293.962733 -The maximum resident set size (KB) = 955588 - -Test 123 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hrrr_control_debug_dyn32_phy32_intel -Checking test 124 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 287.342628 -The maximum resident set size (KB) = 950560 - -Test 124 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_intel -Checking test 125 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 883.460989 -The maximum resident set size (KB) = 1036696 - -Test 125 conus13km_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_qr_intel -Checking test 126 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - -The total amount of wall time = 888.108565 -The maximum resident set size (KB) = 706376 - -Test 126 conus13km_debug_qr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_debug_2threads_intel -Checking test 127 conus13km_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 507.466675 -The maximum resident set size (KB) = 1036128 - -Test 127 conus13km_debug_2threads_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/conus13km_radar_tten_debug_intel -Checking test 128 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 884.270449 -The maximum resident set size (KB) = 1106296 - -Test 128 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/rap_control_dyn64_phy32_debug_intel -Checking test 129 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 296.714289 -The maximum resident set size (KB) = 976420 - -Test 129 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_intel -Checking test 130 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -The total amount of wall time = 343.708225 -The maximum resident set size (KB) = 620344 - -Test 130 hafs_regional_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 131 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -The total amount of wall time = 310.750633 -The maximum resident set size (KB) = 971820 - -Test 131 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_intel -Checking test 132 hafs_regional_atm_ocn_intel 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 - -The total amount of wall time = 427.135080 -The maximum resident set size (KB) = 666972 - -Test 132 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_wav_intel -Checking test 133 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 750.280372 -The maximum resident set size (KB) = 697912 - -Test 133 hafs_regional_atm_wav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_atm_ocn_wav_intel -Checking test 134 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 943.861252 -The maximum resident set size (KB) = 707740 - -Test 134 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_1nest_atm_intel -Checking test 135 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 318.300582 -The maximum resident set size (KB) = 391780 - -Test 135 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_telescopic_2nests_atm_intel -Checking test 136 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -The total amount of wall time = 406.481503 -The maximum resident set size (KB) = 419540 - -Test 136 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_1nest_atm_intel -Checking test 137 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 172.062043 -The maximum resident set size (KB) = 287092 - -Test 137 hafs_global_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_multiple_4nests_atm_intel -Checking test 138 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 482.747395 -The maximum resident set size (KB) = 373076 - -Test 138 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_specified_moving_1nest_atm_intel -Checking test 139 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -The total amount of wall time = 220.258526 -The maximum resident set size (KB) = 417436 - -Test 139 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 205.579863 -The maximum resident set size (KB) = 417588 - -Test 140 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -The total amount of wall time = 263.044010 -The maximum resident set size (KB) = 493596 - -Test 141 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_global_storm_following_1nest_atm_intel -Checking test 142 hafs_global_storm_following_1nest_atm_intel 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 = 90.653026 -The maximum resident set size (KB) = 312096 - -Test 142 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/gnv1_nested_intel -Checking test 143 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 236.838277 -The maximum resident set size (KB) = 678924 - -Test 143 gnv1_nested_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -The total amount of wall time = 814.688929 -The maximum resident set size (KB) = 507896 - -Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 518.877349 -The maximum resident set size (KB) = 529744 - -Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 523.529442 -The maximum resident set size (KB) = 713304 - -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - -The total amount of wall time = 384.296917 -The maximum resident set size (KB) = 711192 - -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel 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 - -The total amount of wall time = 391.242461 -The maximum resident set size (KB) = 662384 - -Test 148 hafs_regional_docn_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel 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 - -The total amount of wall time = 399.081884 -The maximum resident set size (KB) = 651244 - -Test 149 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel 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 = 948.178874 -The maximum resident set size (KB) = 882836 - -Test 150 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_intel -Checking test 151 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 142.737231 -The maximum resident set size (KB) = 739148 - -Test 151 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_restart_cfsr_intel -Checking test 152 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 85.767235 -The maximum resident set size (KB) = 737496 - -Test 152 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_gefs_intel -Checking test 153 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 134.225087 -The maximum resident set size (KB) = 630348 - -Test 153 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_iau_gefs_intel -Checking test 154 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 136.027695 -The maximum resident set size (KB) = 627288 - -Test 154 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_stochy_gefs_intel -Checking test 155 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 138.189035 -The maximum resident set size (KB) = 630032 - -Test 155 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_ciceC_cfsr_intel -Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 142.858978 -The maximum resident set size (KB) = 736528 - -Test 156 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_cfsr_intel -Checking test 157 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 143.675144 -The maximum resident set size (KB) = 750240 - -Test 157 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_bulk_gefs_intel -Checking test 158 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 134.471235 -The maximum resident set size (KB) = 629816 - -Test 158 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_cfsr_intel -Checking test 159 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 339.570269 -The maximum resident set size (KB) = 594880 - -Test 159 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_mx025_gefs_intel -Checking test 160 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 337.599507 -The maximum resident set size (KB) = 578192 - -Test 160 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_multiple_files_cfsr_intel -Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 143.009275 -The maximum resident set size (KB) = 750628 - -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_3072x1536_cfsr_intel -Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 262.534235 -The maximum resident set size (KB) = 2008420 - -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_gfs_intel -Checking test 163 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 262.895755 -The maximum resident set size (KB) = 2006316 - -Test 163 datm_cdeps_gfs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_control_cfsr_faster_intel -Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 142.374074 -The maximum resident set size (KB) = 748508 - -Test 164 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_gswp3_intel -Checking test 165 datm_cdeps_lnd_gswp3_intel 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 = 57.476005 -The maximum resident set size (KB) = 225536 - -Test 165 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_intel -Checking test 166 datm_cdeps_lnd_era5_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - -The total amount of wall time = 58.564024 -The maximum resident set size (KB) = 368616 - -Test 166 datm_cdeps_lnd_era5_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/datm_cdeps_lnd_era5_rst_intel -Checking test 167 datm_cdeps_lnd_era5_rst_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - -The total amount of wall time = 43.292506 -The maximum resident set size (KB) = 369724 - -Test 167 datm_cdeps_lnd_era5_rst_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_sbs_intel -Checking test 168 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 276.384205 -The maximum resident set size (KB) = 1551876 - -Test 168 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_p8_atmlnd_intel -Checking test 169 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 277.102019 -The maximum resident set size (KB) = 1552436 - -Test 169 control_p8_atmlnd_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_restart_p8_atmlnd_intel -Checking test 170 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 152.901236 -The maximum resident set size (KB) = 741672 - -Test 170 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmwav_control_noaero_p8_intel -Checking test 171 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - -The total amount of wall time = 99.922005 -The maximum resident set size (KB) = 1545684 - -Test 171 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/control_atmwav_intel -Checking test 172 control_atmwav_intel 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 - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - -The total amount of wall time = 91.869972 -The maximum resident set size (KB) = 544992 - -Test 172 control_atmwav_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_intel -Checking test 173 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 236.391729 -The maximum resident set size (KB) = 2855088 - -Test 173 atmaero_control_p8_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_intel -Checking test 174 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 275.218701 -The maximum resident set size (KB) = 2910584 - -Test 174 atmaero_control_p8_rad_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/atmaero_control_p8_rad_micro_intel -Checking test 175 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 290.955954 -The maximum resident set size (KB) = 2923376 - -Test 175 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_37026/regional_atmaq_debug_intel -Checking test 176 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - -The total amount of wall time = 1320.468838 -The maximum resident set size (KB) = 4431444 - -Test 176 regional_atmaq_debug_intel PASS -REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 22:50:28 UTC 2024 -Elapsed time: 01h:55m:24s. Have a nice day! +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_93964 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [10:30, 10:13] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [53:37, 01:21](2973 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:44, 17:13] +PASS -- TEST 'cpld_control_gfsv17_intel' [45:51, 01:24](1593 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:19, 01:23](1720 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:07, 01:23](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [44:53, 01:41](1570 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:30] +PASS -- TEST 'cpld_debug_gfsv17_intel' [58:48, 02:08](1607 MB) + +PASS -- COMPILE 's2swa_intel' [10:30, 10:12] +PASS -- TEST 'cpld_control_p8_intel' [53:37, 00:52](3004 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [53:37, 01:41](2999 MB) +PASS -- TEST 'cpld_restart_p8_intel' [38:53, 01:18](3060 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [53:37, 01:46](3027 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [37:44, 00:53](3077 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [53:37, 01:15](3315 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [53:37, 01:43](2997 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [53:38, 01:36](2927 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [53:37, 01:37](3003 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [53:37, 01:06](2967 MB) + +PASS -- COMPILE 's2sw_intel' [10:30, 09:53] +PASS -- TEST 'cpld_control_noaero_p8_intel' [53:37, 00:53](1588 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [53:37, 01:01](1637 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:28, 09:11] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [54:39, 01:00](1635 MB) + +PASS -- COMPILE 's2s_intel' [12:34, 11:41] +PASS -- TEST 'cpld_control_c48_intel' [51:32, 01:12](2650 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:40, 15:01] +PASS -- TEST 'cpld_control_p8_faster_intel' [48:25, 01:38](3002 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:40, 15:29] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:13, 00:46](1609 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:14, 01:20](912 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:31, 01:24](1589 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:17, 03:37] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [59:51, 01:07](1617 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:29, 09:13] +PASS -- TEST 'control_flake_intel' [50:21, 00:15](576 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [50:21, 01:04](526 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [50:21, 01:09](531 MB) +PASS -- TEST 'control_latlon_intel' [50:21, 00:38](526 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [50:21, 00:40](530 MB) +PASS -- TEST 'control_c48_intel' [50:20, 01:02](722 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [50:20, 01:14](721 MB) +PASS -- TEST 'control_c192_intel' [50:21, 01:13](642 MB) +PASS -- TEST 'control_c384_intel' [50:25, 00:57](956 MB) +PASS -- TEST 'control_c384gdas_intel' [50:25, 01:43](1099 MB) +PASS -- TEST 'control_stochy_intel' [50:21, 01:07](537 MB) +PASS -- TEST 'control_stochy_restart_intel' [31:14, 00:48](337 MB) +PASS -- TEST 'control_lndp_intel' [50:21, 01:10](532 MB) +PASS -- TEST 'control_iovr4_intel' [50:21, 00:35](529 MB) +PASS -- TEST 'control_iovr5_intel' [50:21, 00:40](528 MB) +PASS -- TEST 'control_p8_intel' [50:21, 01:26](1507 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [47:00, 01:04](1501 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [44:51, 01:03](1513 MB) +PASS -- TEST 'control_restart_p8_intel' [29:23, 01:04](696 MB) +PASS -- TEST 'control_noqr_p8_intel' [42:24, 00:58](1495 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [28:06, 00:50](703 MB) +PASS -- TEST 'control_decomp_p8_intel' [39:45, 01:10](1501 MB) +PASS -- TEST 'control_2threads_p8_intel' [39:42, 01:33](1590 MB) +PASS -- TEST 'control_p8_lndp_intel' [38:29, 01:06](1512 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [36:46, 01:48](1559 MB) +PASS -- TEST 'control_p8_mynn_intel' [34:15, 00:55](1512 MB) +PASS -- TEST 'merra2_thompson_intel' [34:12, 01:17](1514 MB) +PASS -- TEST 'regional_control_intel' [33:32, 00:26](609 MB) +PASS -- TEST 'regional_restart_intel' [27:43, 00:46](783 MB) +PASS -- TEST 'regional_decomp_intel' [33:19, 00:56](611 MB) +PASS -- TEST 'regional_2threads_intel' [32:56, 01:01](673 MB) +PASS -- TEST 'regional_noquilt_intel' [32:47, 00:57](1148 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [32:27, 00:47](610 MB) +PASS -- TEST 'regional_wofs_intel' [32:14, 00:35](1582 MB) + +PASS -- COMPILE 'ifi_intel' [08:27, 07:59] +PASS -- TEST 'regional_ifi_control_intel' [31:13, 00:48](614 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [31:12, 01:08](609 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [31:10, 00:33](668 MB) + +PASS -- COMPILE 'rrfs_intel' [09:29, 08:30] +PASS -- TEST 'rap_control_intel' [31:10, 01:07](912 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:09, 00:39](1091 MB) +PASS -- TEST 'rap_decomp_intel' [30:24, 00:44](916 MB) +PASS -- TEST 'rap_2threads_intel' [28:10, 01:11](1005 MB) +PASS -- TEST 'rap_restart_intel' [18:36, 01:26](788 MB) +PASS -- TEST 'rap_sfcdiff_intel' [28:04, 01:08](913 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:24, 00:48](912 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [16:30, 01:50](784 MB) +PASS -- TEST 'hrrr_control_intel' [27:24, 01:30](908 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [26:09, 01:07](907 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [25:25, 01:58](992 MB) +PASS -- TEST 'hrrr_control_restart_intel' [18:54, 01:13](745 MB) +PASS -- TEST 'rrfs_v1beta_intel' [24:47, 01:36](910 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [24:29, 00:31](1873 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:22, 00:56](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [09:29, 08:23] +PASS -- TEST 'control_csawmg_intel' [24:03, 01:16](603 MB) +PASS -- TEST 'control_csawmgt_intel' [24:00, 00:57](599 MB) + +PASS -- COMPILE 'wam_intel' [08:27, 08:06] +PASS -- TEST 'control_wam_intel' [23:50, 00:18](273 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:29, 08:39] +PASS -- TEST 'control_p8_faster_intel' [23:34, 01:46](1513 MB) +PASS -- TEST 'regional_control_faster_intel' [23:30, 00:12](610 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:23, 03:51] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:07, 00:59](685 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:01, 01:11](688 MB) +PASS -- TEST 'control_stochy_debug_intel' [21:58, 01:04](694 MB) +PASS -- TEST 'control_lndp_debug_intel' [21:58, 00:35](693 MB) +PASS -- TEST 'control_csawmg_debug_intel' [21:17, 00:25](727 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [19:29, 00:41](731 MB) +PASS -- TEST 'control_ras_debug_intel' [18:54, 00:15](701 MB) +PASS -- TEST 'control_diag_debug_intel' [18:19, 00:25](746 MB) +PASS -- TEST 'control_debug_p8_intel' [17:13, 01:07](1517 MB) +PASS -- TEST 'regional_debug_intel' [17:02, 00:44](628 MB) +PASS -- TEST 'rap_control_debug_intel' [16:15, 01:14](1071 MB) +PASS -- TEST 'hrrr_control_debug_intel' [14:24, 00:16](1067 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [14:20, 00:50](1068 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:16, 00:38](1069 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [14:06, 00:36](1075 MB) +PASS -- TEST 'rap_diag_debug_intel' [13:45, 00:47](1157 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [13:27, 00:48](1075 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [13:21, 00:36](1071 MB) +PASS -- TEST 'rap_lndp_debug_intel' [13:21, 00:38](1075 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:03, 00:57](1075 MB) +PASS -- TEST 'rap_noah_debug_intel' [12:46, 00:31](1067 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:36, 01:07](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:29, 00:24](1071 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:39, 00:13](1063 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:28, 00:58](1073 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:14, 00:27](1074 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:06, 01:36](1079 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:21, 02:47] +PASS -- TEST 'control_wam_debug_intel' [08:04, 00:19](300 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:38, 08:12] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:52, 01:04](963 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 02:03](795 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 01:30](794 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:45, 02:02](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:43, 02:08](839 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 01:44](792 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:09, 00:50](692 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [57:54, 00:45](671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:53, 10:22] +PASS -- TEST 'conus13km_control_intel' [06:01, 00:45](1007 MB) +PASS -- TEST 'conus13km_2threads_intel' [58:02, 00:27](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [58:01, 01:13](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [17:48, 08:19] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:53, 00:41](816 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [50:59, 03:00] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [55:23, 01:13](949 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [55:23, 00:15](954 MB) +PASS -- TEST 'conus13km_debug_intel' [55:23, 00:32](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [55:23, 00:36](706 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [55:24, 00:44](1036 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [55:23, 00:35](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:59, 02:54] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [55:10, 01:09](974 MB) + +PASS -- COMPILE 'hafsw_intel' [57:15, 09:28] +PASS -- TEST 'hafs_regional_atm_intel' [47:56, 01:55](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [47:56, 00:55](968 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [47:54, 01:32](663 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [47:54, 02:00](704 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [47:55, 01:43](708 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [47:54, 00:43](391 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [47:55, 01:46](409 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [47:55, 01:36](290 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [47:58, 01:55](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [47:54, 01:16](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [47:54, 01:28](419 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [47:56, 01:03](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [47:55, 00:43](316 MB) +PASS -- TEST 'gnv1_nested_intel' [47:55, 01:13](680 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [51:02, 03:23] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [54:10, 01:03](507 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [58:16, 09:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [46:46, 01:19](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [46:46, 01:31](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [57:16, 09:22] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [46:54, 01:42](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [57:16, 09:03] +PASS -- TEST 'hafs_regional_docn_intel' [46:52, 01:58](668 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [46:52, 01:46](652 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:50, 00:31](882 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [50:00, 08:36] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [46:40, 01:09](750 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [41:11, 01:07](727 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [46:24, 00:10](630 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [45:19, 00:56](632 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [42:26, 00:29](628 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [41:48, 00:40](747 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [40:09, 01:01](748 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [39:56, 00:47](630 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [39:08, 00:42](592 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [39:02, 00:51](576 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [39:01, 01:08](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [38:49, 00:43](2012 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [36:59, 00:48](1950 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [43:46, 08:16] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [46:51, 00:15](751 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [34:23, 00:57] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:10, 00:25](226 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:10, 00:43](368 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [47:35, 00:52](369 MB) + +PASS -- COMPILE 'atml_intel' [10:30, 09:42] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [36:47, 01:16](1552 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [36:25, 01:13](1550 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [16:28, 00:25](746 MB) + +PASS -- COMPILE 'atmw_intel' [09:30, 08:48] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [35:47, 00:53](1542 MB) + +PASS -- COMPILE 'atmwm_intel' [09:31, 08:32] +PASS -- TEST 'control_atmwav_intel' [35:23, 01:22](544 MB) + +PASS -- COMPILE 'atmaero_intel' [09:31, 08:34] +PASS -- TEST 'atmaero_control_p8_intel' [34:59, 01:18](2850 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [34:32, 01:12](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [34:29, 01:45](2922 MB) + +PASS -- COMPILE 'atmaq_intel' [09:29, 08:23] + +PASS -- COMPILE 'atmaq_debug_intel' [13:37, 03:06] +PASS -- TEST 'regional_atmaq_debug_intel' [33:15, 00:48](4430 MB) + +SYNOPSIS: +Starting Date/Time: 20240220 12:55:39 +Ending Date/Time: 20240220 15:02:33 +Total Time: 02h:07m:09s +Compiles Completed: 37/37 +Tests Completed: 176/176 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF ACORN REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index a52b9fc8cf..197ca0d90c 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,5663 +1,292 @@ -Tue 13 Feb 2024 03:11:27 PM MST -Start Regression test +====START OF DERECHO REGRESSION TESTING LOG==== -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +UFSWM hash used in testing: +681a70733ad51929905514527b6d5a497cd17776 + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 668 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 689 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 556 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 754 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 774 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 769 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 768 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 341 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 579 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 477 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 160 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 881 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 1018 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 559 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 1176 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 983 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 831 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 509 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 612 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 894 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 936 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1254 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 749 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1359 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 615 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1201 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 567 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1156 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 666 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1321 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 355 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 287.254314 -The maximum resident set size (KB) = 3072604 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 813.470157 -The maximum resident set size (KB) = 1676184 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - -The total amount of wall time = 910.181925 -The maximum resident set size (KB) = 1817456 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 441.345176 -The maximum resident set size (KB) = 956064 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 934.102717 -The maximum resident set size (KB) = 1658572 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 1297.227880 -The maximum resident set size (KB) = 1696772 - -Test 006 cpld_debug_gfsv17_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 332.290618 -The maximum resident set size (KB) = 3094800 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 329.571265 -The maximum resident set size (KB) = 3094048 - -Test 008 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 193.709056 -The maximum resident set size (KB) = 3149116 - -Test 009 cpld_restart_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 325.601120 -The maximum resident set size (KB) = 3126328 - -Test 010 cpld_control_qr_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 194.380642 -The maximum resident set size (KB) = 3179204 - -Test 011 cpld_restart_qr_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 327.758742 -The maximum resident set size (KB) = 3089652 - -Test 012 cpld_decomp_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 269.560931 -The maximum resident set size (KB) = 3395808 - -Test 013 cpld_mpi_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 324.251159 -The maximum resident set size (KB) = 3099092 - -Test 014 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c192_p8_intel -Checking test 015 cpld_control_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 = 525.406322 -The maximum resident set size (KB) = 3634228 - -Test 015 cpld_control_c192_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_c192_p8_intel -Checking test 016 cpld_restart_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 = 351.476175 -The maximum resident set size (KB) = 3614552 - -Test 016 cpld_restart_c192_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_s2sa_p8_intel -Checking test 017 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 304.774265 -The maximum resident set size (KB) = 3062348 - -Test 017 cpld_s2sa_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_intel -Checking test 018 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 241.190810 -The maximum resident set size (KB) = 1677764 - -Test 018 cpld_control_noaero_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_nowave_noaero_p8_intel -Checking test 019 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 244.832020 -The maximum resident set size (KB) = 1722108 - -Test 019 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_p8_intel -Checking test 020 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 456.601297 -The maximum resident set size (KB) = 3150724 - -Test 020 cpld_debug_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_noaero_p8_intel -Checking test 021 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 301.016467 -The maximum resident set size (KB) = 1696460 - -Test 021 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_noaero_p8_agrid_intel -Checking test 022 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 247.135439 -The maximum resident set size (KB) = 1721024 - -Test 022 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_c48_intel -Checking test 023 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 391.150267 -The maximum resident set size (KB) = 2665508 - -Test 023 cpld_control_c48_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_control_pdlib_p8_intel -Checking test 024 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 832.000577 -The maximum resident set size (KB) = 1695256 - -Test 024 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_restart_pdlib_p8_intel -Checking test 025 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 436.875358 -The maximum resident set size (KB) = 1115432 - -Test 025 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_mpi_pdlib_p8_intel -Checking test 026 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 950.678674 -The maximum resident set size (KB) = 1666736 - -Test 026 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/cpld_debug_pdlib_p8_intel -Checking test 027 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 1348.056090 -The maximum resident set size (KB) = 1714360 - -Test 027 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_flake_intel -Checking test 028 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 197.885675 -The maximum resident set size (KB) = 666572 - -Test 028 control_flake_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_intel -Checking test 029 control_CubedSphereGrid_intel 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 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 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 - -The total amount of wall time = 116.561731 -The maximum resident set size (KB) = 617504 - -Test 029 control_CubedSphereGrid_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_parallel_intel -Checking test 030 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 121.240894 -The maximum resident set size (KB) = 623180 - -Test 030 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_latlon_intel -Checking test 031 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 117.180024 -The maximum resident set size (KB) = 618180 - -Test 031 control_latlon_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_intel -Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 121.494351 -The maximum resident set size (KB) = 615772 - -Test 032 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48_intel -Checking test 033 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 310.447763 -The maximum resident set size (KB) = 728928 - -Test 033 control_c48_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c48.v2.sfc_intel -Checking test 034 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 307.679009 -The maximum resident set size (KB) = 728796 - -Test 034 control_c48.v2.sfc_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c192_intel -Checking test 035 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 462.463171 -The maximum resident set size (KB) = 734404 - -Test 035 control_c192_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384_intel -Checking test 036 control_c384_intel 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 = 492.477247 -The maximum resident set size (KB) = 1062296 - -Test 036 control_c384_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_c384gdas_intel -Checking test 037 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 444.990483 -The maximum resident set size (KB) = 1197364 - -Test 037 control_c384gdas_intel PASS Tries: 2 - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_intel -Checking test 038 control_stochy_intel 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 = 76.849499 -The maximum resident set size (KB) = 624776 - -Test 038 control_stochy_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_restart_intel -Checking test 039 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 43.106187 -The maximum resident set size (KB) = 435120 - -Test 039 control_stochy_restart_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_intel -Checking test 040 control_lndp_intel 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 = 74.801693 -The maximum resident set size (KB) = 621904 - -Test 040 control_lndp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr4_intel -Checking test 041 control_iovr4_intel 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 - -The total amount of wall time = 117.990170 -The maximum resident set size (KB) = 616824 - -Test 041 control_iovr4_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_iovr5_intel -Checking test 042 control_iovr5_intel 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 - -The total amount of wall time = 117.964044 -The maximum resident set size (KB) = 618400 - -Test 042 control_iovr5_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_intel -Checking test 043 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 142.800335 -The maximum resident set size (KB) = 1591804 - -Test 043 control_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8.v2.sfc_intel -Checking test 044 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 142.134460 -The maximum resident set size (KB) = 1591764 - -Test 044 control_p8.v2.sfc_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_ugwpv1_intel -Checking test 045 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 141.663756 -The maximum resident set size (KB) = 1596412 - -Test 045 control_p8_ugwpv1_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_intel -Checking test 046 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 78.345921 -The maximum resident set size (KB) = 792644 - -Test 046 control_restart_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_noqr_p8_intel -Checking test 047 control_noqr_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 142.993127 -The maximum resident set size (KB) = 1583668 - -Test 047 control_noqr_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_noqr_p8_intel -Checking test 048 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 75.418276 -The maximum resident set size (KB) = 1233084 - -Test 048 control_restart_noqr_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_decomp_p8_intel -Checking test 049 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 146.173162 -The maximum resident set size (KB) = 1595912 - -Test 049 control_decomp_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_lndp_intel -Checking test 050 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 255.827887 -The maximum resident set size (KB) = 1593716 - -Test 050 control_p8_lndp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_rrtmgp_intel -Checking test 051 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 189.288035 -The maximum resident set size (KB) = 1655748 - -Test 051 control_p8_rrtmgp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_mynn_intel -Checking test 052 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 143.920240 -The maximum resident set size (KB) = 1606076 - -Test 052 control_p8_mynn_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/merra2_thompson_intel -Checking test 053 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 171.463875 -The maximum resident set size (KB) = 1602292 - -Test 053 merra2_thompson_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_intel -Checking test 054 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 262.854666 -The maximum resident set size (KB) = 623168 - -Test 054 regional_control_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_restart_intel -Checking test 055 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 141.396684 -The maximum resident set size (KB) = 796584 - -Test 055 regional_restart_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_decomp_intel -Checking test 056 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 275.916489 -The maximum resident set size (KB) = 625832 - -Test 056 regional_decomp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_noquilt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_noquilt_intel -Checking test 057 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -The total amount of wall time = 257.381681 -The maximum resident set size (KB) = 1156736 - -Test 057 regional_noquilt_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_netcdf_parallel_intel -Checking test 058 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - -The total amount of wall time = 263.559213 -The maximum resident set size (KB) = 620612 - -Test 058 regional_netcdf_parallel_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_2dwrtdecomp_intel -Checking test 059 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 260.812041 -The maximum resident set size (KB) = 627064 - -Test 059 regional_2dwrtdecomp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_wofs_intel -Checking test 060 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 328.778858 -The maximum resident set size (KB) = 1594792 - -Test 060 regional_wofs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_intel -Checking test 061 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 356.929009 -The maximum resident set size (KB) = 1003840 - -Test 061 rap_control_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_intel -Checking test 062 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 209.970037 -The maximum resident set size (KB) = 1191824 - -Test 062 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_decomp_intel -Checking test 063 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 372.852716 -The maximum resident set size (KB) = 1004200 - -Test 063 rap_decomp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_intel -Checking test 064 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 185.798213 -The maximum resident set size (KB) = 879780 - -Test 064 rap_restart_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 355.499946 -The maximum resident set size (KB) = 1004648 - -Test 065 rap_sfcdiff_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 374.167272 -The maximum resident set size (KB) = 1004988 - -Test 066 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 267.174430 -The maximum resident set size (KB) = 880868 - -Test 067 rap_sfcdiff_restart_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 183.993926 -The maximum resident set size (KB) = 1001636 - -Test 068 hrrr_control_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_intel -Checking test 069 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 189.087480 -The maximum resident set size (KB) = 1000184 - -Test 069 hrrr_control_decomp_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_2threads_intel -Checking test 070 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 160.563409 -The maximum resident set size (KB) = 1086684 - -Test 070 hrrr_control_2threads_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_intel -Checking test 071 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 97.735325 -The maximum resident set size (KB) = 833232 - -Test 071 hrrr_control_restart_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_intel -Checking test 072 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 349.772421 -The maximum resident set size (KB) = 1002044 - -Test 072 rrfs_v1beta_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_intel -Checking test 073 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 433.501392 -The maximum resident set size (KB) = 1959088 - -Test 073 rrfs_v1nssl_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1nssl_nohailnoccn_intel -Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 416.399889 -The maximum resident set size (KB) = 1947308 - -Test 074 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 305.189481 -The maximum resident set size (KB) = 689828 - -Test 075 control_csawmg_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 298.578545 -The maximum resident set size (KB) = 688216 - -Test 076 control_csawmgt_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_intel -Checking test 077 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 164.596704 -The maximum resident set size (KB) = 655364 - -Test 077 control_ras_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_intel -Checking test 078 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 104.408886 -The maximum resident set size (KB) = 381600 - -Test 078 control_wam_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_faster_intel -Checking test 079 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 135.964840 -The maximum resident set size (KB) = 1599664 - -Test 079 control_p8_faster_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 248.143855 -The maximum resident set size (KB) = 624960 - -Test 080 regional_control_faster_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_CubedSphereGrid_debug_intel -Checking test 081 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 145.917215 -The maximum resident set size (KB) = 794780 - -Test 081 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 140.354619 -The maximum resident set size (KB) = 790228 - -Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_stochy_debug_intel -Checking test 083 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 158.878128 -The maximum resident set size (KB) = 798644 - -Test 083 control_stochy_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_lndp_debug_intel -Checking test 084 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 142.957055 -The maximum resident set size (KB) = 798488 - -Test 084 control_lndp_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmg_debug_intel -Checking test 085 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 224.583856 -The maximum resident set size (KB) = 833048 - -Test 085 control_csawmg_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_csawmgt_debug_intel -Checking test 086 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 224.450021 -The maximum resident set size (KB) = 834932 - -Test 086 control_csawmgt_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_ras_debug_intel -Checking test 087 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 145.076383 -The maximum resident set size (KB) = 806452 - -Test 087 control_ras_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_diag_debug_intel -Checking test 088 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 147.618483 -The maximum resident set size (KB) = 850876 - -Test 088 control_diag_debug_intel PASS Tries: 2 - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_debug_p8_intel -Checking test 089 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 149.410798 -The maximum resident set size (KB) = 1621016 - -Test 089 control_debug_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_debug_intel -Checking test 090 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 944.122716 -The maximum resident set size (KB) = 661380 - -Test 090 regional_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_intel -Checking test 091 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 272.115364 -The maximum resident set size (KB) = 1175532 - -Test 091 rap_control_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_intel -Checking test 092 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 261.245460 -The maximum resident set size (KB) = 1174580 - -Test 092 hrrr_control_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_gf_debug_intel -Checking test 093 hrrr_gf_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 266.651559 -The maximum resident set size (KB) = 1177592 - -Test 093 hrrr_gf_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_c3_debug_intel -Checking test 094 hrrr_c3_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 267.315434 -The maximum resident set size (KB) = 1179204 - -Test 094 hrrr_c3_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_drag_suite_debug_intel -Checking test 095 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 267.705776 -The maximum resident set size (KB) = 1176796 - -Test 095 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_diag_debug_intel -Checking test 096 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 283.361639 -The maximum resident set size (KB) = 1263940 - -Test 096 rap_diag_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_cires_ugwp_debug_intel -Checking test 097 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 272.597051 -The maximum resident set size (KB) = 1177852 - -Test 097 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_unified_ugwp_debug_intel -Checking test 098 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 273.741989 -The maximum resident set size (KB) = 1178296 - -Test 098 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_lndp_debug_intel -Checking test 099 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 269.071855 -The maximum resident set size (KB) = 1179680 - -Test 099 rap_lndp_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_progcld_thompson_debug_intel -Checking test 100 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 281.137615 -The maximum resident set size (KB) = 1176468 - -Test 100 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_debug_intel -Checking test 101 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 262.781627 -The maximum resident set size (KB) = 1170608 - -Test 101 rap_noah_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_sfcdiff_debug_intel -Checking test 102 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 266.199180 -The maximum resident set size (KB) = 1179332 - -Test 102 rap_sfcdiff_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 439.573070 -The maximum resident set size (KB) = 1176220 - -Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rrfs_v1beta_debug_intel -Checking test 104 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 265.933519 -The maximum resident set size (KB) = 1173608 - -Test 104 rrfs_v1beta_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_clm_lake_debug_intel -Checking test 105 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 315.066589 -The maximum resident set size (KB) = 1180832 - -Test 105 rap_clm_lake_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_flake_debug_intel -Checking test 106 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 269.043588 -The maximum resident set size (KB) = 1181028 - -Test 106 rap_flake_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_c96_no_nest_debug_intel -Checking test 107 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 462.034280 -The maximum resident set size (KB) = 1177024 - -Test 107 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_wam_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_wam_debug_intel -Checking test 108 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -The total amount of wall time = 270.531881 -The maximum resident set size (KB) = 420028 - -Test 108 control_wam_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 202.995920 -The maximum resident set size (KB) = 1053380 - -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn32_phy32_intel -Checking test 110 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 298.089350 -The maximum resident set size (KB) = 879448 - -Test 110 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_dyn32_phy32_intel -Checking test 111 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 161.175938 -The maximum resident set size (KB) = 877000 - -Test 111 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_decomp_dyn32_phy32_intel -Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 165.333934 -The maximum resident set size (KB) = 878356 - -Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_restart_dyn32_phy32_intel -Checking test 113 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 227.422230 -The maximum resident set size (KB) = 792956 - -Test 113 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_restart_dyn32_phy32_intel -Checking test 114 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 82.898710 -The maximum resident set size (KB) = 774584 - -Test 114 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_control_intel -Checking test 115 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 114.050530 -The maximum resident set size (KB) = 1087448 - -Test 115 conus13km_control_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_2threads_intel -Checking test 116 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 51.633947 -The maximum resident set size (KB) = 1087780 - -Test 116 conus13km_2threads_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_restart_mismatch_intel -Checking test 117 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 58.334294 -The maximum resident set size (KB) = 975668 - -Test 117 conus13km_restart_mismatch_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_intel -Checking test 118 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 209.677892 -The maximum resident set size (KB) = 907960 - -Test 118 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_debug_dyn32_phy32_intel -Checking test 119 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 260.797136 -The maximum resident set size (KB) = 1055904 - -Test 119 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hrrr_control_debug_dyn32_phy32_intel -Checking test 120 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 267.752256 -The maximum resident set size (KB) = 1056428 - -Test 120 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_debug_intel -Checking test 121 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 791.728811 -The maximum resident set size (KB) = 1132840 - -Test 121 conus13km_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/conus13km_radar_tten_debug_intel -Checking test 122 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 813.435144 -The maximum resident set size (KB) = 1199980 - -Test 122 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/rap_control_dyn64_phy32_debug_intel -Checking test 123 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 269.869857 -The maximum resident set size (KB) = 1078316 - -Test 123 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_intel -Checking test 124 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -The total amount of wall time = 266.084321 -The maximum resident set size (KB) = 711920 - -Test 124 hafs_regional_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 125 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -The total amount of wall time = 303.657054 -The maximum resident set size (KB) = 1064772 - -Test 125 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_intel -Checking test 126 hafs_regional_atm_ocn_intel 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 - -The total amount of wall time = 380.660268 -The maximum resident set size (KB) = 776016 - -Test 126 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_wav_intel -Checking test 127 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 650.137569 -The maximum resident set size (KB) = 795664 - -Test 127 hafs_regional_atm_wav_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_atm_ocn_wav_intel -Checking test 128 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 724.238413 -The maximum resident set size (KB) = 809044 - -Test 128 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_1nest_atm_intel -Checking test 129 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 269.115433 -The maximum resident set size (KB) = 475676 - -Test 129 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_telescopic_2nests_atm_intel -Checking test 130 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -The total amount of wall time = 335.884116 -The maximum resident set size (KB) = 493196 - -Test 130 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_1nest_atm_intel -Checking test 131 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 127.036100 -The maximum resident set size (KB) = 389448 - -Test 131 hafs_global_1nest_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_multiple_4nests_atm_intel -Checking test 132 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 375.246874 -The maximum resident set size (KB) = 457472 - -Test 132 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_specified_moving_1nest_atm_intel -Checking test 133 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -The total amount of wall time = 187.079160 -The maximum resident set size (KB) = 508036 - -Test 133 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_intel -Checking test 134 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 174.805779 -The maximum resident set size (KB) = 511836 - -Test 134 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -The total amount of wall time = 222.392445 -The maximum resident set size (KB) = 587100 - -Test 135 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_global_storm_following_1nest_atm_intel -Checking test 136 hafs_global_storm_following_1nest_atm_intel 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 = 66.240057 -The maximum resident set size (KB) = 429872 - -Test 136 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/gnv1_nested_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/gnv1_nested_intel -Checking test 137 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 197.748290 -The maximum resident set size (KB) = 783544 - -Test 137 gnv1_nested_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -The total amount of wall time = 719.803295 -The maximum resident set size (KB) = 611616 - -Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 424.211345 -The maximum resident set size (KB) = 623732 - -Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 424.242998 -The maximum resident set size (KB) = 677660 - -Test 140 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - -The total amount of wall time = 312.677914 -The maximum resident set size (KB) = 679512 - -Test 141 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_intel -Checking test 142 hafs_regional_docn_intel 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 - -The total amount of wall time = 328.493783 -The maximum resident set size (KB) = 749004 - -Test 142 hafs_regional_docn_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_docn_oisst_intel -Checking test 143 hafs_regional_docn_oisst_intel 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 - -The total amount of wall time = 329.730264 -The maximum resident set size (KB) = 738300 - -Test 143 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/hafs_regional_datm_cdeps_intel -Checking test 144 hafs_regional_datm_cdeps_intel 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 = 961.863712 -The maximum resident set size (KB) = 893760 - -Test 144 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_intel -Checking test 145 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 143.709114 -The maximum resident set size (KB) = 760508 - -Test 145 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_restart_cfsr_intel -Checking test 146 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 87.967913 -The maximum resident set size (KB) = 748932 - -Test 146 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_gefs_intel -Checking test 147 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 134.874445 -The maximum resident set size (KB) = 640976 - -Test 147 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_iau_gefs_intel -Checking test 148 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 137.946855 -The maximum resident set size (KB) = 724064 - -Test 148 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_stochy_gefs_intel -Checking test 149 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 137.770990 -The maximum resident set size (KB) = 641196 - -Test 149 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_ciceC_cfsr_intel -Checking test 150 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 142.112546 -The maximum resident set size (KB) = 760000 - -Test 150 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_cfsr_intel -Checking test 151 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 142.271849 -The maximum resident set size (KB) = 761236 - -Test 151 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_bulk_gefs_intel -Checking test 152 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 133.334822 -The maximum resident set size (KB) = 1233084 - -Test 152 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_cfsr_intel -Checking test 153 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 329.109469 -The maximum resident set size (KB) = 689436 - -Test 153 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_mx025_gefs_intel -Checking test 154 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 327.403572 -The maximum resident set size (KB) = 669996 - -Test 154 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_multiple_files_cfsr_intel -Checking test 155 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 143.494820 -The maximum resident set size (KB) = 760780 - -Test 155 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_3072x1536_cfsr_intel -Checking test 156 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 230.972903 -The maximum resident set size (KB) = 2019780 - -Test 156 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_gfs_intel -Checking test 157 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - -The total amount of wall time = 230.700660 -The maximum resident set size (KB) = 2019700 - -Test 157 datm_cdeps_gfs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_debug_cfsr_intel -Checking test 158 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - -The total amount of wall time = 300.017368 -The maximum resident set size (KB) = 732788 - -Test 158 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_control_cfsr_faster_intel -Checking test 159 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 144.227402 -The maximum resident set size (KB) = 749192 - -Test 159 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_gswp3_intel -Checking test 160 datm_cdeps_lnd_gswp3_intel 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 = 73.950560 -The maximum resident set size (KB) = 308924 - -Test 160 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_intel -Checking test 161 datm_cdeps_lnd_era5_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - -The total amount of wall time = 67.380854 -The maximum resident set size (KB) = 456020 - -Test 161 datm_cdeps_lnd_era5_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/datm_cdeps_lnd_era5_rst_intel -Checking test 162 datm_cdeps_lnd_era5_rst_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - -The total amount of wall time = 37.293869 -The maximum resident set size (KB) = 449656 - -Test 162 datm_cdeps_lnd_era5_rst_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_sbs_intel -Checking test 163 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 491.630899 -The maximum resident set size (KB) = 1632552 - -Test 163 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_p8_atmlnd_intel -Checking test 164 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 485.377504 -The maximum resident set size (KB) = 1627324 - -Test 164 control_p8_atmlnd_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_restart_p8_atmlnd_intel -Checking test 165 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 263.797583 -The maximum resident set size (KB) = 847728 - -Test 165 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmwav_control_noaero_p8_intel -Checking test 166 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - -The total amount of wall time = 84.633226 -The maximum resident set size (KB) = 1633040 - -Test 166 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/control_atmwav_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/control_atmwav_intel -Checking test 167 control_atmwav_intel 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 - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - -The total amount of wall time = 80.485781 -The maximum resident set size (KB) = 636108 - -Test 167 control_atmwav_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_intel -Checking test 168 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 207.113665 -The maximum resident set size (KB) = 2944472 - -Test 168 atmaero_control_p8_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_intel -Checking test 169 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 246.420830 -The maximum resident set size (KB) = 2996652 - -Test 169 atmaero_control_p8_rad_intel PASS - - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/zshrader/FV3_RT/rt_14554/atmaero_control_p8_rad_micro_intel -Checking test 170 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 258.597767 -The maximum resident set size (KB) = 3010708 - -Test 170 atmaero_control_p8_rad_micro_intel PASS -REGRESSION TEST WAS SUCCESSFUL -Tue 13 Feb 2024 04:43:31 PM MST -Elapsed time: 01h:34m:31s. Have a nice day! +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_101438 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [28:47, 21:25] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:17, 05:02](3072 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:44, 23:00] +PASS -- TEST 'cpld_control_gfsv17_intel' [17:09, 13:52](1677 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:35, 15:18](1822 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [18:38, 07:19](950 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:52](1653 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:50, 11:12] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 21:46](1699 MB) + +PASS -- COMPILE 's2swa_intel' [40:42, 20:54] +PASS -- TEST 'cpld_control_p8_intel' [10:41, 05:44](3091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:55, 05:42](3090 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:21](3149 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 05:42](3122 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 03:26](3174 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:42, 05:38](3089 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:53, 04:44](3383 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:43](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:14, 09:04](3635 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:50, 05:56](3616 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 05:21](3065 MB) + +PASS -- COMPILE 's2sw_intel' [39:46, 20:20] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:18](1678 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:20](1722 MB) + +PASS -- COMPILE 's2swa_debug_intel' [30:46, 11:36] +PASS -- TEST 'cpld_debug_p8_intel' [11:40, 07:49](3151 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:33, 10:39] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 05:16](1703 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [34:51, 15:36] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 04:21](1732 MB) + +PASS -- COMPILE 's2s_intel' [34:51, 15:21] +PASS -- TEST 'cpld_control_c48_intel' [41:34, 06:37](2663 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [41:52, 21:02] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 14:09](1694 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:29](1016 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:06, 16:04](1669 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:21, 10:23] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 22:39](1707 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:22, 12:47] +PASS -- TEST 'control_flake_intel' [17:56, 03:28](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:10, 02:06](615 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:24, 02:12](1389 MB) +PASS -- TEST 'control_latlon_intel' [10:53, 02:10](616 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:16, 02:11](615 MB) +PASS -- TEST 'control_c48_intel' [31:56, 05:15](731 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [31:55, 05:15](730 MB) +PASS -- TEST 'control_c192_intel' [22:39, 07:53](739 MB) +PASS -- TEST 'control_c384_intel' [17:18, 08:26](1052 MB) +PASS -- TEST 'control_c384gdas_intel' [20:31, 07:36](1194 MB) +PASS -- TEST 'control_stochy_intel' [15:53, 01:28](623 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:48, 00:56](434 MB) +PASS -- TEST 'control_lndp_intel' [16:04, 01:25](622 MB) +PASS -- TEST 'control_iovr4_intel' [17:21, 02:07](618 MB) +PASS -- TEST 'control_iovr5_intel' [17:22, 02:09](616 MB) +PASS -- TEST 'control_p8_intel' [14:03, 02:34](1594 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:50, 02:32](1601 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:57, 02:33](1599 MB) +PASS -- TEST 'control_restart_p8_intel' [03:34, 01:28](795 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:41, 02:33](1585 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:28](799 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:32, 02:37](1592 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:25, 04:24](1597 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 03:22](1655 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:37](1605 MB) +PASS -- TEST 'merra2_thompson_intel' [05:58, 03:05](1599 MB) +PASS -- TEST 'regional_control_intel' [06:23, 04:31](622 MB) +PASS -- TEST 'regional_restart_intel' [04:03, 02:31](796 MB) +PASS -- TEST 'regional_decomp_intel' [06:16, 04:45](1389 MB) +PASS -- TEST 'regional_noquilt_intel' [07:19, 04:26](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:33](621 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:18, 04:34](626 MB) +PASS -- TEST 'regional_wofs_intel' [08:15, 05:41](1597 MB) + +PASS -- COMPILE 'rrfs_intel' [52:44, 11:44] +PASS -- TEST 'rap_control_intel' [08:15, 06:09](1006 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:34, 03:58](1195 MB) +PASS -- TEST 'rap_decomp_intel' [09:14, 06:25](1007 MB) +PASS -- TEST 'rap_restart_intel' [05:15, 03:15](884 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:10, 06:11](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 06:23](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 04:36](883 MB) +PASS -- TEST 'hrrr_control_intel' [06:06, 03:15](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 03:20](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:53](1092 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:48](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:03](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:40, 07:26](1958 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:46, 07:10](1954 MB) + +PASS -- COMPILE 'csawmg_intel' [49:35, 10:52] +PASS -- TEST 'control_csawmg_intel' [07:15, 05:14](692 MB) +PASS -- TEST 'control_csawmgt_intel' [07:16, 05:10](687 MB) +PASS -- TEST 'control_ras_intel' [04:34, 02:56](656 MB) + +PASS -- COMPILE 'wam_intel' [48:44, 10:32] +PASS -- TEST 'control_wam_intel' [04:01, 01:59](384 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [51:37, 13:52] +PASS -- TEST 'control_p8_faster_intel' [04:42, 02:24](1594 MB) +PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](627 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [44:43, 09:40] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:26, 02:34](791 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:36](793 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:21, 02:55](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:37](800 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:49, 03:58](834 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [07:49, 03:59](833 MB) +PASS -- TEST 'control_ras_debug_intel' [06:19, 02:42](807 MB) +PASS -- TEST 'control_diag_debug_intel' [07:05, 02:45](854 MB) +PASS -- TEST 'control_debug_p8_intel' [06:48, 02:44](1624 MB) +PASS -- TEST 'regional_debug_intel' [18:52, 15:45](661 MB) +PASS -- TEST 'rap_control_debug_intel' [08:23, 04:44](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:26, 04:34](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 04:47](1176 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 04:47](1175 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 04:50](1177 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:55, 04:57](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:19, 04:53](1178 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 04:43](1180 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:31, 04:45](1177 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 04:46](1176 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:24, 04:36](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 04:44](1176 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:19, 07:49](1178 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 04:37](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 05:36](1179 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:38](1176 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 07:55](1180 MB) + +PASS -- COMPILE 'wam_debug_intel' [40:41, 06:21] +PASS -- TEST 'control_wam_debug_intel' [06:33, 04:38](416 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:33, 10:46] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:39](1056 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:22, 05:09](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:01, 02:47](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:00, 02:58](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 03:55](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:36](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:32, 12:46] +PASS -- TEST 'conus13km_control_intel' [04:51, 01:58](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:20, 01:04](1081 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:12, 01:11](973 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [38:31, 10:34] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:40](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [32:34, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:41, 04:39](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1389 MB) +PASS -- TEST 'conus13km_debug_intel' [16:55, 13:25](1130 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:49, 13:30](1196 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:22, 06:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 04:37](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [21:30, 16:57] +PASS -- TEST 'hafs_regional_atm_intel' [08:57, 04:41](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:27, 05:32](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:20, 06:33](772 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:00](796 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 12:10](805 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 04:46](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 05:53](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:26, 02:26](389 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:53, 06:33](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:34, 03:26](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:12, 03:10](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:56, 03:59](581 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:48, 01:20](426 MB) +PASS -- TEST 'gnv1_nested_intel' [05:27, 03:29](785 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:17] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:37, 12:14](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:21, 20:18] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:41, 07:13](628 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:28](677 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:29, 17:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:00, 05:26](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:28, 14:59] +PASS -- TEST 'hafs_regional_docn_intel' [09:30, 05:41](754 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:40, 05:44](737 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:24, 16:11](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:25, 08:31] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:30](762 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:35, 01:35](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:45, 02:21](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:23](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:47, 02:24](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:31](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:34, 02:32](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:43, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:48, 05:43](685 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:28, 05:38](670 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:36, 02:29](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:56](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:32, 04:00](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 05:55] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:00, 05:07](1389 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:38] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:52, 02:31](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:48] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:17](301 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:12](455 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:51, 00:50](455 MB) + +PASS -- COMPILE 'atml_intel' [14:24, 13:45] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 06:58](1622 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:28](1639 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:11, 03:33](842 MB) + +PASS -- COMPILE 'atmw_intel' [14:29, 13:41] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:37](1627 MB) + +PASS -- COMPILE 'atmwm_intel' [14:29, 13:16] +PASS -- TEST 'control_atmwav_intel' [03:08, 01:31](637 MB) + +PASS -- COMPILE 'atmaero_intel' [13:20, 12:17] +PASS -- TEST 'atmaero_control_p8_intel' [06:00, 03:44](2944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:19](3002 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:34](3012 MB) + +PASS -- COMPILE 'atmaq_intel' [13:21, 11:52] + +SYNOPSIS: +Starting Date/Time: 20240220 21:47:19 +Ending Date/Time: 20240220 23:47:50 +Total Time: 02h:02m:03s +Compiles Completed: 37/37 +Tests Completed: 170/170 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF DERECHO REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 0ff1aab4f1..49c76eba5f 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,6314 +1,308 @@ -Tue 13 Feb 2024 09:10:06 PM EST -Start Regression test +====START OF GAEA REGRESSION TESTING LOG==== -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 671 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 330 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 623 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 405 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 628 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 643 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 601 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 759 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 326 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 732 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 599 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 121 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 637 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 750 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 386 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 856 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 677 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 322 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 686 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 661 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 663 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 778 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 455 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1137 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 973 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 793 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 411 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 429 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1138 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 540 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 305.691523 - 0: The maximum resident set size (KB) = 3075132 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 768.833767 - 0: The maximum resident set size (KB) = 1696664 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1142.230940 - 0: The maximum resident set size (KB) = 1808912 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 505.755914 - 0: The maximum resident set size (KB) = 945668 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 855.073506 - 0: The maximum resident set size (KB) = 1668456 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1505.226571 - 0: The maximum resident set size (KB) = 1698600 - -Test 006 cpld_debug_gfsv17_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 345.484112 - 0: The maximum resident set size (KB) = 3099188 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 346.484339 - 0: The maximum resident set size (KB) = 3098412 - -Test 008 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 200.236786 - 0: The maximum resident set size (KB) = 3157348 - -Test 009 cpld_restart_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 350.840908 - 0: The maximum resident set size (KB) = 3122872 - -Test 010 cpld_control_qr_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 204.831802 - 0: The maximum resident set size (KB) = 3177892 - -Test 011 cpld_restart_qr_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_2threads_p8_intel -Checking test 012 cpld_2threads_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 312.769607 - 0: The maximum resident set size (KB) = 3413048 - -Test 012 cpld_2threads_p8_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_decomp_p8_intel -Checking test 013 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 341.872196 - 0: The maximum resident set size (KB) = 3097968 - -Test 013 cpld_decomp_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_p8_intel -Checking test 014 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 288.676367 - 0: The maximum resident set size (KB) = 3022548 - -Test 014 cpld_mpi_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_ciceC_p8_intel -Checking test 015 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 345.661533 - 0: The maximum resident set size (KB) = 3099624 - -Test 015 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c192_p8_intel -Checking test 016 cpld_control_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 579.815625 - 0: The maximum resident set size (KB) = 3266076 - -Test 016 cpld_control_c192_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_c192_p8_intel -Checking test 017 cpld_restart_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 395.432614 - 0: The maximum resident set size (KB) = 3602020 - -Test 017 cpld_restart_c192_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_bmark_p8_intel -Checking test 018 cpld_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 716.188991 - 0: The maximum resident set size (KB) = 4039344 - -Test 018 cpld_bmark_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_bmark_p8_intel -Checking test 019 cpld_restart_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 678.789231 - 0: The maximum resident set size (KB) = 4343348 - -Test 019 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_s2sa_p8_intel -Checking test 020 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 330.572343 - 0: The maximum resident set size (KB) = 3067636 - -Test 020 cpld_s2sa_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_intel -Checking test 021 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 250.697619 - 0: The maximum resident set size (KB) = 1687700 - -Test 021 cpld_control_noaero_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_nowave_noaero_p8_intel -Checking test 022 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 263.137295 - 0: The maximum resident set size (KB) = 1733072 - -Test 022 cpld_control_nowave_noaero_p8_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_p8_intel -Checking test 023 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 490.819261 - 0: The maximum resident set size (KB) = 3133160 - -Test 023 cpld_debug_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_noaero_p8_intel -Checking test 024 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 317.936060 - 0: The maximum resident set size (KB) = 1698516 - -Test 024 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_noaero_p8_agrid_intel -Checking test 025 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 262.472674 - 0: The maximum resident set size (KB) = 1728840 - -Test 025 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_c48_intel -Checking test 026 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 405.134034 - 0: The maximum resident set size (KB) = 2658784 - -Test 026 cpld_control_c48_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_p8_faster_intel -Checking test 027 cpld_control_p8_faster_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 338.750993 - 0: The maximum resident set size (KB) = 3099228 - -Test 027 cpld_control_p8_faster_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_control_pdlib_p8_intel -Checking test 028 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1021.284459 - 0: The maximum resident set size (KB) = 1702192 - -Test 028 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_restart_pdlib_p8_intel -Checking test 029 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 585.151313 - 0: The maximum resident set size (KB) = 1001268 - -Test 029 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_mpi_pdlib_p8_intel -Checking test 030 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1342.774093 - 0: The maximum resident set size (KB) = 1682980 - -Test 030 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/cpld_debug_pdlib_p8_intel -Checking test 031 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1741.623600 - 0: The maximum resident set size (KB) = 1707796 - -Test 031 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_flake_intel -Checking test 032 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 194.802237 - 0: The maximum resident set size (KB) = 672956 - -Test 032 control_flake_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_intel -Checking test 033 control_CubedSphereGrid_intel 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 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 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 - - 0: The total amount of wall time = 122.228754 - 0: The maximum resident set size (KB) = 616988 - -Test 033 control_CubedSphereGrid_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_parallel_intel -Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 127.524716 - 0: The maximum resident set size (KB) = 625552 - -Test 034 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_latlon_intel -Checking test 035 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 125.476680 - 0: The maximum resident set size (KB) = 620552 - -Test 035 control_latlon_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_intel -Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 177.930057 - 0: The maximum resident set size (KB) = 620536 - -Test 036 control_wrtGauss_netcdf_parallel_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48_intel -Checking test 037 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 329.882070 -0: The maximum resident set size (KB) = 721068 - -Test 037 control_c48_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c48.v2.sfc_intel -Checking test 038 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 331.177350 -0: The maximum resident set size (KB) = 726680 - -Test 038 control_c48.v2.sfc_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c192_intel -Checking test 039 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 497.207383 - 0: The maximum resident set size (KB) = 737264 - -Test 039 control_c192_intel PASS - -Test 040 control_c384_intel FAIL - -Test 040 control_c384_intel FAIL - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_c384gdas_intel -Checking test 041 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 826.416654 - 0: The maximum resident set size (KB) = 1184372 - -Test 041 control_c384gdas_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_intel -Checking test 042 control_stochy_intel 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 - - 0: The total amount of wall time = 84.192079 - 0: The maximum resident set size (KB) = 626112 - -Test 042 control_stochy_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_restart_intel -Checking test 043 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 44.747256 - 0: The maximum resident set size (KB) = 428572 - -Test 043 control_stochy_restart_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_intel -Checking test 044 control_lndp_intel 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 - - 0: The total amount of wall time = 77.269382 - 0: The maximum resident set size (KB) = 625808 - -Test 044 control_lndp_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr4_intel -Checking test 045 control_iovr4_intel 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 - - 0: The total amount of wall time = 124.492942 - 0: The maximum resident set size (KB) = 620832 - -Test 045 control_iovr4_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_iovr5_intel -Checking test 046 control_iovr5_intel 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 - - 0: The total amount of wall time = 124.386097 - 0: The maximum resident set size (KB) = 620328 - -Test 046 control_iovr5_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_intel -Checking test 047 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 150.440335 - 0: The maximum resident set size (KB) = 1608432 - -Test 047 control_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8.v2.sfc_intel -Checking test 048 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 152.796471 - 0: The maximum resident set size (KB) = 1608352 - -Test 048 control_p8.v2.sfc_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_ugwpv1_intel -Checking test 049 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 147.777482 - 0: The maximum resident set size (KB) = 1611064 - -Test 049 control_p8_ugwpv1_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_intel -Checking test 050 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 80.544323 - 0: The maximum resident set size (KB) = 790948 - -Test 050 control_restart_p8_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_noqr_p8_intel -Checking test 051 control_noqr_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 147.931967 - 0: The maximum resident set size (KB) = 1596776 - -Test 051 control_noqr_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_noqr_p8_intel -Checking test 052 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 79.281512 - 0: The maximum resident set size (KB) = 794372 - -Test 052 control_restart_noqr_p8_intel PASS - -Test 053 control_decomp_p8_intel FAIL - -Test 053 control_decomp_p8_intel FAIL - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_2threads_p8_intel -Checking test 054 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 130.458684 - 0: The maximum resident set size (KB) = 1691040 - -Test 054 control_2threads_p8_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_lndp_intel -Checking test 055 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 268.619402 - 0: The maximum resident set size (KB) = 1608368 - -Test 055 control_p8_lndp_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_rrtmgp_intel -Checking test 056 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 201.397866 - 0: The maximum resident set size (KB) = 1659016 - -Test 056 control_p8_rrtmgp_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_mynn_intel -Checking test 057 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 150.308794 - 0: The maximum resident set size (KB) = 1614192 - -Test 057 control_p8_mynn_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/merra2_thompson_intel -Checking test 058 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 180.102046 - 0: The maximum resident set size (KB) = 1615268 - -Test 058 merra2_thompson_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_intel -Checking test 059 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 404.799517 - 0: The maximum resident set size (KB) = 619056 - -Test 059 regional_control_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_restart_intel -Checking test 060 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 256.263821 - 0: The maximum resident set size (KB) = 791744 - -Test 060 regional_restart_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_decomp_intel -Checking test 061 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 280.323348 - 0: The maximum resident set size (KB) = 618076 - -Test 061 regional_decomp_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2threads_intel -Checking test 062 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 156.148607 - 0: The maximum resident set size (KB) = 760288 - -Test 062 regional_2threads_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_noquilt_intel -Checking test 063 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 260.048109 - 0: The maximum resident set size (KB) = 1156968 - -Test 063 regional_noquilt_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_netcdf_parallel_intel -Checking test 064 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 261.697345 - 0: The maximum resident set size (KB) = 618524 - -Test 064 regional_netcdf_parallel_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_2dwrtdecomp_intel -Checking test 065 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 267.488333 - 0: The maximum resident set size (KB) = 619408 - -Test 065 regional_2dwrtdecomp_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_wofs_intel -Checking test 066 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 344.792952 - 0: The maximum resident set size (KB) = 1593180 - -Test 066 regional_wofs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_intel -Checking test 067 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 374.990671 - 0: The maximum resident set size (KB) = 1009724 - -Test 067 rap_control_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_intel -Checking test 068 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 222.258833 - 0: The maximum resident set size (KB) = 1186660 - -Test 068 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_decomp_intel -Checking test 069 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 385.268902 - 0: The maximum resident set size (KB) = 1009264 - -Test 069 rap_decomp_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_intel -Checking test 070 rap_2threads_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 344.578925 - 0: The maximum resident set size (KB) = 1094888 - -Test 070 rap_2threads_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_intel -Checking test 071 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 190.039475 - 0: The maximum resident set size (KB) = 878836 - -Test 071 rap_restart_intel PASS Tries: 2 - -Test 072 rap_sfcdiff_intel FAIL - -Test 072 rap_sfcdiff_intel FAIL - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_decomp_intel -Checking test 073 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 386.309726 - 0: The maximum resident set size (KB) = 1005580 - -Test 073 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_intel -Checking test 075 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 192.160358 - 0: The maximum resident set size (KB) = 1004964 - -Test 075 hrrr_control_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_intel -Checking test 076 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 197.403073 - 0: The maximum resident set size (KB) = 1006352 - -Test 076 hrrr_control_decomp_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_intel -Checking test 077 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 171.970249 - 0: The maximum resident set size (KB) = 1086060 - -Test 077 hrrr_control_2threads_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_intel -Checking test 078 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 102.080757 - 0: The maximum resident set size (KB) = 836524 - -Test 078 hrrr_control_restart_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_intel -Checking test 079 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 366.664268 - 0: The maximum resident set size (KB) = 1001700 - -Test 079 rrfs_v1beta_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_intel -Checking test 080 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 636.969061 - 0: The maximum resident set size (KB) = 1967556 - -Test 080 rrfs_v1nssl_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1nssl_nohailnoccn_intel -Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 608.083869 - 0: The maximum resident set size (KB) = 1951840 - -Test 081 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_intel -Checking test 082 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 320.651353 - 0: The maximum resident set size (KB) = 696016 - -Test 082 control_csawmg_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_intel -Checking test 083 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 317.540935 - 0: The maximum resident set size (KB) = 693824 - -Test 083 control_csawmgt_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_intel -Checking test 084 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 173.559690 - 0: The maximum resident set size (KB) = 658336 - -Test 084 control_ras_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_intel -Checking test 085 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 113.521558 - 0: The maximum resident set size (KB) = 369824 - -Test 085 control_wam_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_faster_intel -Checking test 086 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 146.659178 - 0: The maximum resident set size (KB) = 1605112 - -Test 086 control_p8_faster_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_control_faster_intel -Checking test 087 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 258.664904 - 0: The maximum resident set size (KB) = 610840 - -Test 087 regional_control_faster_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_CubedSphereGrid_debug_intel -Checking test 088 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 147.109219 - 0: The maximum resident set size (KB) = 778928 - -Test 088 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.565967 - 0: The maximum resident set size (KB) = 782964 - -Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_stochy_debug_intel -Checking test 090 control_stochy_debug_intel 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.617790 - 0: The maximum resident set size (KB) = 786300 - -Test 090 control_stochy_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_lndp_debug_intel -Checking test 091 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 311.505065 - 0: The maximum resident set size (KB) = 789604 - -Test 091 control_lndp_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmg_debug_intel -Checking test 092 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 338.750301 - 0: The maximum resident set size (KB) = 826628 - -Test 092 control_csawmg_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_csawmgt_debug_intel -Checking test 093 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 393.335626 - 0: The maximum resident set size (KB) = 827424 - -Test 093 control_csawmgt_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_ras_debug_intel -Checking test 094 control_ras_debug_intel 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.828082 - 0: The maximum resident set size (KB) = 796316 - -Test 094 control_ras_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_diag_debug_intel -Checking test 095 control_diag_debug_intel 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.496023 - 0: The maximum resident set size (KB) = 844720 - -Test 095 control_diag_debug_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_debug_p8_intel -Checking test 096 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 305.388531 - 0: The maximum resident set size (KB) = 1622656 - -Test 096 control_debug_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_debug_intel -Checking test 097 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 1183.753954 - 0: The maximum resident set size (KB) = 636760 - -Test 097 regional_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_intel -Checking test 098 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 320.423499 - 0: The maximum resident set size (KB) = 1168824 - -Test 098 rap_control_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_intel -Checking test 099 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 407.957992 - 0: The maximum resident set size (KB) = 1167056 - -Test 099 hrrr_control_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_gf_debug_intel -Checking test 100 hrrr_gf_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 277.547241 - 0: The maximum resident set size (KB) = 1169220 - -Test 100 hrrr_gf_debug_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_c3_debug_intel -Checking test 101 hrrr_c3_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 316.786811 - 0: The maximum resident set size (KB) = 1169672 - -Test 101 hrrr_c3_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_drag_suite_debug_intel -Checking test 102 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 323.700824 - 0: The maximum resident set size (KB) = 1168456 - -Test 102 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_diag_debug_intel -Checking test 103 rap_diag_debug_intel 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.714612 - 0: The maximum resident set size (KB) = 1253424 - -Test 103 rap_diag_debug_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_cires_ugwp_debug_intel -Checking test 104 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 279.857804 - 0: The maximum resident set size (KB) = 1168648 - -Test 104 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_unified_ugwp_debug_intel -Checking test 105 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 286.273871 - 0: The maximum resident set size (KB) = 1170168 - -Test 105 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_lndp_debug_intel -Checking test 106 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 290.273669 - 0: The maximum resident set size (KB) = 1170664 - -Test 106 rap_lndp_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_progcld_thompson_debug_intel -Checking test 107 rap_progcld_thompson_debug_intel 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.403870 - 0: The maximum resident set size (KB) = 1168416 - -Test 107 rap_progcld_thompson_debug_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_noah_debug_intel -Checking test 108 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 329.956206 - 0: The maximum resident set size (KB) = 1168972 - -Test 108 rap_noah_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_sfcdiff_debug_intel -Checking test 109 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 320.061225 - 0: The maximum resident set size (KB) = 1167408 - -Test 109 rap_sfcdiff_debug_intel PASS Tries: 2 - -Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL - -Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel FAIL - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rrfs_v1beta_debug_intel -Checking test 111 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 290.893886 - 0: The maximum resident set size (KB) = 1165244 - -Test 111 rrfs_v1beta_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_clm_lake_debug_intel -Checking test 112 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 423.564715 - 0: The maximum resident set size (KB) = 1170568 - -Test 112 rap_clm_lake_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_flake_debug_intel -Checking test 113 rap_flake_debug_intel 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.070975 - 0: The maximum resident set size (KB) = 1169220 - -Test 113 rap_flake_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_c96_no_nest_debug_intel -Checking test 114 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 579.574524 - 0: The maximum resident set size (KB) = 1171924 - -Test 114 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_wam_debug_intel -Checking test 115 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 377.715248 - 0: The maximum resident set size (KB) = 397156 - -Test 115 control_wam_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 350.365334 - 0: The maximum resident set size (KB) = 1051460 - -Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn32_phy32_intel -Checking test 117 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 505.217133 - 0: The maximum resident set size (KB) = 890260 - -Test 117 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_dyn32_phy32_intel -Checking test 118 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 192.505764 - 0: The maximum resident set size (KB) = 886092 - -Test 118 hrrr_control_dyn32_phy32_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_2threads_dyn32_phy32_intel -Checking test 119 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 460.999501 - 0: The maximum resident set size (KB) = 948216 - -Test 119 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_2threads_dyn32_phy32_intel -Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 283.500072 - 0: The maximum resident set size (KB) = 938248 - -Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_decomp_dyn32_phy32_intel -Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 291.961136 - 0: The maximum resident set size (KB) = 888120 - -Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_restart_dyn32_phy32_intel -Checking test 122 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 294.893484 - 0: The maximum resident set size (KB) = 783724 - -Test 122 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_restart_dyn32_phy32_intel -Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 159.013967 - 0: The maximum resident set size (KB) = 765744 - -Test 123 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_control_intel -Checking test 124 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 238.284184 - 0: The maximum resident set size (KB) = 1097172 - -Test 124 conus13km_control_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_2threads_intel -Checking test 125 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 1424.056822 - 0: The maximum resident set size (KB) = 1076040 - -Test 125 conus13km_2threads_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_restart_mismatch_intel -Checking test 126 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 62.067107 - 0: The maximum resident set size (KB) = 976684 - -Test 126 conus13km_restart_mismatch_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_intel -Checking test 127 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 362.031692 - 0: The maximum resident set size (KB) = 909668 - -Test 127 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_debug_dyn32_phy32_intel -Checking test 128 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +UFSWM hash used in testing: +0d31ac8854fee356e5409931c3cd5b85e9611a15 - 0: The total amount of wall time = 300.916820 - 0: The maximum resident set size (KB) = 1046288 - -Test 128 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hrrr_control_debug_dyn32_phy32_intel -Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 358.335556 - 0: The maximum resident set size (KB) = 1046684 - -Test 129 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_intel -Checking test 130 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 985.912212 - 0: The maximum resident set size (KB) = 1126976 - -Test 130 conus13km_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_qr_intel -Checking test 131 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 875.833694 - 0: The maximum resident set size (KB) = 801960 - -Test 131 conus13km_debug_qr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_debug_2threads_intel -Checking test 132 conus13km_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 538.071379 - 0: The maximum resident set size (KB) = 1108132 - -Test 132 conus13km_debug_2threads_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/conus13km_radar_tten_debug_intel -Checking test 133 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 1019.130042 - 0: The maximum resident set size (KB) = 1192772 - -Test 133 conus13km_radar_tten_debug_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/rap_control_dyn64_phy32_debug_intel -Checking test 134 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 327.827868 - 0: The maximum resident set size (KB) = 1071348 - -Test 134 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_intel -Checking test 135 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 394.859453 - 0: The maximum resident set size (KB) = 709124 - -Test 135 hafs_regional_atm_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 368.021818 - 0: The maximum resident set size (KB) = 1059212 - -Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_intel -Checking test 137 hafs_regional_atm_ocn_intel 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 = 563.980963 - 0: The maximum resident set size (KB) = 754340 - -Test 137 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_wav_intel -Checking test 138 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 818.485575 - 0: The maximum resident set size (KB) = 786392 - -Test 138 hafs_regional_atm_wav_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_atm_ocn_wav_intel -Checking test 139 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 970.221527 - 0: The maximum resident set size (KB) = 796688 - -Test 139 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_1nest_atm_intel -Checking test 140 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 299.241608 - 0: The maximum resident set size (KB) = 476680 - -Test 140 hafs_regional_1nest_atm_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_telescopic_2nests_atm_intel -Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 538.506677 - 0: The maximum resident set size (KB) = 500536 - -Test 141 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_1nest_atm_intel -Checking test 142 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 325.402668 - 0: The maximum resident set size (KB) = 372812 - -Test 142 hafs_global_1nest_atm_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_multiple_4nests_atm_intel -Checking test 143 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 607.170594 - 0: The maximum resident set size (KB) = 445928 - -Test 143 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_specified_moving_1nest_atm_intel -Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 299.932452 - 0: The maximum resident set size (KB) = 509036 - -Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 279.497011 - 0: The maximum resident set size (KB) = 511356 - -Test 145 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 271.799715 - 0: The maximum resident set size (KB) = 574688 - -Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_global_storm_following_1nest_atm_intel -Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 137.813885 - 0: The maximum resident set size (KB) = 403504 - -Test 147 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/gnv1_nested_intel -Checking test 148 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 301.671339 - 0: The maximum resident set size (KB) = 766116 - -Test 148 gnv1_nested_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - - 0: The total amount of wall time = 911.754544 - 0: The maximum resident set size (KB) = 583688 - -Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 579.569841 - 0: The maximum resident set size (KB) = 615088 - -Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 637.421633 - 0: The maximum resident set size (KB) = 781440 - -Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 457.873896 - 0: The maximum resident set size (KB) = 786932 - -Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_intel -Checking test 153 hafs_regional_docn_intel 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 = 530.960101 - 0: The maximum resident set size (KB) = 744864 - -Test 153 hafs_regional_docn_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_docn_oisst_intel -Checking test 154 hafs_regional_docn_oisst_intel 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 = 423.683802 - 0: The maximum resident set size (KB) = 731512 - -Test 154 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/hafs_regional_datm_cdeps_intel -Checking test 155 hafs_regional_datm_cdeps_intel 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 = 1206.080002 - 0: The maximum resident set size (KB) = 893656 - -Test 155 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_intel -Checking test 156 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 152.296553 - 0: The maximum resident set size (KB) = 756308 - -Test 156 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_restart_cfsr_intel -Checking test 157 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 110.710474 - 0: The maximum resident set size (KB) = 745016 - -Test 157 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_gefs_intel -Checking test 158 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 137.907340 - 0: The maximum resident set size (KB) = 637348 - -Test 158 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_iau_gefs_intel -Checking test 159 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 240.138601 - 0: The maximum resident set size (KB) = 637192 - -Test 159 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_stochy_gefs_intel -Checking test 160 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 241.081740 - 0: The maximum resident set size (KB) = 641328 - -Test 160 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_ciceC_cfsr_intel -Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 233.542610 - 0: The maximum resident set size (KB) = 744688 - -Test 161 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_cfsr_intel -Checking test 162 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 233.547377 - 0: The maximum resident set size (KB) = 756252 - -Test 162 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_bulk_gefs_intel -Checking test 163 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 225.922704 - 0: The maximum resident set size (KB) = 637292 - -Test 163 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_cfsr_intel -Checking test 164 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 547.149693 - 0: The maximum resident set size (KB) = 692740 - -Test 164 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_mx025_gefs_intel -Checking test 165 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 556.076418 - 0: The maximum resident set size (KB) = 672508 - -Test 165 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_multiple_files_cfsr_intel -Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 150.416845 - 0: The maximum resident set size (KB) = 755880 - -Test 166 datm_cdeps_multiple_files_cfsr_intel PASS Tries: 2 - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_3072x1536_cfsr_intel -Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 466.632408 - 0: The maximum resident set size (KB) = 2013792 - -Test 167 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_gfs_intel -Checking test 168 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 381.303280 - 0: The maximum resident set size (KB) = 2013628 - -Test 168 datm_cdeps_gfs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_debug_cfsr_intel -Checking test 169 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 341.693430 - 0: The maximum resident set size (KB) = 741424 - -Test 169 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_control_cfsr_faster_intel -Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 269.164372 - 0: The maximum resident set size (KB) = 756768 - -Test 170 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_gswp3_intel -Checking test 171 datm_cdeps_lnd_gswp3_intel 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 = 66.017192 - 0: The maximum resident set size (KB) = 319204 - -Test 171 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_intel -Checking test 172 datm_cdeps_lnd_era5_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 160.974419 - 0: The maximum resident set size (KB) = 456484 - -Test 172 datm_cdeps_lnd_era5_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/datm_cdeps_lnd_era5_rst_intel -Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 39.498505 - 0: The maximum resident set size (KB) = 456476 - -Test 173 datm_cdeps_lnd_era5_rst_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_sbs_intel -Checking test 174 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 496.918911 - 0: The maximum resident set size (KB) = 1642988 - -Test 174 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_p8_atmlnd_intel -Checking test 175 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 498.954219 - 0: The maximum resident set size (KB) = 1642236 - -Test 175 control_p8_atmlnd_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_restart_p8_atmlnd_intel -Checking test 176 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 190.940690 - 0: The maximum resident set size (KB) = 836732 - -Test 176 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmwav_control_noaero_p8_intel -Checking test 177 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 182.940262 - 0: The maximum resident set size (KB) = 1647332 - -Test 177 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/control_atmwav_intel -Checking test 178 control_atmwav_intel 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 - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 175.565771 - 0: The maximum resident set size (KB) = 638728 - -Test 178 control_atmwav_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_intel -Checking test 179 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 365.960012 - 0: The maximum resident set size (KB) = 2943092 - -Test 179 atmaero_control_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_intel -Checking test 180 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 279.156469 - 0: The maximum resident set size (KB) = 3011516 - -Test 180 atmaero_control_p8_rad_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/atmaero_control_p8_rad_micro_intel -Checking test 181 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 337.781265 - 0: The maximum resident set size (KB) = 3018336 - -Test 181 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_238940/regional_atmaq_debug_intel -Checking test 182 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1087.640368 - 0: The maximum resident set size (KB) = 4484540 - -Test 182 regional_atmaq_debug_intel PASS - -FAILED TESTS: -control_c384_intel 040 failed in run_test -control_decomp_p8_intel 053 failed in run_test -rap_sfcdiff_intel 072 failed in run_test -rap_noah_sfcdiff_cires_ugwp_debug_intel 110 failed in run_test - -REGRESSION TEST FAILED -Tue 13 Feb 2024 10:52:07 PM EST -Elapsed time: 01h:42m:06s. Have a nice day! -Wed 14 Feb 2024 03:43:30 PM EST -Start Regression test - -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 410 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_c384_intel -Checking test 001 control_c384_intel 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 - - 0: The total amount of wall time = 961.784505 - 0: The maximum resident set size (KB) = 1040328 - -Test 001 control_c384_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/control_decomp_p8_intel -Checking test 002 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 153.274697 - 0: The maximum resident set size (KB) = 1595576 - -Test 002 control_decomp_p8_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_sfcdiff_intel -Checking test 003 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 379.638130 - 0: The maximum resident set size (KB) = 1006728 - -Test 003 rap_sfcdiff_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_99753/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 449.445488 - 0: The maximum resident set size (KB) = 1168284 - -Test 004 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -REGRESSION TEST WAS SUCCESSFUL -Wed 14 Feb 2024 04:15:50 PM EST -Elapsed time: 00h:32m:25s. Have a nice day! -Wed 14 Feb 2024 06:07:11 PM EST -Start Regression test - -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile rrfs_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_intel -Checking test 001 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 374.833523 - 0: The maximum resident set size (KB) = 1006704 - -Test 001 rap_sfcdiff_intel PASS - - -baseline dir = /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_166466/rap_sfcdiff_restart_intel -Checking test 002 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 277.608350 - 0: The maximum resident set size (KB) = 878472 - -Test 002 rap_sfcdiff_restart_intel PASS -REGRESSION TEST WAS SUCCESSFUL -Wed 14 Feb 2024 06:35:45 PM EST -Elapsed time: 00h:28m:40s. Have a nice day! +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/FV3_RT/rt_35653 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:54] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:20, 05:14](3075 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:06] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:08, 13:20](1692 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:03, 14:05](1809 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 06:30](945 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 14:30](1662 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:08, 07:23] +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:07, 24:43](1698 MB) + +PASS -- COMPILE 's2swa_intel' [14:09, 12:34] +PASS -- TEST 'cpld_control_p8_intel' [08:15, 06:01](3098 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:23, 05:58](3097 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:10, 03:33](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:59](3124 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 03:40](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:24](3410 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:56](3098 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:16, 05:02](3022 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:23, 06:00](3098 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:07, 09:54](3271 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:47](3602 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 12:14](4036 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:10, 08:38](4347 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:15, 05:42](3068 MB) + +PASS -- COMPILE 's2sw_intel' [13:09, 11:54] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:23](1688 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:36](1732 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:08, 07:18] +PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:28](3129 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:08, 06:30] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:44](1698 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:09, 10:55] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1731 MB) + +PASS -- COMPILE 's2s_intel' [12:09, 10:53] +PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2659 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:52] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:52](3098 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:39] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:07, 14:41](1702 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:10](1001 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 17:03](1679 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:08, 06:58] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:38](1711 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:09, 10:26] +PASS -- TEST 'control_flake_intel' [07:27, 03:28](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 02:19](617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:33, 02:20](625 MB) +PASS -- TEST 'control_latlon_intel' [04:24, 02:18](620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:19](620 MB) +PASS -- TEST 'control_c48_intel' [07:35, 05:35](726 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:35](720 MB) +PASS -- TEST 'control_c192_intel' [12:33, 08:31](737 MB) +PASS -- TEST 'control_c384_intel' [19:54, 16:16](1039 MB) +PASS -- TEST 'control_c384gdas_intel' [18:39, 13:58](1182 MB) +PASS -- TEST 'control_stochy_intel' [04:24, 01:37](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:59](428 MB) +PASS -- TEST 'control_lndp_intel' [03:24, 01:31](626 MB) +PASS -- TEST 'control_iovr4_intel' [05:27, 02:20](620 MB) +PASS -- TEST 'control_iovr5_intel' [05:27, 02:19](620 MB) +PASS -- TEST 'control_p8_intel' [06:43, 02:44](1608 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 02:45](1608 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 02:39](1610 MB) +PASS -- TEST 'control_restart_p8_intel' [03:40, 01:34](791 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:44, 02:41](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:32](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:43, 02:48](1596 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:24](1680 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:39, 04:44](1608 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:38](1658 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:44](1614 MB) +PASS -- TEST 'merra2_thompson_intel' [05:44, 03:15](1615 MB) +PASS -- TEST 'regional_control_intel' [06:29, 04:36](619 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:29](791 MB) +PASS -- TEST 'regional_decomp_intel' [06:29, 04:49](617 MB) +PASS -- TEST 'regional_2threads_intel' [04:29, 02:50](761 MB) +PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1156 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:36](618 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:39](619 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 05:59](1593 MB) + +PASS -- COMPILE 'rrfs_intel' [11:09, 09:31] +PASS -- TEST 'rap_control_intel' [08:37, 06:33](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:56](1177 MB) +PASS -- TEST 'rap_decomp_intel' [08:36, 06:32](1007 MB) +PASS -- TEST 'rap_2threads_intel' [07:40, 05:55](1093 MB) +PASS -- TEST 'rap_restart_intel' [05:37, 03:27](876 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:26](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:43](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:51](876 MB) +PASS -- TEST 'hrrr_control_intel' [05:38, 03:26](1003 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:29](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:00](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:54](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:27](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:42](1964 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:31](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [11:09, 09:08] +PASS -- TEST 'control_csawmg_intel' [07:30, 05:32](696 MB) +PASS -- TEST 'control_csawmgt_intel' [07:29, 05:28](693 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:07](658 MB) + +PASS -- COMPILE 'wam_intel' [10:09, 08:42] +PASS -- TEST 'control_wam_intel' [04:19, 02:09](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:55] +PASS -- TEST 'control_p8_faster_intel' [04:43, 02:39](1606 MB) +PASS -- TEST 'regional_control_faster_intel' [06:28, 04:24](613 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:30] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:25, 02:43](778 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:43](782 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:03](785 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](789 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:26, 04:03](823 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:08](823 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](796 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](843 MB) +PASS -- TEST 'control_debug_p8_intel' [04:26, 02:51](1619 MB) +PASS -- TEST 'regional_debug_intel' [17:36, 16:12](632 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:55](1165 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:57](1164 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:53](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:57](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:00](1165 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:06](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:00](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:06](1166 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:01](1167 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1165 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:47](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:55](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:50](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1161 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:59](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:25](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:07, 05:04] +PASS -- TEST 'control_wam_debug_intel' [06:20, 05:02](391 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:08, 08:49] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:46](1053 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 05:29](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:57](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:00](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:38](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:05](888 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:09](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:39](765 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:26] +PASS -- TEST 'conus13km_control_intel' [04:02, 01:57](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:02](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 09:15] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:55](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 05:21] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:52](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:42](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:04, 13:31](1128 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 13:44](802 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:07](1110 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:53](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:53](1068 MB) + +PASS -- COMPILE 'hafsw_intel' [12:09, 11:06] +PASS -- TEST 'hafs_regional_atm_intel' [08:09, 05:16](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:27](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:38](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:09, 11:33](787 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:20, 12:56](795 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 05:14](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:16, 06:40](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 02:55](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 07:52](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:41](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:27](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:25](567 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:41](404 MB) +PASS -- TEST 'gnv1_nested_intel' [05:52, 03:53](771 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:08, 06:23] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:56, 13:15](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:24] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:40](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:41](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:27] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 06:00](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:10, 10:42] +PASS -- TEST 'hafs_regional_docn_intel' [08:15, 05:58](747 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 06:03](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:10, 16:08](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:09, 09:41] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:30](756 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:30](745 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](637 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](637 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:21](637 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:28](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:28](756 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:19](637 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:53, 05:49](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 05:48](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:28](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:38](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:08, 05:36] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:23](739 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 10:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:28](744 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:01] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:16](319 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:07](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:52](456 MB) + +PASS -- COMPILE 'atml_intel' [13:08, 11:22] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:04, 06:15](1642 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:16](1642 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:29](837 MB) + +PASS -- COMPILE 'atmw_intel' [12:08, 10:20] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:43](1648 MB) + +PASS -- COMPILE 'atmwm_intel' [11:08, 10:01] +PASS -- TEST 'control_atmwav_intel' [03:34, 01:39](638 MB) + +PASS -- COMPILE 'atmaero_intel' [11:09, 09:29] +PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:24](2942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:52](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 05:01](3018 MB) + +PASS -- COMPILE 'atmaq_intel' [11:08, 09:35] + +PASS -- COMPILE 'atmaq_debug_intel' [07:07, 05:51] +PASS -- TEST 'regional_atmaq_debug_intel' [21:11, 18:21](4483 MB) + +SYNOPSIS: +Starting Date/Time: 20240219 09:48:12 +Ending Date/Time: 20240219 11:12:09 +Total Time: 01h:24m:16s +Compiles Completed: 39/39 +Tests Completed: 182/182 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF GAEA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 36c189d20a..646ee765d0 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,8234 +1,397 @@ -Tue Feb 13 22:05:05 UTC 2024 -Start Regression test +====START OF HERA REGRESSION TESTING LOG==== -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +UFSWM hash used in testing: +0d31ac8854fee356e5409931c3cd5b85e9611a15 + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 271 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 198 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 203 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 300 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 632 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 595 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 191 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 570 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 640 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 609 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 595 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 377 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 808 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 382 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 58 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 639 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 672 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 237 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 677 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 664 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 646 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 837 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 669 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 240 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 685 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 124 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 238 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 846 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 887 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 719 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 259 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 134 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 247 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 982 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 836 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 732 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 100 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 306.162434 - 0: The maximum resident set size (KB) = 3177916 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 968.998956 - 0: The maximum resident set size (KB) = 1735588 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 989.232112 - 0: The maximum resident set size (KB) = 2013228 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 444.956503 - 0: The maximum resident set size (KB) = 1105260 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1077.253317 - 0: The maximum resident set size (KB) = 1632176 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1326.420367 - 0: The maximum resident set size (KB) = 1676540 - -Test 006 cpld_debug_gfsv17_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 329.579588 - 0: The maximum resident set size (KB) = 3153600 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 325.639483 - 0: The maximum resident set size (KB) = 3198172 - -Test 008 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 188.165361 - 0: The maximum resident set size (KB) = 3216844 - -Test 009 cpld_restart_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 330.401607 - 0: The maximum resident set size (KB) = 3222660 - -Test 010 cpld_control_qr_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 190.367743 - 0: The maximum resident set size (KB) = 3263160 - -Test 011 cpld_restart_qr_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_2threads_p8_intel -Checking test 012 cpld_2threads_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 313.046528 - 0: The maximum resident set size (KB) = 3538236 - -Test 012 cpld_2threads_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_decomp_p8_intel -Checking test 013 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 361.106015 - 0: The maximum resident set size (KB) = 3190880 - -Test 013 cpld_decomp_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_p8_intel -Checking test 014 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 272.126792 - 0: The maximum resident set size (KB) = 3036460 - -Test 014 cpld_mpi_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_ciceC_p8_intel -Checking test 015 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 332.067931 - 0: The maximum resident set size (KB) = 3198452 - -Test 015 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c192_p8_intel -Checking test 016 cpld_control_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 574.382600 - 0: The maximum resident set size (KB) = 3323308 - -Test 016 cpld_control_c192_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_c192_p8_intel -Checking test 017 cpld_restart_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 348.063826 - 0: The maximum resident set size (KB) = 3601716 - -Test 017 cpld_restart_c192_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_bmark_p8_intel -Checking test 018 cpld_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 584.257718 - 0: The maximum resident set size (KB) = 4104988 - -Test 018 cpld_bmark_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_bmark_p8_intel -Checking test 019 cpld_restart_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 380.069043 - 0: The maximum resident set size (KB) = 4311528 - -Test 019 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_s2sa_p8_intel -Checking test 020 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 309.495065 - 0: The maximum resident set size (KB) = 3116144 - -Test 020 cpld_s2sa_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_intel -Checking test 021 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 259.170830 - 0: The maximum resident set size (KB) = 1724868 - -Test 021 cpld_control_noaero_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_intel -Checking test 022 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 248.373795 - 0: The maximum resident set size (KB) = 1726384 - -Test 022 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_intel -Checking test 023 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 468.095557 - 0: The maximum resident set size (KB) = 3230788 - -Test 023 cpld_debug_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_noaero_p8_intel -Checking test 024 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 329.356604 - 0: The maximum resident set size (KB) = 1739652 - -Test 024 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_noaero_p8_agrid_intel -Checking test 025 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 252.680842 - 0: The maximum resident set size (KB) = 1763624 - -Test 025 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_c48_intel -Checking test 026 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 547.558782 - 0: The maximum resident set size (KB) = 2834556 - -Test 026 cpld_control_c48_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_faster_intel -Checking test 027 cpld_control_p8_faster_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 312.226704 - 0: The maximum resident set size (KB) = 3153648 - -Test 027 cpld_control_p8_faster_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_intel -Checking test 028 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 970.148394 - 0: The maximum resident set size (KB) = 1761512 - -Test 028 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_restart_pdlib_p8_intel -Checking test 029 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 446.820891 - 0: The maximum resident set size (KB) = 1164280 - -Test 029 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_mpi_pdlib_p8_intel -Checking test 030 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1103.855854 - 0: The maximum resident set size (KB) = 1663148 - -Test 030 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_intel -Checking test 031 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1451.515831 - 0: The maximum resident set size (KB) = 1707568 - -Test 031 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_intel -Checking test 032 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 219.217790 - 0: The maximum resident set size (KB) = 693864 - -Test 032 control_flake_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_intel -Checking test 033 control_CubedSphereGrid_intel 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 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 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 - - 0: The total amount of wall time = 133.045207 - 0: The maximum resident set size (KB) = 648436 - -Test 033 control_CubedSphereGrid_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_parallel_intel -Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_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 = 139.205123 - 0: The maximum resident set size (KB) = 656152 - -Test 034 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_latlon_intel -Checking test 035 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 134.140836 - 0: The maximum resident set size (KB) = 641040 - -Test 035 control_latlon_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_intel -Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 137.680870 - 0: The maximum resident set size (KB) = 651660 - -Test 036 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_intel -Checking test 037 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 372.313279 -0: The maximum resident set size (KB) = 873512 - -Test 037 control_c48_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48.v2.sfc_intel -Checking test 038 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 366.728143 -0: The maximum resident set size (KB) = 875888 - -Test 038 control_c48.v2.sfc_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c192_intel -Checking test 039 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 529.665888 - 0: The maximum resident set size (KB) = 829532 - -Test 039 control_c192_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384_intel -Checking test 040 control_c384_intel 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 - - 0: The total amount of wall time = 535.347948 - 0: The maximum resident set size (KB) = 1278920 - -Test 040 control_c384_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c384gdas_intel -Checking test 041 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 461.803514 - 0: The maximum resident set size (KB) = 1372832 - -Test 041 control_c384gdas_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_intel -Checking test 042 control_stochy_intel 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 - - 0: The total amount of wall time = 87.259183 - 0: The maximum resident set size (KB) = 630120 - -Test 042 control_stochy_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_restart_intel -Checking test 043 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 48.160569 - 0: The maximum resident set size (KB) = 486068 - -Test 043 control_stochy_restart_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_intel -Checking test 044 control_lndp_intel 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 - - 0: The total amount of wall time = 121.485822 - 0: The maximum resident set size (KB) = 619644 - -Test 044 control_lndp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr4_intel -Checking test 045 control_iovr4_intel 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 - - 0: The total amount of wall time = 170.093964 - 0: The maximum resident set size (KB) = 655032 - -Test 045 control_iovr4_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_iovr5_intel -Checking test 046 control_iovr5_intel 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 - - 0: The total amount of wall time = 161.361556 - 0: The maximum resident set size (KB) = 652584 - -Test 046 control_iovr5_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_intel -Checking test 047 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 198.270991 - 0: The maximum resident set size (KB) = 1601308 - -Test 047 control_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8.v2.sfc_intel -Checking test 048 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 188.680172 - 0: The maximum resident set size (KB) = 1625576 - -Test 048 control_p8.v2.sfc_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_intel -Checking test 049 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 192.767254 - 0: The maximum resident set size (KB) = 1620224 - -Test 049 control_p8_ugwpv1_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_intel -Checking test 050 control_restart_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 86.418564 - 0: The maximum resident set size (KB) = 854284 - -Test 050 control_restart_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_noqr_p8_intel -Checking test 051 control_noqr_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 191.623950 - 0: The maximum resident set size (KB) = 1603972 - -Test 051 control_noqr_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_noqr_p8_intel -Checking test 052 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 85.065777 - 0: The maximum resident set size (KB) = 919876 - -Test 052 control_restart_noqr_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_decomp_p8_intel -Checking test 053 control_decomp_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 196.597206 - 0: The maximum resident set size (KB) = 1596456 - -Test 053 control_decomp_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_2threads_p8_intel -Checking test 054 control_2threads_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 155.241568 - 0: The maximum resident set size (KB) = 1703448 - -Test 054 control_2threads_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_lndp_intel -Checking test 055 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 300.378090 - 0: The maximum resident set size (KB) = 1617272 - -Test 055 control_p8_lndp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_rrtmgp_intel -Checking test 056 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 219.686115 - 0: The maximum resident set size (KB) = 1688940 - -Test 056 control_p8_rrtmgp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_mynn_intel -Checking test 057 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 167.553918 - 0: The maximum resident set size (KB) = 1627868 - -Test 057 control_p8_mynn_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/merra2_thompson_intel -Checking test 058 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 195.904406 - 0: The maximum resident set size (KB) = 1597612 - -Test 058 merra2_thompson_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_intel -Checking test 059 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 297.111104 - 0: The maximum resident set size (KB) = 844020 - -Test 059 regional_control_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_restart_intel -Checking test 060 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 152.647192 - 0: The maximum resident set size (KB) = 1020648 - -Test 060 regional_restart_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_decomp_intel -Checking test 061 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 315.300011 - 0: The maximum resident set size (KB) = 843540 - -Test 061 regional_decomp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2threads_intel -Checking test 062 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 181.531408 - 0: The maximum resident set size (KB) = 849288 - -Test 062 regional_2threads_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_noquilt_intel -Checking test 063 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 296.596214 - 0: The maximum resident set size (KB) = 1338020 - -Test 063 regional_noquilt_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_netcdf_parallel_intel -Checking test 064 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 295.692822 - 0: The maximum resident set size (KB) = 824912 - -Test 064 regional_netcdf_parallel_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_2dwrtdecomp_intel -Checking test 065 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 296.807985 - 0: The maximum resident set size (KB) = 842696 - -Test 065 regional_2dwrtdecomp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_wofs_intel -Checking test 066 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 385.259392 - 0: The maximum resident set size (KB) = 1879360 - -Test 066 regional_wofs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_intel -Checking test 067 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 447.735147 - 0: The maximum resident set size (KB) = 1099376 - -Test 067 rap_control_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_intel -Checking test 068 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 235.685180 - 0: The maximum resident set size (KB) = 1278088 - -Test 068 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_intel -Checking test 069 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 469.659764 - 0: The maximum resident set size (KB) = 1030576 - -Test 069 rap_decomp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_intel -Checking test 070 rap_2threads_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 420.896042 - 0: The maximum resident set size (KB) = 1184648 - -Test 070 rap_2threads_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_intel -Checking test 071 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 229.408216 - 0: The maximum resident set size (KB) = 1097416 - -Test 071 rap_restart_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_intel -Checking test 072 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 447.562148 - 0: The maximum resident set size (KB) = 1098228 - -Test 072 rap_sfcdiff_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_intel -Checking test 073 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 470.716123 - 0: The maximum resident set size (KB) = 1009520 - -Test 073 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_intel -Checking test 074 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 336.116479 - 0: The maximum resident set size (KB) = 1137972 - -Test 074 rap_sfcdiff_restart_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_intel -Checking test 075 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 225.478341 - 0: The maximum resident set size (KB) = 1041296 - -Test 075 hrrr_control_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_intel -Checking test 076 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 233.152144 - 0: The maximum resident set size (KB) = 1022816 - -Test 076 hrrr_control_decomp_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_intel -Checking test 077 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 207.935391 - 0: The maximum resident set size (KB) = 1107352 - -Test 077 hrrr_control_2threads_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_intel -Checking test 078 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 119.176374 - 0: The maximum resident set size (KB) = 994600 - -Test 078 hrrr_control_restart_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_intel -Checking test 079 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 440.927449 - 0: The maximum resident set size (KB) = 1104044 - -Test 079 rrfs_v1beta_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_intel -Checking test 080 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 533.500649 - 0: The maximum resident set size (KB) = 1991272 - -Test 080 rrfs_v1nssl_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1nssl_nohailnoccn_intel -Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 516.732822 - 0: The maximum resident set size (KB) = 2069664 - -Test 081 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_intel -Checking test 082 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 339.421327 - 0: The maximum resident set size (KB) = 743976 - -Test 082 control_csawmg_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_intel -Checking test 083 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 334.268638 - 0: The maximum resident set size (KB) = 742284 - -Test 083 control_csawmgt_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_intel -Checking test 084 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 185.300313 - 0: The maximum resident set size (KB) = 723772 - -Test 084 control_ras_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_intel -Checking test 085 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 112.819380 - 0: The maximum resident set size (KB) = 624276 - -Test 085 control_wam_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_faster_intel -Checking test 086 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 146.236272 - 0: The maximum resident set size (KB) = 1596032 - -Test 086 control_p8_faster_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_control_faster_intel -Checking test 087 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 268.452383 - 0: The maximum resident set size (KB) = 820308 - -Test 087 regional_control_faster_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_CubedSphereGrid_debug_intel -Checking test 088 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 144.759495 - 0: The maximum resident set size (KB) = 808376 - -Test 088 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel 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.056577 - 0: The maximum resident set size (KB) = 782400 - -Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_intel -Checking test 090 control_stochy_debug_intel 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.621498 - 0: The maximum resident set size (KB) = 814680 - -Test 090 control_stochy_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_lndp_debug_intel -Checking test 091 control_lndp_debug_intel 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.698374 - 0: The maximum resident set size (KB) = 814644 - -Test 091 control_lndp_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmg_debug_intel -Checking test 092 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 234.371275 - 0: The maximum resident set size (KB) = 860512 - -Test 092 control_csawmg_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_csawmgt_debug_intel -Checking test 093 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 228.111782 - 0: The maximum resident set size (KB) = 860092 - -Test 093 control_csawmgt_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_intel -Checking test 094 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 151.576216 - 0: The maximum resident set size (KB) = 793132 - -Test 094 control_ras_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_intel -Checking test 095 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 155.262698 - 0: The maximum resident set size (KB) = 867480 - -Test 095 control_diag_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_intel -Checking test 096 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 153.030753 - 0: The maximum resident set size (KB) = 1633432 - -Test 096 control_debug_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_intel -Checking test 097 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 995.960551 - 0: The maximum resident set size (KB) = 817920 - -Test 097 regional_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_intel -Checking test 098 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 275.491454 - 0: The maximum resident set size (KB) = 1199824 - -Test 098 rap_control_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_intel -Checking test 099 hrrr_control_debug_intel 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.612901 - 0: The maximum resident set size (KB) = 1192940 - -Test 099 hrrr_control_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_intel -Checking test 100 hrrr_gf_debug_intel 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.402722 - 0: The maximum resident set size (KB) = 1196360 - -Test 100 hrrr_gf_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_intel -Checking test 101 hrrr_c3_debug_intel 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.037371 - 0: The maximum resident set size (KB) = 1175036 - -Test 101 hrrr_c3_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_drag_suite_debug_intel -Checking test 102 rap_unified_drag_suite_debug_intel 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.615026 - 0: The maximum resident set size (KB) = 1196244 - -Test 102 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_intel -Checking test 103 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 290.502510 - 0: The maximum resident set size (KB) = 1288436 - -Test 103 rap_diag_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_cires_ugwp_debug_intel -Checking test 104 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 277.043924 - 0: The maximum resident set size (KB) = 1204060 - -Test 104 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_unified_ugwp_debug_intel -Checking test 105 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 283.104663 - 0: The maximum resident set size (KB) = 1192512 - -Test 105 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_lndp_debug_intel -Checking test 106 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 277.681121 - 0: The maximum resident set size (KB) = 1198384 - -Test 106 rap_lndp_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_intel -Checking test 107 rap_progcld_thompson_debug_intel 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.242241 - 0: The maximum resident set size (KB) = 1185836 - -Test 107 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_debug_intel -Checking test 108 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 273.000390 - 0: The maximum resident set size (KB) = 1173384 - -Test 108 rap_noah_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_debug_intel -Checking test 109 rap_sfcdiff_debug_intel 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.460737 - 0: The maximum resident set size (KB) = 1195484 - -Test 109 rap_sfcdiff_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 451.967356 - 0: The maximum resident set size (KB) = 1194252 - -Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_intel -Checking test 111 rrfs_v1beta_debug_intel 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.708863 - 0: The maximum resident set size (KB) = 1160852 - -Test 111 rrfs_v1beta_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_intel -Checking test 112 rap_clm_lake_debug_intel 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.376767 - 0: The maximum resident set size (KB) = 1169504 - -Test 112 rap_clm_lake_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_intel -Checking test 113 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 273.928310 - 0: The maximum resident set size (KB) = 1195328 - -Test 113 rap_flake_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_intel -Checking test 114 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 470.323268 - 0: The maximum resident set size (KB) = 1202908 - -Test 114 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_intel -Checking test 115 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 276.074908 - 0: The maximum resident set size (KB) = 513360 - -Test 115 control_wam_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 222.475271 - 0: The maximum resident set size (KB) = 1162940 - -Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_intel -Checking test 117 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 368.075415 - 0: The maximum resident set size (KB) = 1020500 - -Test 117 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_intel -Checking test 118 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 192.241907 - 0: The maximum resident set size (KB) = 959544 - -Test 118 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_intel -Checking test 119 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 351.161966 - 0: The maximum resident set size (KB) = 1080448 - -Test 119 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_intel -Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 177.729941 - 0: The maximum resident set size (KB) = 948624 - -Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_intel -Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 205.199349 - 0: The maximum resident set size (KB) = 922672 - -Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_intel -Checking test 122 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 276.234428 - 0: The maximum resident set size (KB) = 1034432 - -Test 122 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_intel -Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 100.806208 - 0: The maximum resident set size (KB) = 925616 - -Test 123 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_intel -Checking test 124 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 112.828621 - 0: The maximum resident set size (KB) = 1194604 - -Test 124 conus13km_control_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_intel -Checking test 125 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 45.110413 - 0: The maximum resident set size (KB) = 1090944 - -Test 125 conus13km_2threads_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_intel -Checking test 126 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 61.418232 - 0: The maximum resident set size (KB) = 1104032 - -Test 126 conus13km_restart_mismatch_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_intel -Checking test 127 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 243.026396 - 0: The maximum resident set size (KB) = 987972 - -Test 127 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_intel -Checking test 128 rap_control_debug_dyn32_phy32_intel 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.347578 - 0: The maximum resident set size (KB) = 1072192 - -Test 128 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_intel -Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 263.556254 - 0: The maximum resident set size (KB) = 1073740 - -Test 129 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_intel -Checking test 130 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 819.902654 - 0: The maximum resident set size (KB) = 1206660 - -Test 130 conus13km_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_intel -Checking test 131 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 827.951578 - 0: The maximum resident set size (KB) = 908752 - -Test 131 conus13km_debug_qr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_intel -Checking test 132 conus13km_debug_2threads_intel 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.311316 - 0: The maximum resident set size (KB) = 1127864 - -Test 132 conus13km_debug_2threads_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_intel -Checking test 133 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 815.471007 - 0: The maximum resident set size (KB) = 1298260 - -Test 133 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_intel -Checking test 134 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 275.023432 - 0: The maximum resident set size (KB) = 1114132 - -Test 134 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_intel -Checking test 135 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 272.728122 - 0: The maximum resident set size (KB) = 734208 - -Test 135 hafs_regional_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 340.316314 - 0: The maximum resident set size (KB) = 1116340 - -Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_intel -Checking test 137 hafs_regional_atm_ocn_intel 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 = 393.271755 - 0: The maximum resident set size (KB) = 829884 - -Test 137 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_wav_intel -Checking test 138 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 766.764748 - 0: The maximum resident set size (KB) = 851056 - -Test 138 hafs_regional_atm_wav_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_atm_ocn_wav_intel -Checking test 139 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 872.297813 - 0: The maximum resident set size (KB) = 880940 - -Test 139 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_1nest_atm_intel -Checking test 140 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 305.063069 - 0: The maximum resident set size (KB) = 499900 - -Test 140 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_telescopic_2nests_atm_intel -Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 370.430456 - 0: The maximum resident set size (KB) = 519276 - -Test 141 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_1nest_atm_intel -Checking test 142 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 142.808134 - 0: The maximum resident set size (KB) = 371724 - -Test 142 hafs_global_1nest_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_multiple_4nests_atm_intel -Checking test 143 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 405.139106 - 0: The maximum resident set size (KB) = 482556 - -Test 143 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_specified_moving_1nest_atm_intel -Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 202.950076 - 0: The maximum resident set size (KB) = 527260 - -Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 191.898417 - 0: The maximum resident set size (KB) = 501616 - -Test 145 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 231.571873 - 0: The maximum resident set size (KB) = 579512 - -Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_global_storm_following_1nest_atm_intel -Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 61.329785 - 0: The maximum resident set size (KB) = 410592 - -Test 147 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_nested_intel -Checking test 148 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 225.085301 - 0: The maximum resident set size (KB) = 773060 - -Test 148 gnv1_nested_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - - 0: The total amount of wall time = 730.627266 - 0: The maximum resident set size (KB) = 566096 - -Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 501.588021 - 0: The maximum resident set size (KB) = 666832 - -Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 501.186817 - 0: The maximum resident set size (KB) = 712472 - -Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 369.989170 - 0: The maximum resident set size (KB) = 725280 - -Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_intel -Checking test 153 hafs_regional_docn_intel 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 = 360.104666 - 0: The maximum resident set size (KB) = 821512 - -Test 153 hafs_regional_docn_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_docn_oisst_intel -Checking test 154 hafs_regional_docn_oisst_intel 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 = 365.893227 - 0: The maximum resident set size (KB) = 809828 - -Test 154 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hafs_regional_datm_cdeps_intel -Checking test 155 hafs_regional_datm_cdeps_intel 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 = 953.706355 - 0: The maximum resident set size (KB) = 1218248 - -Test 155 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_intel -Checking test 156 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 189.001440 - 0: The maximum resident set size (KB) = 1120900 - -Test 156 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_restart_cfsr_intel -Checking test 157 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 87.265260 - 0: The maximum resident set size (KB) = 1082788 - -Test 157 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_gefs_intel -Checking test 158 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 151.730363 - 0: The maximum resident set size (KB) = 1007752 - -Test 158 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_iau_gefs_intel -Checking test 159 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 145.879436 - 0: The maximum resident set size (KB) = 1009984 - -Test 159 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_stochy_gefs_intel -Checking test 160 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 146.932874 - 0: The maximum resident set size (KB) = 1010392 - -Test 160 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_ciceC_cfsr_intel -Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 151.125900 - 0: The maximum resident set size (KB) = 1116792 - -Test 161 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_cfsr_intel -Checking test 162 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 146.462636 - 0: The maximum resident set size (KB) = 1128076 - -Test 162 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_bulk_gefs_intel -Checking test 163 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 145.947523 - 0: The maximum resident set size (KB) = 999268 - -Test 163 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_cfsr_intel -Checking test 164 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 363.063857 - 0: The maximum resident set size (KB) = 1050356 - -Test 164 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_mx025_gefs_intel -Checking test 165 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 354.761206 - 0: The maximum resident set size (KB) = 1034624 - -Test 165 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_multiple_files_cfsr_intel -Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.107517 - 0: The maximum resident set size (KB) = 1120856 - -Test 166 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_3072x1536_cfsr_intel -Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 237.146043 - 0: The maximum resident set size (KB) = 2479192 - -Test 167 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_gfs_intel -Checking test 168 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 221.421138 - 0: The maximum resident set size (KB) = 2478172 - -Test 168 datm_cdeps_gfs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_debug_cfsr_intel -Checking test 169 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 351.095459 - 0: The maximum resident set size (KB) = 1058080 - -Test 169 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_faster_intel -Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 150.920541 - 0: The maximum resident set size (KB) = 1132024 - -Test 170 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_gswp3_intel -Checking test 171 datm_cdeps_lnd_gswp3_intel 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 = 37.105463 - 0: The maximum resident set size (KB) = 250892 - -Test 171 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_intel -Checking test 172 datm_cdeps_lnd_era5_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 39.542885 - 0: The maximum resident set size (KB) = 320320 - -Test 172 datm_cdeps_lnd_era5_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_lnd_era5_rst_intel -Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 23.025351 - 0: The maximum resident set size (KB) = 314804 - -Test 173 datm_cdeps_lnd_era5_rst_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_sbs_intel -Checking test 174 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 246.716362 - 0: The maximum resident set size (KB) = 1590836 - -Test 174 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_atmlnd_intel -Checking test 175 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 252.164238 - 0: The maximum resident set size (KB) = 1585804 - -Test 175 control_p8_atmlnd_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_restart_p8_atmlnd_intel -Checking test 176 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 125.134389 - 0: The maximum resident set size (KB) = 896504 - -Test 176 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmwav_control_noaero_p8_intel -Checking test 177 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 96.948025 - 0: The maximum resident set size (KB) = 1648620 - -Test 177 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_atmwav_intel -Checking test 178 control_atmwav_intel 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 - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 91.828471 - 0: The maximum resident set size (KB) = 664536 - -Test 178 control_atmwav_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_intel -Checking test 179 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 227.689705 - 0: The maximum resident set size (KB) = 3018296 - -Test 179 atmaero_control_p8_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_intel -Checking test 180 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 273.550039 - 0: The maximum resident set size (KB) = 3077780 - -Test 180 atmaero_control_p8_rad_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/atmaero_control_p8_rad_micro_intel -Checking test 181 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 294.145161 - 0: The maximum resident set size (KB) = 3076980 - -Test 181 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_atmaq_debug_intel -Checking test 182 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 1213.370191 - 0: The maximum resident set size (KB) = 4389792 - -Test 182 regional_atmaq_debug_intel PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_c48_gnu -Checking test 183 control_c48_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 688.205308 -0: The maximum resident set size (KB) = 792912 - -Test 183 control_c48_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_gnu -Checking test 184 control_stochy_gnu 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 - - 0: The total amount of wall time = 234.476749 - 0: The maximum resident set size (KB) = 553528 - -Test 184 control_stochy_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_gnu -Checking test 185 control_ras_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 283.764946 - 0: The maximum resident set size (KB) = 556652 - -Test 185 control_ras_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_gnu -Checking test 186 control_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 277.806156 - 0: The maximum resident set size (KB) = 1307552 - -Test 186 control_p8_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_p8_ugwpv1_gnu -Checking test 187 control_p8_ugwpv1_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 272.738007 - 0: The maximum resident set size (KB) = 1312752 - -Test 187 control_p8_ugwpv1_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_flake_gnu -Checking test 188 control_flake_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 340.912455 - 0: The maximum resident set size (KB) = 601132 - -Test 188 control_flake_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_gnu -Checking test 189 rap_control_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 690.371459 - 0: The maximum resident set size (KB) = 900684 - -Test 189 rap_control_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_decomp_gnu -Checking test 190 rap_decomp_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 695.688780 - 0: The maximum resident set size (KB) = 901716 - -Test 190 rap_decomp_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_gnu -Checking test 191 rap_2threads_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 617.489798 - 0: The maximum resident set size (KB) = 980016 - -Test 191 rap_2threads_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_gnu -Checking test 192 rap_restart_gnu results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 356.741640 - 0: The maximum resident set size (KB) = 624140 - -Test 192 rap_restart_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_gnu -Checking test 193 rap_sfcdiff_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 689.306122 - 0: The maximum resident set size (KB) = 898992 - -Test 193 rap_sfcdiff_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_decomp_gnu -Checking test 194 rap_sfcdiff_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 696.391226 - 0: The maximum resident set size (KB) = 897384 - -Test 194 rap_sfcdiff_decomp_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_sfcdiff_restart_gnu -Checking test 195 rap_sfcdiff_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 517.381590 - 0: The maximum resident set size (KB) = 623932 - -Test 195 rap_sfcdiff_restart_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_gnu -Checking test 196 hrrr_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 348.759366 - 0: The maximum resident set size (KB) = 891576 - -Test 196 hrrr_control_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_noqr_gnu -Checking test 197 hrrr_control_noqr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 349.405197 - 0: The maximum resident set size (KB) = 881776 - -Test 197 hrrr_control_noqr_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_gnu -Checking test 198 hrrr_control_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 303.918514 - 0: The maximum resident set size (KB) = 984328 - -Test 198 hrrr_control_2threads_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_gnu -Checking test 199 hrrr_control_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 351.623950 - 0: The maximum resident set size (KB) = 897492 - -Test 199 hrrr_control_decomp_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_gnu -Checking test 200 hrrr_control_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 180.665847 - 0: The maximum resident set size (KB) = 612808 - -Test 200 hrrr_control_restart_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_noqr_gnu -Checking test 201 hrrr_control_restart_noqr_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 178.922435 - 0: The maximum resident set size (KB) = 705032 - -Test 201 hrrr_control_restart_noqr_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_gnu -Checking test 202 rrfs_v1beta_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 679.545568 - 0: The maximum resident set size (KB) = 894672 - -Test 202 rrfs_v1beta_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_diag_debug_gnu -Checking test 203 control_diag_debug_gnu 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.055437 - 0: The maximum resident set size (KB) = 593248 - -Test 203 control_diag_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/regional_debug_gnu -Checking test 204 regional_debug_gnu results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 445.636796 - 0: The maximum resident set size (KB) = 595876 - -Test 204 regional_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_gnu -Checking test 205 rap_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 139.391328 - 0: The maximum resident set size (KB) = 906260 - -Test 205 rap_control_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_gnu -Checking test 206 hrrr_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 139.619453 - 0: The maximum resident set size (KB) = 902220 - -Test 206 hrrr_control_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_gf_debug_gnu -Checking test 207 hrrr_gf_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 137.736098 - 0: The maximum resident set size (KB) = 906700 - -Test 207 hrrr_gf_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_c3_debug_gnu -Checking test 208 hrrr_c3_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 141.483182 - 0: The maximum resident set size (KB) = 905752 - -Test 208 hrrr_c3_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_diag_debug_gnu -Checking test 209 rap_diag_debug_gnu 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.912538 - 0: The maximum resident set size (KB) = 991520 - -Test 209 rap_diag_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 224.830077 - 0: The maximum resident set size (KB) = 870868 - -Test 210 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_progcld_thompson_debug_gnu -Checking test 211 rap_progcld_thompson_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 142.457150 - 0: The maximum resident set size (KB) = 909212 - -Test 211 rap_progcld_thompson_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rrfs_v1beta_debug_gnu -Checking test 212 rrfs_v1beta_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 141.591540 - 0: The maximum resident set size (KB) = 904240 - -Test 212 rrfs_v1beta_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_ras_debug_gnu -Checking test 213 control_ras_debug_gnu 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.434006 - 0: The maximum resident set size (KB) = 544460 - -Test 213 control_ras_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_stochy_debug_gnu -Checking test 214 control_stochy_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 122.999030 - 0: The maximum resident set size (KB) = 538724 - -Test 214 control_stochy_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_debug_p8_gnu -Checking test 215 control_debug_p8_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 90.288640 - 0: The maximum resident set size (KB) = 1276116 - -Test 215 control_debug_p8_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_flake_debug_gnu -Checking test 216 rap_flake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 141.157374 - 0: The maximum resident set size (KB) = 905656 - -Test 216 rap_flake_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_clm_lake_debug_gnu -Checking test 217 rap_clm_lake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 159.337129 - 0: The maximum resident set size (KB) = 909784 - -Test 217 rap_clm_lake_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/gnv1_c96_no_nest_debug_gnu -Checking test 218 gnv1_c96_no_nest_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 241.112585 - 0: The maximum resident set size (KB) = 919580 - -Test 218 gnv1_c96_no_nest_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/control_wam_debug_gnu -Checking test 219 control_wam_debug_gnu results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 136.397136 - 0: The maximum resident set size (KB) = 243708 - -Test 219 control_wam_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn32_phy32_gnu -Checking test 220 rap_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 701.163584 - 0: The maximum resident set size (KB) = 749188 - -Test 220 rap_control_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_dyn32_phy32_gnu -Checking test 221 hrrr_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 351.809217 - 0: The maximum resident set size (KB) = 747952 - -Test 221 hrrr_control_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_2threads_dyn32_phy32_gnu -Checking test 222 rap_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 621.928224 - 0: The maximum resident set size (KB) = 806524 - -Test 222 rap_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 223 hrrr_control_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 307.518689 - 0: The maximum resident set size (KB) = 800100 - -Test 223 hrrr_control_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 224 hrrr_control_decomp_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 353.261201 - 0: The maximum resident set size (KB) = 750032 - -Test 224 hrrr_control_decomp_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_restart_dyn32_phy32_gnu -Checking test 225 rap_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 518.087953 - 0: The maximum resident set size (KB) = 600172 - -Test 225 rap_restart_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_restart_dyn32_phy32_gnu -Checking test 226 hrrr_control_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 187.048900 - 0: The maximum resident set size (KB) = 582988 - -Test 226 hrrr_control_restart_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_control_gnu -Checking test 227 conus13km_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 237.804391 - 0: The maximum resident set size (KB) = 899928 - -Test 227 conus13km_control_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_2threads_gnu -Checking test 228 conus13km_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 100.544965 - 0: The maximum resident set size (KB) = 935228 - -Test 228 conus13km_2threads_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_restart_mismatch_gnu -Checking test 229 conus13km_restart_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 127.134943 - 0: The maximum resident set size (KB) = 598668 - -Test 229 conus13km_restart_mismatch_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_gnu -Checking test 230 rap_control_dyn64_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 404.788193 - 0: The maximum resident set size (KB) = 789304 - -Test 230 rap_control_dyn64_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_debug_dyn32_phy32_gnu -Checking test 231 rap_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 138.906825 - 0: The maximum resident set size (KB) = 762356 - -Test 231 rap_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/hrrr_control_debug_dyn32_phy32_gnu -Checking test 232 hrrr_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 138.683647 - 0: The maximum resident set size (KB) = 760040 - -Test 232 hrrr_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_gnu -Checking test 233 conus13km_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 417.446415 - 0: The maximum resident set size (KB) = 916864 - -Test 233 conus13km_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_qr_gnu -Checking test 234 conus13km_debug_qr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 413.994785 - 0: The maximum resident set size (KB) = 634308 - -Test 234 conus13km_debug_qr_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_debug_2threads_gnu -Checking test 235 conus13km_debug_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 248.865783 - 0: The maximum resident set size (KB) = 952708 - -Test 235 conus13km_debug_2threads_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/conus13km_radar_tten_debug_gnu -Checking test 236 conus13km_radar_tten_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 422.215745 - 0: The maximum resident set size (KB) = 983396 - -Test 236 conus13km_radar_tten_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/rap_control_dyn64_phy32_debug_gnu -Checking test 237 rap_control_dyn64_phy32_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 141.860154 - 0: The maximum resident set size (KB) = 786732 - -Test 237 rap_control_dyn64_phy32_debug_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_p8_gnu -Checking test 238 cpld_control_p8_gnu results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 624.600887 - 0: The maximum resident set size (KB) = 1508816 - -Test 238 cpld_control_p8_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_nowave_noaero_p8_gnu -Checking test 239 cpld_control_nowave_noaero_p8_gnu results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 375.478552 - 0: The maximum resident set size (KB) = 1402492 - -Test 239 cpld_control_nowave_noaero_p8_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_p8_gnu -Checking test 240 cpld_debug_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 355.193204 - 0: The maximum resident set size (KB) = 1519160 - -Test 240 cpld_debug_p8_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_control_pdlib_p8_gnu -Checking test 241 cpld_control_pdlib_p8_gnu results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1305.263114 - 0: The maximum resident set size (KB) = 1377636 - -Test 241 cpld_control_pdlib_p8_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/cpld_debug_pdlib_p8_gnu -Checking test 242 cpld_debug_pdlib_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 761.740712 - 0: The maximum resident set size (KB) = 1391124 - -Test 242 cpld_debug_pdlib_p8_gnu PASS - - -baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_gnu -working dir = /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_11662/datm_cdeps_control_cfsr_gnu -Checking test 243 datm_cdeps_control_cfsr_gnu results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 175.601857 - 0: The maximum resident set size (KB) = 700488 - -Test 243 datm_cdeps_control_cfsr_gnu PASS -REGRESSION TEST WAS SUCCESSFUL -Wed Feb 14 01:27:40 UTC 2024 -Elapsed time: 03h:22m:37s. Have a nice day! +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_5902 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:14](3105 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:39] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 16:10](1756 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 16:55](2008 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:10, 07:35](1086 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:10](1596 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:27] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:59, 22:19](1661 MB) + +PASS -- COMPILE 's2swa_intel' [14:07, 12:17] +PASS -- TEST 'cpld_control_p8_intel' [08:15, 05:38](3187 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:38](3192 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:28, 03:20](3221 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:38](3175 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:28, 03:25](3256 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:26](3498 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:10, 05:40](3150 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:39](3026 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 05:43](3148 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:09, 09:43](3316 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:45, 06:05](3571 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:59](4120 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:57, 06:38](4342 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:28](3114 MB) + +PASS -- COMPILE 's2sw_intel' [13:07, 11:41] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:53, 04:28](1728 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:29](1731 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:35] +PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:04](3171 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:48] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:39](1709 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:07, 10:50] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:31](1716 MB) + +PASS -- COMPILE 's2s_intel' [12:07, 10:38] +PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:18](2816 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:00] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:16](3208 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:03] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:16](1753 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 07:40](1142 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:00, 18:35](1663 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:52] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:56, 24:45](1701 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:33] +PASS -- TEST 'control_flake_intel' [06:21, 03:17](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:23](617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:29](644 MB) +PASS -- TEST 'control_latlon_intel' [04:21, 02:24](647 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:27, 02:27](650 MB) +PASS -- TEST 'control_c48_intel' [08:22, 06:12](873 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:15](874 MB) +PASS -- TEST 'control_c192_intel' [11:35, 09:00](844 MB) +PASS -- TEST 'control_c384_intel' [12:21, 09:07](1283 MB) +PASS -- TEST 'control_c384gdas_intel' [12:42, 08:03](1368 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:37](652 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:00](496 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:33](617 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:25](641 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:27](616 MB) +PASS -- TEST 'control_p8_intel' [05:01, 02:58](1616 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:05, 02:56](1591 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:02, 02:50](1602 MB) +PASS -- TEST 'control_restart_p8_intel' [03:47, 01:36](886 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:55](1586 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:35](895 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:52, 02:57](1597 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:51, 02:46](1707 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:09](1616 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:48](1670 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:00](1605 MB) +PASS -- TEST 'merra2_thompson_intel' [05:53, 03:28](1600 MB) +PASS -- TEST 'regional_control_intel' [07:38, 05:03](849 MB) +PASS -- TEST 'regional_restart_intel' [04:33, 02:40](1007 MB) +PASS -- TEST 'regional_decomp_intel' [07:36, 05:24](817 MB) +PASS -- TEST 'regional_2threads_intel' [05:36, 03:12](839 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:05](1360 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](845 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:05](847 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 06:37](1905 MB) + +PASS -- COMPILE 'rrfs_intel' [11:07, 09:55] +PASS -- TEST 'rap_control_intel' [09:42, 07:40](1065 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:07](1274 MB) +PASS -- TEST 'rap_decomp_intel' [10:34, 08:02](991 MB) +PASS -- TEST 'rap_2threads_intel' [09:35, 07:11](1176 MB) +PASS -- TEST 'rap_restart_intel' [05:36, 04:00](1076 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:37](1094 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:02](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:46](1111 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 03:56](1030 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:03](995 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:36](1096 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:08](1000 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:34](1059 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:00](1991 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:53](2029 MB) + +PASS -- COMPILE 'csawmg_intel' [11:07, 09:24] +PASS -- TEST 'control_csawmg_intel' [07:38, 05:47](709 MB) +PASS -- TEST 'control_csawmgt_intel' [07:37, 05:47](734 MB) +PASS -- TEST 'control_ras_intel' [05:18, 03:15](712 MB) + +PASS -- COMPILE 'wam_intel' [11:07, 09:04] +PASS -- TEST 'control_wam_intel' [04:16, 02:00](656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 10:15] +PASS -- TEST 'control_p8_faster_intel' [04:49, 02:36](1601 MB) +PASS -- TEST 'regional_control_faster_intel' [06:36, 04:37](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:38](794 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](802 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:59](788 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:40](783 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:00](829 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:00](858 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:42](788 MB) +PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](864 MB) +PASS -- TEST 'control_debug_p8_intel' [04:41, 02:48](1574 MB) +PASS -- TEST 'regional_debug_intel' [18:43, 16:10](837 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:46](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:40](1186 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:41](1202 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:47](1202 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:41](1196 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:05](1279 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:51](1181 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:53](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:48](1194 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:42](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:36](1188 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:47](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:45](1193 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:46](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 06:01](1200 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:47](1196 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:09](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 02:57] +PASS -- TEST 'control_wam_debug_intel' [07:17, 04:43](514 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:13] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 03:53](1127 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:18](1034 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 03:22](978 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:29, 05:59](1084 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:30, 03:05](954 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:32](900 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 04:47](1010 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:51](927 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:07, 11:22] +PASS -- TEST 'conus13km_control_intel' [04:51, 02:02](1194 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:51](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:11](1068 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:20] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:36, 04:12](954 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:20, 04:39](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:18, 04:38](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [16:45, 13:49](1219 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 13:59](895 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 07:45](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 13:39](1284 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 04:45](1116 MB) + +PASS -- COMPILE 'hafsw_intel' [12:06, 10:47] +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:51](730 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:01](1086 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 06:55](826 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:03](839 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:45](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:22](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:25](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:33](349 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:06, 07:09](470 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:36](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:29](504 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](582 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:25, 01:11](404 MB) +PASS -- TEST 'gnv1_nested_intel' [07:43, 03:55](796 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:27] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 12:17](545 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:47] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 08:35](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:32](700 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:07, 11:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 06:18](663 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:06, 10:18] +PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:17](800 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:18](803 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:11](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:10] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:39](1113 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:39](1073 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:37](997 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:35](1005 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:57](982 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:38](1127 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:37](1122 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:33](1008 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:28](1045 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:39](1040 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1121 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:51](2464 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:54](2480 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:46] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:08](1044 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 05:57] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1116 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:59] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:44](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:44](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:34](312 MB) + +PASS -- COMPILE 'atml_intel' [12:07, 10:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:15](1581 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:12](1586 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:16](877 MB) + +PASS -- COMPILE 'atmw_intel' [11:07, 09:58] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:45](1646 MB) + +PASS -- COMPILE 'atmwm_intel' [12:07, 10:04] +PASS -- TEST 'control_atmwav_intel' [03:29, 01:41](628 MB) + +PASS -- COMPILE 'atmaero_intel' [11:06, 09:50] +PASS -- TEST 'atmaero_control_p8_intel' [06:02, 03:56](2976 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:42](3036 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:00](3068 MB) + +PASS -- COMPILE 'atmaq_intel' [11:06, 09:32] + +PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11] +PASS -- TEST 'regional_atmaq_debug_intel' [23:51, 20:27](4341 MB) + +PASS -- COMPILE 'atm_gnu' [05:06, 03:23] +PASS -- TEST 'control_c48_gnu' [13:23, 11:36](792 MB) +PASS -- TEST 'control_stochy_gnu' [05:17, 04:02](552 MB) +PASS -- TEST 'control_ras_gnu' [06:17, 04:53](560 MB) +PASS -- TEST 'control_p8_gnu' [06:56, 04:54](1300 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:40](1304 MB) +PASS -- TEST 'control_flake_gnu' [07:19, 05:51](592 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:06, 03:27] +PASS -- TEST 'rap_control_gnu' [13:30, 11:36](895 MB) +PASS -- TEST 'rap_decomp_gnu' [13:31, 11:39](894 MB) +PASS -- TEST 'rap_2threads_gnu' [12:37, 10:27](974 MB) +PASS -- TEST 'rap_restart_gnu' [08:38, 06:04](623 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:34](894 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:54](894 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:38, 08:56](629 MB) +PASS -- TEST 'hrrr_control_gnu' [07:35, 05:57](889 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:59](878 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:27, 05:14](974 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:28, 05:56](892 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:24, 03:14](609 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:11](706 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:38, 11:15](888 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21] +PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](584 MB) +PASS -- TEST 'regional_debug_gnu' [09:36, 07:37](593 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:28](905 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:32](899 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:16, 02:31](906 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:34](904 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:44](987 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:59](896 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:33](901 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:35](898 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:31](537 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:47](536 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:36](1287 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:33](907 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:46](908 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 04:04](909 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:40] +PASS -- TEST 'control_wam_debug_gnu' [04:15, 02:24](239 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:05, 03:24] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:27, 11:47](754 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:25, 06:05](746 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:36, 10:35](803 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:29, 05:17](805 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:28, 06:01](746 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:34, 08:47](596 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 03:19](579 MB) +PASS -- TEST 'conus13km_control_gnu' [07:52, 04:12](897 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:38, 01:49](936 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:16](595 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:37, 06:54](777 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:17] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:19, 02:29](774 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:17, 02:28](768 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:43, 07:11](911 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:42, 07:04](634 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:39, 04:22](956 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:38, 07:07](977 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:19] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:33](789 MB) + +PASS -- COMPILE 's2swa_gnu' [15:07, 14:03] +PASS -- TEST 'cpld_control_p8_gnu' [13:09, 10:59](1505 MB) + +PASS -- COMPILE 's2s_gnu' [15:07, 13:41] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:00, 06:34](1402 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:21] +PASS -- TEST 'cpld_debug_p8_gnu' [09:01, 06:09](1520 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:07, 13:53] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:56, 22:02](1375 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:08] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:52, 13:06](1390 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:26] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:13, 03:03](692 MB) + +SYNOPSIS: +Starting Date/Time: 20240219 14:20:19 +Ending Date/Time: 20240219 15:59:27 +Total Time: 01h:39m:36s +Compiles Completed: 53/53 +Tests Completed: 243/243 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 1c31c7ef04..166dd6458a 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7812 +1,388 @@ -Tue Feb 13 15:27:43 CST 2024 -Start Regression test +====START OF HERCULES REGRESSION TESTING LOG==== -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +UFSWM hash used in testing: +0d31ac8854fee356e5409931c3cd5b85e9611a15 + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 531 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 537 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 387 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 576 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 559 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 428 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 209 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 403 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 531 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 599 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 549 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 201 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 336 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 880 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 328 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 639 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 176 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 613 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 548 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 524 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 493 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 959 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 498 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 284 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 640 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 179 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 950 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 915 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 671 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 300 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 949 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 573 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 292 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 970 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 684 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 437.888352 - 0: The maximum resident set size (KB) = 1897992 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 874.181544 - 0: The maximum resident set size (KB) = 1765068 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 855.907654 - 0: The maximum resident set size (KB) = 2156492 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 378.825787 - 0: The maximum resident set size (KB) = 1189436 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 916.253251 - 0: The maximum resident set size (KB) = 1689668 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1219.029822 - 0: The maximum resident set size (KB) = 1730396 - -Test 006 cpld_debug_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 452.148644 - 0: The maximum resident set size (KB) = 2062320 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 444.970947 - 0: The maximum resident set size (KB) = 2075400 - -Test 008 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 258.335649 - 0: The maximum resident set size (KB) = 1962816 - -Test 009 cpld_restart_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 454.842010 - 0: The maximum resident set size (KB) = 1986628 - -Test 010 cpld_control_qr_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 319.217529 - 0: The maximum resident set size (KB) = 1729840 - -Test 011 cpld_restart_qr_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_2threads_p8_intel -Checking test 012 cpld_2threads_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 539.659766 - 0: The maximum resident set size (KB) = 2501924 - -Test 012 cpld_2threads_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_decomp_p8_intel -Checking test 013 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 448.604815 - 0: The maximum resident set size (KB) = 2077108 - -Test 013 cpld_decomp_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_p8_intel -Checking test 014 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 382.464389 - 0: The maximum resident set size (KB) = 1893244 - -Test 014 cpld_mpi_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_ciceC_p8_intel -Checking test 015 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 449.594208 - 0: The maximum resident set size (KB) = 2075056 - -Test 015 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c192_p8_intel -Checking test 016 cpld_control_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 977.372712 - 0: The maximum resident set size (KB) = 2810084 - -Test 016 cpld_control_c192_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_c192_p8_intel -Checking test 017 cpld_restart_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 345.344625 - 0: The maximum resident set size (KB) = 2919944 - -Test 017 cpld_restart_c192_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_bmark_p8_intel -Checking test 018 cpld_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 521.869891 - 0: The maximum resident set size (KB) = 3664192 - -Test 018 cpld_bmark_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_bmark_p8_intel -Checking test 019 cpld_restart_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 391.132602 - 0: The maximum resident set size (KB) = 3607392 - -Test 019 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_s2sa_p8_intel -Checking test 020 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 284.005064 - 0: The maximum resident set size (KB) = 2023192 - -Test 020 cpld_s2sa_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_intel -Checking test 021 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 425.611750 - 0: The maximum resident set size (KB) = 1772740 - -Test 021 cpld_control_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_nowave_noaero_p8_intel -Checking test 022 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 226.630814 - 0: The maximum resident set size (KB) = 1827172 - -Test 022 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_p8_intel -Checking test 023 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 404.173642 - 0: The maximum resident set size (KB) = 2039316 - -Test 023 cpld_debug_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_noaero_p8_intel -Checking test 024 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 276.977445 - 0: The maximum resident set size (KB) = 1782980 - -Test 024 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_noaero_p8_agrid_intel -Checking test 025 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 230.490661 - 0: The maximum resident set size (KB) = 1824332 - -Test 025 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_c48_intel -Checking test 026 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 435.264082 - 0: The maximum resident set size (KB) = 2833060 - -Test 026 cpld_control_c48_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_p8_faster_intel -Checking test 027 cpld_control_p8_faster_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 434.066483 - 0: The maximum resident set size (KB) = 2096696 - -Test 027 cpld_control_p8_faster_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_control_pdlib_p8_intel -Checking test 028 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 856.504774 - 0: The maximum resident set size (KB) = 1825632 - -Test 028 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_restart_pdlib_p8_intel -Checking test 029 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 409.034960 - 0: The maximum resident set size (KB) = 1304384 - -Test 029 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_mpi_pdlib_p8_intel -Checking test 030 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 925.956399 - 0: The maximum resident set size (KB) = 1721564 - -Test 030 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/cpld_debug_pdlib_p8_intel -Checking test 031 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1280.936967 - 0: The maximum resident set size (KB) = 1780528 - -Test 031 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_intel -Checking test 032 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 173.789417 - 0: The maximum resident set size (KB) = 724296 - -Test 032 control_flake_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_intel -Checking test 033 control_CubedSphereGrid_intel 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 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 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 - - 0: The total amount of wall time = 118.806942 - 0: The maximum resident set size (KB) = 661548 - -Test 033 control_CubedSphereGrid_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_parallel_intel -Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 127.057585 - 0: The maximum resident set size (KB) = 673924 - -Test 034 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_latlon_intel -Checking test 035 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 122.788113 - 0: The maximum resident set size (KB) = 671632 - -Test 035 control_latlon_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_intel -Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 128.169366 - 0: The maximum resident set size (KB) = 671440 - -Test 036 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_intel -Checking test 037 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 341.554025 -0: The maximum resident set size (KB) = 867892 - -Test 037 control_c48_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48.v2.sfc_intel -Checking test 038 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 342.968618 -0: The maximum resident set size (KB) = 861532 - -Test 038 control_c48.v2.sfc_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c192_intel -Checking test 039 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 469.464101 - 0: The maximum resident set size (KB) = 963520 - -Test 039 control_c192_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384_intel -Checking test 040 control_c384_intel 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 - - 0: The total amount of wall time = 578.703456 - 0: The maximum resident set size (KB) = 1468452 - -Test 040 control_c384_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c384gdas_intel -Checking test 041 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 470.768638 - 0: The maximum resident set size (KB) = 1525024 - -Test 041 control_c384gdas_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_intel -Checking test 042 control_stochy_intel 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 - - 0: The total amount of wall time = 84.258011 - 0: The maximum resident set size (KB) = 686240 - -Test 042 control_stochy_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_restart_intel -Checking test 043 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 48.070790 - 0: The maximum resident set size (KB) = 540836 - -Test 043 control_stochy_restart_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_intel -Checking test 044 control_lndp_intel 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 - - 0: The total amount of wall time = 79.709404 - 0: The maximum resident set size (KB) = 675984 - -Test 044 control_lndp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr4_intel -Checking test 045 control_iovr4_intel 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 - - 0: The total amount of wall time = 123.287393 - 0: The maximum resident set size (KB) = 668292 - -Test 045 control_iovr4_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_iovr5_intel -Checking test 046 control_iovr5_intel 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 - - 0: The total amount of wall time = 125.240594 - 0: The maximum resident set size (KB) = 667624 - -Test 046 control_iovr5_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_intel -Checking test 047 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 154.872088 - 0: The maximum resident set size (KB) = 1654696 - -Test 047 control_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8.v2.sfc_intel -Checking test 048 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 160.815227 - 0: The maximum resident set size (KB) = 1638104 - -Test 048 control_p8.v2.sfc_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_intel -Checking test 049 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 156.317750 - 0: The maximum resident set size (KB) = 1650648 - -Test 049 control_p8_ugwpv1_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_intel -Checking test 050 control_restart_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 77.005768 - 0: The maximum resident set size (KB) = 927628 - -Test 050 control_restart_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_noqr_p8_intel -Checking test 051 control_noqr_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 159.519558 - 0: The maximum resident set size (KB) = 1639652 - -Test 051 control_noqr_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_noqr_p8_intel -Checking test 052 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 77.862759 - 0: The maximum resident set size (KB) = 993836 - -Test 052 control_restart_noqr_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_decomp_p8_intel -Checking test 053 control_decomp_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 165.836501 - 0: The maximum resident set size (KB) = 1638004 - -Test 053 control_decomp_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_2threads_p8_intel -Checking test 054 control_2threads_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 139.470851 - 0: The maximum resident set size (KB) = 1734488 - -Test 054 control_2threads_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_lndp_intel -Checking test 055 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 261.524588 - 0: The maximum resident set size (KB) = 1649536 - -Test 055 control_p8_lndp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_rrtmgp_intel -Checking test 056 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 201.379537 - 0: The maximum resident set size (KB) = 1726624 - -Test 056 control_p8_rrtmgp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_mynn_intel -Checking test 057 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 144.874225 - 0: The maximum resident set size (KB) = 1660116 - -Test 057 control_p8_mynn_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/merra2_thompson_intel -Checking test 058 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 169.586490 - 0: The maximum resident set size (KB) = 1664904 - -Test 058 merra2_thompson_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_intel -Checking test 059 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 265.141018 - 0: The maximum resident set size (KB) = 964112 - -Test 059 regional_control_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_restart_intel -Checking test 060 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 139.297537 - 0: The maximum resident set size (KB) = 1110492 - -Test 060 regional_restart_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_decomp_intel -Checking test 061 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 278.723377 - 0: The maximum resident set size (KB) = 949084 - -Test 061 regional_decomp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2threads_intel -Checking test 062 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 169.687880 - 0: The maximum resident set size (KB) = 916976 - -Test 062 regional_2threads_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_noquilt_intel -Checking test 063 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 255.691738 - 0: The maximum resident set size (KB) = 1493988 - -Test 063 regional_noquilt_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_netcdf_parallel_intel -Checking test 064 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 267.741805 - 0: The maximum resident set size (KB) = 961376 - -Test 064 regional_netcdf_parallel_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_2dwrtdecomp_intel -Checking test 065 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 266.429814 - 0: The maximum resident set size (KB) = 960056 - -Test 065 regional_2dwrtdecomp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_wofs_intel -Checking test 066 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 329.961121 - 0: The maximum resident set size (KB) = 2097012 - -Test 066 regional_wofs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_intel -Checking test 067 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 388.185731 - 0: The maximum resident set size (KB) = 1202548 - -Test 067 rap_control_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_intel -Checking test 068 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 216.592905 - 0: The maximum resident set size (KB) = 1408896 - -Test 068 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_intel -Checking test 069 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 405.107729 - 0: The maximum resident set size (KB) = 1123200 - -Test 069 rap_decomp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_intel -Checking test 070 rap_2threads_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 363.684866 - 0: The maximum resident set size (KB) = 1378300 - -Test 070 rap_2threads_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_intel -Checking test 071 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 199.531913 - 0: The maximum resident set size (KB) = 1134500 - -Test 071 rap_restart_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_intel -Checking test 072 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 383.315239 - 0: The maximum resident set size (KB) = 1186604 - -Test 072 rap_sfcdiff_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_intel -Checking test 073 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 404.632152 - 0: The maximum resident set size (KB) = 1158544 - -Test 073 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_intel -Checking test 074 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 287.255854 - 0: The maximum resident set size (KB) = 1233548 - -Test 074 rap_sfcdiff_restart_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_intel -Checking test 075 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 198.285536 - 0: The maximum resident set size (KB) = 1091536 - -Test 075 hrrr_control_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_intel -Checking test 076 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 204.039737 - 0: The maximum resident set size (KB) = 1039496 - -Test 076 hrrr_control_decomp_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_intel -Checking test 077 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 180.204479 - 0: The maximum resident set size (KB) = 1124796 - -Test 077 hrrr_control_2threads_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_intel -Checking test 078 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 102.200774 - 0: The maximum resident set size (KB) = 1023448 - -Test 078 hrrr_control_restart_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_intel -Checking test 079 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 373.485813 - 0: The maximum resident set size (KB) = 1196116 - -Test 079 rrfs_v1beta_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_intel -Checking test 080 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 453.798762 - 0: The maximum resident set size (KB) = 2009056 - -Test 080 rrfs_v1nssl_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1nssl_nohailnoccn_intel -Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 441.694584 - 0: The maximum resident set size (KB) = 2182848 - -Test 081 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_intel -Checking test 082 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 297.608365 - 0: The maximum resident set size (KB) = 848712 - -Test 082 control_csawmg_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_intel -Checking test 083 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 298.535042 - 0: The maximum resident set size (KB) = 806476 - -Test 083 control_csawmgt_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_intel -Checking test 084 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 163.356069 - 0: The maximum resident set size (KB) = 846068 - -Test 084 control_ras_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wam_intel -Checking test 085 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 101.620319 - 0: The maximum resident set size (KB) = 778368 - -Test 085 control_wam_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_faster_intel -Checking test 086 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 127.298750 - 0: The maximum resident set size (KB) = 1641608 - -Test 086 control_p8_faster_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_control_faster_intel -Checking test 087 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 239.005327 - 0: The maximum resident set size (KB) = 959132 - -Test 087 regional_control_faster_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_CubedSphereGrid_debug_intel -Checking test 088 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 127.239321 - 0: The maximum resident set size (KB) = 825760 - -Test 088 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 127.357888 - 0: The maximum resident set size (KB) = 832044 - -Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_intel -Checking test 090 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 141.638703 - 0: The maximum resident set size (KB) = 834244 - -Test 090 control_stochy_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_lndp_debug_intel -Checking test 091 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 127.899569 - 0: The maximum resident set size (KB) = 830036 - -Test 091 control_lndp_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmg_debug_intel -Checking test 092 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 198.772881 - 0: The maximum resident set size (KB) = 870380 - -Test 092 control_csawmg_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_csawmgt_debug_intel -Checking test 093 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 193.252752 - 0: The maximum resident set size (KB) = 873952 - -Test 093 control_csawmgt_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_intel -Checking test 094 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 129.214266 - 0: The maximum resident set size (KB) = 850172 - -Test 094 control_ras_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_intel -Checking test 095 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 133.937645 - 0: The maximum resident set size (KB) = 889924 - -Test 095 control_diag_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_intel -Checking test 096 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 134.889526 - 0: The maximum resident set size (KB) = 1655804 - -Test 096 control_debug_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_intel -Checking test 097 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 833.663040 - 0: The maximum resident set size (KB) = 904516 - -Test 097 regional_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_intel -Checking test 098 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 232.480235 - 0: The maximum resident set size (KB) = 1215312 - -Test 098 rap_control_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_intel -Checking test 099 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 226.142135 - 0: The maximum resident set size (KB) = 1212992 - -Test 099 hrrr_control_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_intel -Checking test 100 hrrr_gf_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 232.270614 - 0: The maximum resident set size (KB) = 1224340 - -Test 100 hrrr_gf_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_intel -Checking test 101 hrrr_c3_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 234.184599 - 0: The maximum resident set size (KB) = 1224576 - -Test 101 hrrr_c3_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_drag_suite_debug_intel -Checking test 102 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 233.224511 - 0: The maximum resident set size (KB) = 1214164 - -Test 102 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_intel -Checking test 103 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 244.302640 - 0: The maximum resident set size (KB) = 1306548 - -Test 103 rap_diag_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_cires_ugwp_debug_intel -Checking test 104 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 236.748197 - 0: The maximum resident set size (KB) = 1215648 - -Test 104 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_unified_ugwp_debug_intel -Checking test 105 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 238.897417 - 0: The maximum resident set size (KB) = 1225476 - -Test 105 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_lndp_debug_intel -Checking test 106 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 233.775045 - 0: The maximum resident set size (KB) = 1213840 - -Test 106 rap_lndp_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_intel -Checking test 107 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 232.700914 - 0: The maximum resident set size (KB) = 1231344 - -Test 107 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_debug_intel -Checking test 108 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 229.445153 - 0: The maximum resident set size (KB) = 1209692 - -Test 108 rap_noah_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_debug_intel -Checking test 109 rap_sfcdiff_debug_intel 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.528662 - 0: The maximum resident set size (KB) = 1219104 - -Test 109 rap_sfcdiff_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 384.608919 - 0: The maximum resident set size (KB) = 1228024 - -Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_intel -Checking test 111 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 226.569478 - 0: The maximum resident set size (KB) = 1214816 - -Test 111 rrfs_v1beta_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_intel -Checking test 112 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 304.549934 - 0: The maximum resident set size (KB) = 1231760 - -Test 112 rap_clm_lake_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_intel -Checking test 113 rap_flake_debug_intel 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.239561 - 0: The maximum resident set size (KB) = 1215940 - -Test 113 rap_flake_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_intel -Checking test 114 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 406.741596 - 0: The maximum resident set size (KB) = 1216796 - -Test 114 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 186.050043 - 0: The maximum resident set size (KB) = 1276152 - -Test 115 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_intel -Checking test 116 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 317.073044 - 0: The maximum resident set size (KB) = 1147356 - -Test 116 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_intel -Checking test 117 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 165.138313 - 0: The maximum resident set size (KB) = 1014072 - -Test 117 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_intel -Checking test 118 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 299.018973 - 0: The maximum resident set size (KB) = 1272956 - -Test 118 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_intel -Checking test 119 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 161.091018 - 0: The maximum resident set size (KB) = 1044888 - -Test 119 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_intel -Checking test 120 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 173.038878 - 0: The maximum resident set size (KB) = 987688 - -Test 120 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_intel -Checking test 121 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 240.518454 - 0: The maximum resident set size (KB) = 1134604 - -Test 121 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_intel -Checking test 122 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 88.162058 - 0: The maximum resident set size (KB) = 965284 - -Test 122 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_intel -Checking test 123 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 103.587863 - 0: The maximum resident set size (KB) = 1307224 - -Test 123 conus13km_control_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_intel -Checking test 124 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 41.732275 - 0: The maximum resident set size (KB) = 1208312 - -Test 124 conus13km_2threads_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_intel -Checking test 125 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 55.604468 - 0: The maximum resident set size (KB) = 1154932 - -Test 125 conus13km_restart_mismatch_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_intel -Checking test 126 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 214.456741 - 0: The maximum resident set size (KB) = 1101080 - -Test 126 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_intel -Checking test 127 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 227.769448 - 0: The maximum resident set size (KB) = 1096280 - -Test 127 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_intel -Checking test 128 hrrr_control_debug_dyn32_phy32_intel 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.377390 - 0: The maximum resident set size (KB) = 1099504 - -Test 128 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_intel -Checking test 129 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 693.796136 - 0: The maximum resident set size (KB) = 1345492 - -Test 129 conus13km_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_intel -Checking test 130 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 717.082360 - 0: The maximum resident set size (KB) = 985956 - -Test 130 conus13km_debug_qr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_intel -Checking test 131 conus13km_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 402.194526 - 0: The maximum resident set size (KB) = 1237648 - -Test 131 conus13km_debug_2threads_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_intel -Checking test 132 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 702.156892 - 0: The maximum resident set size (KB) = 1407040 - -Test 132 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_intel -Checking test 133 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 232.341265 - 0: The maximum resident set size (KB) = 1152276 - -Test 133 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_intel -Checking test 134 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 319.880213 - 0: The maximum resident set size (KB) = 885040 - -Test 134 hafs_regional_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 135 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 299.262357 - 0: The maximum resident set size (KB) = 1288556 - -Test 135 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_intel -Checking test 136 hafs_regional_atm_ocn_intel 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 = 380.659094 - 0: The maximum resident set size (KB) = 950716 - -Test 136 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_wav_intel -Checking test 137 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 829.964413 - 0: The maximum resident set size (KB) = 972020 - -Test 137 hafs_regional_atm_wav_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_atm_ocn_wav_intel -Checking test 138 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 893.334177 - 0: The maximum resident set size (KB) = 1008888 - -Test 138 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_1nest_atm_intel -Checking test 139 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 331.543285 - 0: The maximum resident set size (KB) = 607020 - -Test 139 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_telescopic_2nests_atm_intel -Checking test 140 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 419.339445 - 0: The maximum resident set size (KB) = 617456 - -Test 140 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_1nest_atm_intel -Checking test 141 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 166.302451 - 0: The maximum resident set size (KB) = 438460 - -Test 141 hafs_global_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_multiple_4nests_atm_intel -Checking test 142 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 483.770165 - 0: The maximum resident set size (KB) = 546352 - -Test 142 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_specified_moving_1nest_atm_intel -Checking test 143 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 235.551186 - 0: The maximum resident set size (KB) = 623288 - -Test 143 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 216.995328 - 0: The maximum resident set size (KB) = 622432 - -Test 144 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 297.687869 - 0: The maximum resident set size (KB) = 676236 - -Test 145 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_global_storm_following_1nest_atm_intel -Checking test 146 hafs_global_storm_following_1nest_atm_intel 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.283162 - 0: The maximum resident set size (KB) = 451492 - -Test 146 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - - 0: The total amount of wall time = 679.564047 - 0: The maximum resident set size (KB) = 632904 - -Test 147 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 972.161645 - 0: The maximum resident set size (KB) = 749480 - -Test 148 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 1036.834964 - 0: The maximum resident set size (KB) = 808984 - -Test 149 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 639.200203 - 0: The maximum resident set size (KB) = 833588 - -Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_intel -Checking test 151 hafs_regional_docn_intel 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 = 341.959765 - 0: The maximum resident set size (KB) = 953852 - -Test 151 hafs_regional_docn_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_docn_oisst_intel -Checking test 152 hafs_regional_docn_oisst_intel 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 = 340.439543 - 0: The maximum resident set size (KB) = 936416 - -Test 152 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hafs_regional_datm_cdeps_intel -Checking test 153 hafs_regional_datm_cdeps_intel 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 = 982.682875 - 0: The maximum resident set size (KB) = 1338020 - -Test 153 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_intel -Checking test 154 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 123.766433 - 0: The maximum resident set size (KB) = 1141460 - -Test 154 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_restart_cfsr_intel -Checking test 155 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 77.117248 - 0: The maximum resident set size (KB) = 1090324 - -Test 155 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_gefs_intel -Checking test 156 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 122.111663 - 0: The maximum resident set size (KB) = 1023092 - -Test 156 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_iau_gefs_intel -Checking test 157 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 120.758062 - 0: The maximum resident set size (KB) = 1016880 - -Test 157 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_stochy_gefs_intel -Checking test 158 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 121.401423 - 0: The maximum resident set size (KB) = 1012620 - -Test 158 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_ciceC_cfsr_intel -Checking test 159 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 124.760673 - 0: The maximum resident set size (KB) = 1144692 - -Test 159 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_cfsr_intel -Checking test 160 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 125.566252 - 0: The maximum resident set size (KB) = 1151772 - -Test 160 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_bulk_gefs_intel -Checking test 161 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 119.276869 - 0: The maximum resident set size (KB) = 1003560 - -Test 161 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_cfsr_intel -Checking test 162 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - - 0: The total amount of wall time = 306.912649 - 0: The maximum resident set size (KB) = 1157404 - -Test 162 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_mx025_gefs_intel -Checking test 163 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 297.418474 - 0: The maximum resident set size (KB) = 1155600 - -Test 163 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_multiple_files_cfsr_intel -Checking test 164 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 122.715134 - 0: The maximum resident set size (KB) = 1155500 - -Test 164 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_3072x1536_cfsr_intel -Checking test 165 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 178.475650 - 0: The maximum resident set size (KB) = 2383908 - -Test 165 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_gfs_intel -Checking test 166 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 182.093891 - 0: The maximum resident set size (KB) = 2462080 - -Test 166 datm_cdeps_gfs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_debug_cfsr_intel -Checking test 167 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 304.262564 - 0: The maximum resident set size (KB) = 1070708 - -Test 167 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_control_cfsr_faster_intel -Checking test 168 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 123.853572 - 0: The maximum resident set size (KB) = 1153504 - -Test 168 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_gswp3_intel -Checking test 169 datm_cdeps_lnd_gswp3_intel 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 = 54.556217 - 0: The maximum resident set size (KB) = 339208 - -Test 169 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_intel -Checking test 170 datm_cdeps_lnd_era5_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 50.246439 - 0: The maximum resident set size (KB) = 556460 - -Test 170 datm_cdeps_lnd_era5_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/datm_cdeps_lnd_era5_rst_intel -Checking test 171 datm_cdeps_lnd_era5_rst_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 34.788009 - 0: The maximum resident set size (KB) = 558684 - -Test 171 datm_cdeps_lnd_era5_rst_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_sbs_intel -Checking test 172 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 393.686892 - 0: The maximum resident set size (KB) = 1646876 - -Test 172 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_atmlnd_intel -Checking test 173 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 391.185936 - 0: The maximum resident set size (KB) = 1640980 - -Test 173 control_p8_atmlnd_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_restart_p8_atmlnd_intel -Checking test 174 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 197.423635 - 0: The maximum resident set size (KB) = 943504 - -Test 174 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmwav_control_noaero_p8_intel -Checking test 175 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 87.123010 - 0: The maximum resident set size (KB) = 1690380 - -Test 175 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_atmwav_intel -Checking test 176 control_atmwav_intel 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 - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 85.909148 - 0: The maximum resident set size (KB) = 693668 - -Test 176 control_atmwav_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_intel -Checking test 177 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 207.900695 - 0: The maximum resident set size (KB) = 1786704 - -Test 177 atmaero_control_p8_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_intel -Checking test 178 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 248.446801 - 0: The maximum resident set size (KB) = 1810340 - -Test 178 atmaero_control_p8_rad_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/atmaero_control_p8_rad_micro_intel -Checking test 179 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 262.880486 - 0: The maximum resident set size (KB) = 1818912 - -Test 179 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_atmaq_debug_intel -Checking test 180 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - - 0: The total amount of wall time = 995.403334 - 0: The maximum resident set size (KB) = 4589524 - -Test 180 regional_atmaq_debug_intel PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_c48_gnu -Checking test 181 control_c48_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 563.126826 -0: The maximum resident set size (KB) = 856372 - -Test 181 control_c48_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_gnu -Checking test 182 control_stochy_gnu 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 - - 0: The total amount of wall time = 128.952842 - 0: The maximum resident set size (KB) = 727584 - -Test 182 control_stochy_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_gnu -Checking test 183 control_ras_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 218.740789 - 0: The maximum resident set size (KB) = 730840 - -Test 183 control_ras_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_gnu -Checking test 184 control_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 210.224228 - 0: The maximum resident set size (KB) = 1508732 - -Test 184 control_p8_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_p8_ugwpv1_gnu -Checking test 185 control_p8_ugwpv1_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 202.932154 - 0: The maximum resident set size (KB) = 1509904 - -Test 185 control_p8_ugwpv1_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_flake_gnu -Checking test 186 control_flake_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 256.130493 - 0: The maximum resident set size (KB) = 806960 - -Test 186 control_flake_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_gnu -Checking test 187 rap_control_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 451.330519 - 0: The maximum resident set size (KB) = 1091208 - -Test 187 rap_control_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_decomp_gnu -Checking test 188 rap_decomp_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 458.959764 - 0: The maximum resident set size (KB) = 1088776 - -Test 188 rap_decomp_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_gnu -Checking test 189 rap_2threads_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 420.439109 - 0: The maximum resident set size (KB) = 1149668 - -Test 189 rap_2threads_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_gnu -Checking test 190 rap_restart_gnu results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 229.913596 - 0: The maximum resident set size (KB) = 885032 - -Test 190 rap_restart_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_gnu -Checking test 191 rap_sfcdiff_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 463.113479 - 0: The maximum resident set size (KB) = 1087380 - -Test 191 rap_sfcdiff_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_decomp_gnu -Checking test 192 rap_sfcdiff_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 464.314001 - 0: The maximum resident set size (KB) = 1089012 - -Test 192 rap_sfcdiff_decomp_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_sfcdiff_restart_gnu -Checking test 193 rap_sfcdiff_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 332.598656 - 0: The maximum resident set size (KB) = 883832 - -Test 193 rap_sfcdiff_restart_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_gnu -Checking test 194 hrrr_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 236.622943 - 0: The maximum resident set size (KB) = 1077468 - -Test 194 hrrr_control_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_noqr_gnu -Checking test 195 hrrr_control_noqr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 235.403588 - 0: The maximum resident set size (KB) = 1137576 - -Test 195 hrrr_control_noqr_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_gnu -Checking test 196 hrrr_control_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 213.903469 - 0: The maximum resident set size (KB) = 1047692 - -Test 196 hrrr_control_2threads_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_gnu -Checking test 197 hrrr_control_decomp_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 233.791135 - 0: The maximum resident set size (KB) = 1072556 - -Test 197 hrrr_control_decomp_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_gnu -Checking test 198 hrrr_control_restart_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 118.627056 - 0: The maximum resident set size (KB) = 881496 - -Test 198 hrrr_control_restart_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_noqr_gnu -Checking test 199 hrrr_control_restart_noqr_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 118.462913 - 0: The maximum resident set size (KB) = 932008 - -Test 199 hrrr_control_restart_noqr_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_gnu -Checking test 200 rrfs_v1beta_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 449.021288 - 0: The maximum resident set size (KB) = 1085288 - -Test 200 rrfs_v1beta_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_diag_debug_gnu -Checking test 201 control_diag_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 69.200372 - 0: The maximum resident set size (KB) = 770844 - -Test 201 control_diag_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/regional_debug_gnu -Checking test 202 regional_debug_gnu results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 377.156934 - 0: The maximum resident set size (KB) = 921560 - -Test 202 regional_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_gnu -Checking test 203 rap_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 114.576153 - 0: The maximum resident set size (KB) = 1100672 - -Test 203 rap_control_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_gnu -Checking test 204 hrrr_control_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 110.673883 - 0: The maximum resident set size (KB) = 1084332 - -Test 204 hrrr_control_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_gf_debug_gnu -Checking test 205 hrrr_gf_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 115.786205 - 0: The maximum resident set size (KB) = 1088028 - -Test 205 hrrr_gf_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_c3_debug_gnu -Checking test 206 hrrr_c3_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 111.138244 - 0: The maximum resident set size (KB) = 1092616 - -Test 206 hrrr_c3_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_diag_debug_gnu -Checking test 207 rap_diag_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 122.113608 - 0: The maximum resident set size (KB) = 1265044 - -Test 207 rap_diag_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 185.147772 - 0: The maximum resident set size (KB) = 1090592 - -Test 208 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_progcld_thompson_debug_gnu -Checking test 209 rap_progcld_thompson_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 120.514499 - 0: The maximum resident set size (KB) = 1097060 - -Test 209 rap_progcld_thompson_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rrfs_v1beta_debug_gnu -Checking test 210 rrfs_v1beta_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 114.877696 - 0: The maximum resident set size (KB) = 1093384 - -Test 210 rrfs_v1beta_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_ras_debug_gnu -Checking test 211 control_ras_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 63.907110 - 0: The maximum resident set size (KB) = 721796 - -Test 211 control_ras_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_stochy_debug_gnu -Checking test 212 control_stochy_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 74.901388 - 0: The maximum resident set size (KB) = 723000 - -Test 212 control_stochy_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/control_debug_p8_gnu -Checking test 213 control_debug_p8_gnu 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.051961 - 0: The maximum resident set size (KB) = 1500556 - -Test 213 control_debug_p8_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_flake_debug_gnu -Checking test 214 rap_flake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 112.491500 - 0: The maximum resident set size (KB) = 1092684 - -Test 214 rap_flake_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_clm_lake_debug_gnu -Checking test 215 rap_clm_lake_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 127.679090 - 0: The maximum resident set size (KB) = 1094048 - -Test 215 rap_clm_lake_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/gnv1_c96_no_nest_debug_gnu -Checking test 216 gnv1_c96_no_nest_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 200.545789 - 0: The maximum resident set size (KB) = 1100544 - -Test 216 gnv1_c96_no_nest_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn32_phy32_gnu -Checking test 217 rap_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 429.953691 - 0: The maximum resident set size (KB) = 962488 - -Test 217 rap_control_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_dyn32_phy32_gnu -Checking test 218 hrrr_control_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 226.310231 - 0: The maximum resident set size (KB) = 955820 - -Test 218 hrrr_control_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_2threads_dyn32_phy32_gnu -Checking test 219 rap_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 390.828922 - 0: The maximum resident set size (KB) = 998460 - -Test 219 rap_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 201.202874 - 0: The maximum resident set size (KB) = 872020 - -Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 222.730813 - 0: The maximum resident set size (KB) = 953576 - -Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_restart_dyn32_phy32_gnu -Checking test 222 rap_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 321.277583 - 0: The maximum resident set size (KB) = 860768 - -Test 222 rap_restart_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_restart_dyn32_phy32_gnu -Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 111.256666 - 0: The maximum resident set size (KB) = 857124 - -Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_control_gnu -Checking test 224 conus13km_control_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 147.609195 - 0: The maximum resident set size (KB) = 1268964 - -Test 224 conus13km_control_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_2threads_gnu -Checking test 225 conus13km_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 70.638012 - 0: The maximum resident set size (KB) = 1177256 - -Test 225 conus13km_2threads_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_restart_mismatch_gnu -Checking test 226 conus13km_restart_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 82.444567 - 0: The maximum resident set size (KB) = 944856 - -Test 226 conus13km_restart_mismatch_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_gnu -Checking test 227 rap_control_dyn64_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 254.112351 - 0: The maximum resident set size (KB) = 988508 - -Test 227 rap_control_dyn64_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_debug_dyn32_phy32_gnu -Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 110.983948 - 0: The maximum resident set size (KB) = 976308 - -Test 228 rap_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/hrrr_control_debug_dyn32_phy32_gnu -Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 108.601448 - 0: The maximum resident set size (KB) = 970300 - -Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_gnu -Checking test 230 conus13km_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 322.248191 - 0: The maximum resident set size (KB) = 1283340 - -Test 230 conus13km_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_qr_gnu -Checking test 231 conus13km_debug_qr_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 337.325667 - 0: The maximum resident set size (KB) = 973308 - -Test 231 conus13km_debug_qr_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_debug_2threads_gnu -Checking test 232 conus13km_debug_2threads_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 194.866941 - 0: The maximum resident set size (KB) = 1191440 - -Test 232 conus13km_debug_2threads_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/conus13km_radar_tten_debug_gnu -Checking test 233 conus13km_radar_tten_debug_gnu results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 328.741249 - 0: The maximum resident set size (KB) = 1349176 - -Test 233 conus13km_radar_tten_debug_gnu PASS - - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_14514/rap_control_dyn64_phy32_debug_gnu -Checking test 234 rap_control_dyn64_phy32_debug_gnu 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.402626 - 0: The maximum resident set size (KB) = 1000200 - -Test 234 rap_control_dyn64_phy32_debug_gnu PASS -REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 17:50:43 CST 2024 -Elapsed time: 02h:23m:03s. Have a nice day! +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1846065 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:13] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:28](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:06, 17:57] +PASS -- TEST 'cpld_control_gfsv17_intel' [26:06, 13:24](1767 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:19, 14:00](2184 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 06:36](1184 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:45, 15:08](1695 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:35] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:13, 20:12](1734 MB) + +PASS -- COMPILE 's2swa_intel' [14:06, 12:27] +PASS -- TEST 'cpld_control_p8_intel' [09:52, 07:33](2091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 07:41](2060 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:05, 04:18](1971 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:53, 07:37](1985 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:04, 04:16](1744 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:59](2496 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 07:28](2074 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:23](1886 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 07:29](2095 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:32, 15:37](2815 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 05:51](2920 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 08:49](3623 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:33, 06:09](3612 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:44, 04:59](2029 MB) + +PASS -- COMPILE 's2sw_intel' [13:05, 11:47] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:42, 07:09](1773 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:53, 03:52](1817 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:05, 06:17] +PASS -- TEST 'cpld_debug_p8_intel' [09:00, 06:49](2064 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:05, 06:05] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:38](1792 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:59] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:57](1825 MB) + +PASS -- COMPILE 's2s_intel' [11:05, 09:56] +PASS -- TEST 'cpld_control_c48_intel' [09:34, 07:13](2839 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:06, 14:01] +PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 07:18](2065 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:07, 15:40] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:52, 14:00](1811 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:42](1296 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:27](1726 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:05] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:53, 21:14](1781 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:31] +PASS -- TEST 'control_flake_intel' [18:17, 02:50](728 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:18, 02:04](674 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:25, 02:18](677 MB) +PASS -- TEST 'control_latlon_intel' [18:17, 02:09](671 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:22, 02:11](667 MB) +PASS -- TEST 'control_c48_intel' [21:22, 05:45](859 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [21:20, 05:46](861 MB) +PASS -- TEST 'control_c192_intel' [21:26, 07:52](972 MB) +PASS -- TEST 'control_c384_intel' [16:11, 08:14](1462 MB) +PASS -- TEST 'control_c384gdas_intel' [21:49, 07:18](1532 MB) +PASS -- TEST 'control_stochy_intel' [15:17, 01:26](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [13:24, 00:58](545 MB) +PASS -- TEST 'control_lndp_intel' [17:20, 01:21](678 MB) +PASS -- TEST 'control_iovr4_intel' [17:19, 02:04](667 MB) +PASS -- TEST 'control_iovr5_intel' [16:21, 02:05](667 MB) +PASS -- TEST 'control_p8_intel' [13:47, 02:35](1635 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [13:48, 02:33](1644 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:52, 02:25](1652 MB) +PASS -- TEST 'control_restart_p8_intel' [09:44, 01:30](917 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:39, 02:27](1637 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 01:29](980 MB) +PASS -- TEST 'control_decomp_p8_intel' [14:42, 02:32](1628 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:37, 02:20](1738 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:34, 04:22](1648 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [17:55, 03:32](1712 MB) +PASS -- TEST 'control_p8_mynn_intel' [15:51, 02:38](1657 MB) +PASS -- TEST 'merra2_thompson_intel' [14:56, 03:03](1655 MB) +PASS -- TEST 'regional_control_intel' [11:28, 04:27](958 MB) +PASS -- TEST 'regional_restart_intel' [04:23, 02:35](1097 MB) +PASS -- TEST 'regional_decomp_intel' [11:27, 04:42](948 MB) +PASS -- TEST 'regional_2threads_intel' [09:27, 02:50](924 MB) +PASS -- TEST 'regional_noquilt_intel' [10:30, 04:20](1491 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:31, 04:27](959 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:26, 04:28](961 MB) +PASS -- TEST 'regional_wofs_intel' [11:25, 05:31](2096 MB) + +PASS -- COMPILE 'rrfs_intel' [09:05, 07:07] +PASS -- TEST 'rap_control_intel' [15:35, 06:39](1200 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:42, 03:45](1399 MB) +PASS -- TEST 'rap_decomp_intel' [14:33, 07:00](1143 MB) +PASS -- TEST 'rap_2threads_intel' [13:47, 06:20](1359 MB) +PASS -- TEST 'rap_restart_intel' [05:47, 03:26](1146 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:45, 06:43](1197 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:45, 06:57](1144 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:52](1195 MB) +PASS -- TEST 'hrrr_control_intel' [10:30, 03:25](1076 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:29](1058 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:43, 03:04](1120 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:47](1028 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:50, 06:25](1203 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:20, 07:39](2005 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:22](2174 MB) + +PASS -- COMPILE 'csawmg_intel' [08:05, 06:54] +PASS -- TEST 'control_csawmg_intel' [07:22, 05:06](808 MB) +PASS -- TEST 'control_csawmgt_intel' [07:24, 05:05](824 MB) +PASS -- TEST 'control_ras_intel' [04:12, 02:54](802 MB) + +PASS -- COMPILE 'wam_intel' [07:05, 05:58] +PASS -- TEST 'control_wam_intel' [03:18, 01:50](789 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:07, 09:20] +PASS -- TEST 'control_p8_faster_intel' [04:49, 02:17](1634 MB) +PASS -- TEST 'regional_control_faster_intel' [06:25, 04:10](956 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:34] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:18](834 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:15](828 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](837 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:16](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:28, 03:22](879 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:27, 03:18](873 MB) +PASS -- TEST 'control_ras_debug_intel' [04:15, 02:15](836 MB) +PASS -- TEST 'control_diag_debug_intel' [04:20, 02:16](885 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 02:20](1657 MB) +PASS -- TEST 'regional_debug_intel' [16:24, 14:03](898 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:58](1226 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:58](1221 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 04:01](1220 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:08](1304 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:03](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:02](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:15, 04:03](1224 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:00](1222 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:50](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:58](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:35](1210 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:57](1210 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:11](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:59](1211 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:48](1214 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 02:46] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 06:58] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 03:14](1305 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:25](1142 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 02:53](1025 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:05](1289 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:37](1042 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:01](998 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 04:03](1098 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:33](967 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 09:28] +PASS -- TEST 'conus13km_control_intel' [03:45, 01:42](1302 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:44](1201 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:04](1156 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 07:06] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 03:40](1075 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:09] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:53](1107 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:52](1093 MB) +PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1342 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:44](1023 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:39](1244 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:26, 11:34](1397 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:03] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 04:02](1147 MB) + +PASS -- COMPILE 'hafsw_intel' [12:05, 10:00] +PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:15](874 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1278 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:06, 06:18](968 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:59, 13:41](983 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 14:51](1012 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:23](605 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:46](616 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:47](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:57, 07:40](581 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:48](619 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:36](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:46](677 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:25](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:05, 03:15] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:17](638 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:06, 10:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:47, 17:00](761 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:49, 17:18](852 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:39] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:52, 10:33](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:06, 10:02] +PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:23](950 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:59, 05:21](945 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:26](1349 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:06, 06:00] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:05](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:21](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1024 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:05](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:05](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:09](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1148 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 04:53](1161 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:55, 04:48](1151 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:58](2434 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 02:59](2378 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:06, 03:39] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:05](1066 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 06:11] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1156 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:51] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:49](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:47](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:33](558 MB) + +PASS -- COMPILE 'atml_intel' [09:06, 07:46] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:02, 05:52](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 05:40](1641 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:50](956 MB) + +PASS -- COMPILE 'atmw_intel' [15:06, 09:02] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:29](1700 MB) + +PASS -- COMPILE 'atmwm_intel' [14:05, 08:57] +PASS -- TEST 'control_atmwav_intel' [03:39, 01:27](699 MB) + +PASS -- COMPILE 'atmaero_intel' [11:05, 06:47] +PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:34](1790 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:16](1809 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:29](1830 MB) + +PASS -- COMPILE 'atmaq_intel' [08:06, 06:52] + +PASS -- COMPILE 'atmaq_debug_intel' [07:05, 02:40] +PASS -- TEST 'regional_atmaq_debug_intel' [19:18, 16:33](4570 MB) + +PASS -- COMPILE 'atm_gnu' [08:06, 03:40] +PASS -- TEST 'control_c48_gnu' [11:27, 09:30](859 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:13](726 MB) +PASS -- TEST 'control_ras_gnu' [05:15, 03:41](732 MB) +PASS -- TEST 'control_p8_gnu' [05:46, 03:38](1512 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:27](1508 MB) +PASS -- TEST 'control_flake_gnu' [06:14, 04:27](791 MB) + +PASS -- COMPILE 'rrfs_gnu' [08:06, 03:41] +PASS -- TEST 'rap_control_gnu' [09:41, 07:38](1088 MB) +PASS -- TEST 'rap_decomp_gnu' [09:37, 07:48](1088 MB) +PASS -- TEST 'rap_2threads_gnu' [09:29, 07:11](1128 MB) +PASS -- TEST 'rap_restart_gnu' [05:34, 03:51](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 07:59](1096 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:46, 05:40](884 MB) +PASS -- TEST 'hrrr_control_gnu' [06:32, 04:09](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 04:05](1143 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 03:39](1026 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:45, 03:59](1073 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:01](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:16, 02:00](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:38](1082 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:06, 03:45] +PASS -- TEST 'control_diag_debug_gnu' [03:19, 01:11](771 MB) +PASS -- TEST 'regional_debug_gnu' [08:27, 06:32](922 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:55](1095 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:55](1087 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:01](1096 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:58](1092 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:04](1269 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:09](1094 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:59](1101 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:57](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:11](722 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:20](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:15](1505 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:14, 01:57](1099 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:45, 03:17](1101 MB) + +PASS -- COMPILE 'wam_debug_gnu' [12:05, 03:24] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:05, 04:27] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:10](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:46](953 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:39, 06:36](968 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:34](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:50](949 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:36, 05:23](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:14, 01:57](856 MB) +PASS -- TEST 'conus13km_control_gnu' [04:37, 02:29](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:22, 01:09](1173 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:24, 01:25](926 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:06, 06:17] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:27, 04:20](987 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:05, 05:23] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:03](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:54](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:23](1281 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:27](954 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:14](1196 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:21](1348 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 05:23] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:04](1000 MB) + +PASS -- COMPILE 's2swa_gnu' [17:06, 15:29] + +PASS -- COMPILE 's2s_gnu' [16:05, 14:56] + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 04:42] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 14:15] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:40] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20] + +SYNOPSIS: +Starting Date/Time: 20240219 08:33:37 +Ending Date/Time: 20240219 10:09:34 +Total Time: 01h:36m:17s +Compiles Completed: 53/53 +Tests Completed: 234/234 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERCULES REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 131777ec7c..11a58e0fe6 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,5529 +1,329 @@ -Tue Feb 13 22:06:29 UTC 2024 -Start Regression test +====START OF JET REGRESSION TESTING LOG==== -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +UFSWM hash used in testing: +0d31ac8854fee356e5409931c3cd5b85e9611a15 + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atm_debug_dyn32_intel elapsed time 421 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1977 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1835 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1827 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 2220 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1847 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1824 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1858 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 208 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 473 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 532 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 100 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1942 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 2010 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 2504 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1767 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 1829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1916 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 s2s_intel elapsed time 1896 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 2104 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 311 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 2904 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 2246 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 3032 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 346 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 5527 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2206 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1765 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 428.106728 - 0: The maximum resident set size (KB) = 1760040 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1234.472812 - 0: The maximum resident set size (KB) = 1637172 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1328.242245 - 0: The maximum resident set size (KB) = 1853780 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 618.249105 - 0: The maximum resident set size (KB) = 975816 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1437.722109 - 0: The maximum resident set size (KB) = 1626564 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_intel -Checking test 006 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 465.499320 - 0: The maximum resident set size (KB) = 1807368 - -Test 006 cpld_control_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8.v2.sfc_intel -Checking test 007 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 461.766353 - 0: The maximum resident set size (KB) = 1800652 - -Test 007 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_p8_intel -Checking test 008 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 283.621669 - 0: The maximum resident set size (KB) = 1691528 - -Test 008 cpld_restart_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 481.883916 - 0: The maximum resident set size (KB) = 1820636 - -Test 009 cpld_control_qr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 304.624469 - 0: The maximum resident set size (KB) = 1713348 - -Test 010 cpld_restart_qr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 448.961949 - 0: The maximum resident set size (KB) = 2203392 - -Test 011 cpld_2threads_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 470.756992 - 0: The maximum resident set size (KB) = 1789400 - -Test 012 cpld_decomp_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 411.808347 - 0: The maximum resident set size (KB) = 1755232 - -Test 013 cpld_mpi_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_ciceC_p8_intel -Checking test 014 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 465.533393 - 0: The maximum resident set size (KB) = 1803176 - -Test 014 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_s2sa_p8_intel -Checking test 015 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 428.550608 - 0: The maximum resident set size (KB) = 1768592 - -Test 015 cpld_s2sa_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_intel -Checking test 016 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 388.072112 - 0: The maximum resident set size (KB) = 1636684 - -Test 016 cpld_control_noaero_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_nowave_noaero_p8_intel -Checking test 017 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 367.239966 - 0: The maximum resident set size (KB) = 1682884 - -Test 017 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_p8_intel -Checking test 018 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 639.767942 - 0: The maximum resident set size (KB) = 1818484 - -Test 018 cpld_debug_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_noaero_p8_intel -Checking test 019 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 432.569234 - 0: The maximum resident set size (KB) = 1652628 - -Test 019 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_noaero_p8_agrid_intel -Checking test 020 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 352.667681 - 0: The maximum resident set size (KB) = 1697232 - -Test 020 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_c48_intel -Checking test 021 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 769.192221 - 0: The maximum resident set size (KB) = 2778724 - -Test 021 cpld_control_c48_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_p8_faster_intel -Checking test 022 cpld_control_p8_faster_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 512.516485 - 0: The maximum resident set size (KB) = 1815400 - -Test 022 cpld_control_p8_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_control_pdlib_p8_intel -Checking test 023 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1252.772762 - 0: The maximum resident set size (KB) = 1666960 - -Test 023 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_restart_pdlib_p8_intel -Checking test 024 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 627.079437 - 0: The maximum resident set size (KB) = 1027224 - -Test 024 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_mpi_pdlib_p8_intel -Checking test 025 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1502.863638 - 0: The maximum resident set size (KB) = 1635456 - -Test 025 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/cpld_debug_pdlib_p8_intel -Checking test 026 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1938.562927 - 0: The maximum resident set size (KB) = 1673760 - -Test 026 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_flake_intel -Checking test 027 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 294.059572 - 0: The maximum resident set size (KB) = 646344 - -Test 027 control_flake_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_intel -Checking test 028 control_CubedSphereGrid_intel 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 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 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 - - 0: The total amount of wall time = 217.984223 - 0: The maximum resident set size (KB) = 594980 - -Test 028 control_CubedSphereGrid_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_parallel_intel -Checking test 029 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 227.675308 - 0: The maximum resident set size (KB) = 592904 - -Test 029 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_latlon_intel -Checking test 030 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 215.090885 - 0: The maximum resident set size (KB) = 596860 - -Test 030 control_latlon_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_intel -Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 216.803775 - 0: The maximum resident set size (KB) = 599764 - -Test 031 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48_intel -Checking test 032 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 602.373429 -0: The maximum resident set size (KB) = 849348 - -Test 032 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c48.v2.sfc_intel -Checking test 033 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 605.497812 -0: The maximum resident set size (KB) = 846408 - -Test 033 control_c48.v2.sfc_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c192_intel -Checking test 034 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 765.277079 - 0: The maximum resident set size (KB) = 724512 - -Test 034 control_c192_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384_intel -Checking test 035 control_c384_intel 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 - - 0: The total amount of wall time = 1022.072042 - 0: The maximum resident set size (KB) = 900384 - -Test 035 control_c384_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_c384gdas_intel -Checking test 036 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 929.851752 - 0: The maximum resident set size (KB) = 1022636 - -Test 036 control_c384gdas_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_intel -Checking test 037 control_stochy_intel 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 - - 0: The total amount of wall time = 139.297600 - 0: The maximum resident set size (KB) = 598852 - -Test 037 control_stochy_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_restart_intel -Checking test 038 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 76.713317 - 0: The maximum resident set size (KB) = 431932 - -Test 038 control_stochy_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_intel -Checking test 039 control_lndp_intel 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 - - 0: The total amount of wall time = 134.387228 - 0: The maximum resident set size (KB) = 597496 - -Test 039 control_lndp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr4_intel -Checking test 040 control_iovr4_intel 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 - - 0: The total amount of wall time = 209.365755 - 0: The maximum resident set size (KB) = 590860 - -Test 040 control_iovr4_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_iovr5_intel -Checking test 041 control_iovr5_intel 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 - - 0: The total amount of wall time = 209.250823 - 0: The maximum resident set size (KB) = 595660 - -Test 041 control_iovr5_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_intel -Checking test 042 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 242.335049 - 0: The maximum resident set size (KB) = 1570384 - -Test 042 control_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8.v2.sfc_intel -Checking test 043 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 240.935650 - 0: The maximum resident set size (KB) = 1569536 - -Test 043 control_p8.v2.sfc_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_ugwpv1_intel -Checking test 044 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 244.369269 - 0: The maximum resident set size (KB) = 1570384 - -Test 044 control_p8_ugwpv1_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_intel -Checking test 045 control_restart_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 123.232688 - 0: The maximum resident set size (KB) = 813224 - -Test 045 control_restart_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_noqr_p8_intel -Checking test 046 control_noqr_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 235.400317 - 0: The maximum resident set size (KB) = 1545972 - -Test 046 control_noqr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_noqr_p8_intel -Checking test 047 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 115.787462 - 0: The maximum resident set size (KB) = 836744 - -Test 047 control_restart_noqr_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_decomp_p8_intel -Checking test 048 control_decomp_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 250.225493 - 0: The maximum resident set size (KB) = 1564548 - -Test 048 control_decomp_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_2threads_p8_intel -Checking test 049 control_2threads_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 227.797386 - 0: The maximum resident set size (KB) = 1663432 - -Test 049 control_2threads_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_lndp_intel -Checking test 050 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 439.092017 - 0: The maximum resident set size (KB) = 1568156 - -Test 050 control_p8_lndp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_rrtmgp_intel -Checking test 051 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 322.024555 - 0: The maximum resident set size (KB) = 1628036 - -Test 051 control_p8_rrtmgp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_mynn_intel -Checking test 052 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 242.210664 - 0: The maximum resident set size (KB) = 1577980 - -Test 052 control_p8_mynn_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/merra2_thompson_intel -Checking test 053 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 286.232530 - 0: The maximum resident set size (KB) = 1581064 - -Test 053 merra2_thompson_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_intel -Checking test 054 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 465.059233 - 0: The maximum resident set size (KB) = 754924 - -Test 054 regional_control_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_restart_intel -Checking test 055 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 232.631079 - 0: The maximum resident set size (KB) = 924908 - -Test 055 regional_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_decomp_intel -Checking test 056 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 480.682582 - 0: The maximum resident set size (KB) = 750780 - -Test 056 regional_decomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2threads_intel -Checking test 057 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 300.688659 - 0: The maximum resident set size (KB) = 747208 - -Test 057 regional_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_netcdf_parallel_intel -Checking test 058 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 462.175279 - 0: The maximum resident set size (KB) = 759244 - -Test 058 regional_netcdf_parallel_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_2dwrtdecomp_intel -Checking test 059 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 460.849069 - 0: The maximum resident set size (KB) = 753572 - -Test 059 regional_2dwrtdecomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_intel -Checking test 060 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 622.549939 - 0: The maximum resident set size (KB) = 982332 - -Test 060 rap_control_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_intel -Checking test 061 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 378.262347 - 0: The maximum resident set size (KB) = 1191512 - -Test 061 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_decomp_intel -Checking test 062 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 646.654023 - 0: The maximum resident set size (KB) = 974212 +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_75827 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [37:20, 36:01] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 07:11](1756 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [53:26, 51:44] +PASS -- TEST 'cpld_control_gfsv17_intel' [25:36, 21:15](1639 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:00, 22:13](1874 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:07](977 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:06, 24:43](1611 MB) + +PASS -- COMPILE 's2swa_intel' [39:21, 37:53] +PASS -- TEST 'cpld_control_p8_intel' [10:27, 07:30](1800 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 07:31](1792 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:18](1693 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:28, 07:35](1823 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:01, 04:26](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [25:35, 23:04](2182 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:24, 07:31](1792 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:51, 06:24](1753 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:53, 07:34](1801 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:09](1765 MB) + +PASS -- COMPILE 's2sw_intel' [36:19, 34:19] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 06:15](1643 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:03, 06:09](1695 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:37] +PASS -- TEST 'cpld_debug_p8_intel' [14:47, 10:28](1821 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:08, 05:09] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:37, 10:34](1648 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [33:17, 31:52] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:41](1693 MB) + +PASS -- COMPILE 's2s_intel' [32:17, 31:06] +PASS -- TEST 'cpld_control_c48_intel' [15:24, 12:53](2787 MB) + +PASS -- COMPILE 's2swa_faster_intel' [33:40, 32:19] +PASS -- TEST 'cpld_control_p8_faster_intel' [11:03, 07:05](1792 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:23, 45:56] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 21:05](1661 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:02, 09:52](1023 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:00, 23:56](1655 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:51] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:49, 32:27](1666 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:18, 32:51] +PASS -- TEST 'control_flake_intel' [06:33, 04:47](638 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:23](594 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:40, 03:54](595 MB) +PASS -- TEST 'control_latlon_intel' [05:28, 03:17](595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:26](594 MB) +PASS -- TEST 'control_c48_intel' [11:36, 10:07](842 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:36, 10:10](846 MB) +PASS -- TEST 'control_c192_intel' [16:59, 12:41](724 MB) +PASS -- TEST 'control_c384_intel' [21:02, 17:25](899 MB) +PASS -- TEST 'control_c384gdas_intel' [22:09, 16:34](1031 MB) +PASS -- TEST 'control_stochy_intel' [04:28, 02:15](597 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](432 MB) +PASS -- TEST 'control_lndp_intel' [04:29, 02:11](594 MB) +PASS -- TEST 'control_iovr4_intel' [05:30, 03:26](597 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 03:22](593 MB) +PASS -- TEST 'control_p8_intel' [07:52, 04:08](1567 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 03:49](1568 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:47](1559 MB) +PASS -- TEST 'control_restart_p8_intel' [07:25, 02:08](804 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:45](1546 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:03](827 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:04](1545 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:13, 03:44](1647 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:56, 06:59](1561 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:41, 05:07](1618 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:32, 03:57](1565 MB) +PASS -- TEST 'merra2_thompson_intel' [07:57, 04:32](1566 MB) +PASS -- TEST 'regional_control_intel' [10:45, 09:04](752 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 03:46](935 MB) +PASS -- TEST 'regional_decomp_intel' [10:44, 08:45](756 MB) +PASS -- TEST 'regional_2threads_intel' [06:43, 04:18](745 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:46, 08:57](758 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:44, 08:41](756 MB) + +PASS -- COMPILE 'rrfs_intel' [33:20, 31:23] +PASS -- TEST 'rap_control_intel' [13:40, 10:14](973 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 05:55](1211 MB) +PASS -- TEST 'rap_decomp_intel' [13:03, 10:53](963 MB) +PASS -- TEST 'rap_2threads_intel' [12:39, 10:02](1063 MB) +PASS -- TEST 'rap_restart_intel' [08:15, 05:12](975 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:37, 10:29](973 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 11:11](968 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:52, 08:24](982 MB) +PASS -- TEST 'hrrr_control_intel' [08:11, 05:36](962 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:10, 05:46](962 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:11, 05:14](1050 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:30, 02:49](907 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:40, 10:19](964 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:43](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 12:11](1920 MB) + +PASS -- COMPILE 'csawmg_intel' [32:17, 30:19] +PASS -- TEST 'control_csawmg_intel' [10:46, 08:41](678 MB) +PASS -- TEST 'control_csawmgt_intel' [11:50, 09:53](682 MB) +PASS -- TEST 'control_ras_intel' [07:27, 05:13](652 MB) + +PASS -- COMPILE 'wam_intel' [31:18, 29:22] +PASS -- TEST 'control_wam_intel' [04:25, 02:40](494 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 30:53] +PASS -- TEST 'control_p8_faster_intel' [06:55, 03:31](1556 MB) +PASS -- TEST 'regional_control_faster_intel' [08:55, 06:29](749 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:08] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:29, 05:14](749 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 05:08](750 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:21, 04:49](755 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:21, 04:43](757 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](802 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [08:43, 06:18](798 MB) +PASS -- TEST 'control_ras_debug_intel' [06:22, 04:10](760 MB) +PASS -- TEST 'control_diag_debug_intel' [06:37, 04:29](809 MB) +PASS -- TEST 'control_debug_p8_intel' [07:56, 05:27](1573 MB) +PASS -- TEST 'regional_debug_intel' [25:53, 22:41](769 MB) +PASS -- TEST 'rap_control_debug_intel' [09:32, 07:38](1139 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:00, 06:22](1134 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:54, 06:32](1137 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:03](1138 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:02](1141 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:25](1221 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:12](1138 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:09](1143 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:09](1143 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:01](1132 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:55](1138 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:29, 06:00](1139 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:34, 09:50](1146 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1134 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:25](1131 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:30, 06:05](1149 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:39](1146 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:08, 04:14] +PASS -- TEST 'control_wam_debug_intel' [07:24, 06:05](453 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:17, 29:12] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:19, 05:23](1070 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 08:17](897 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 04:24](856 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 07:47](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:13, 04:04](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 04:37](851 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:24, 06:08](884 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:29](840 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 44:27] +PASS -- TEST 'conus13km_control_intel' [05:14, 02:45](1092 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:15](1045 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:37](1009 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 29:40] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:06, 05:32](892 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 04:30] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:57](1009 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:54](1010 MB) +PASS -- TEST 'conus13km_debug_intel' [20:14, 18:11](1123 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:15, 20:51](834 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:02, 10:31](1077 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:07, 18:12](1188 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:09, 04:28] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 06:07](1051 MB) + +PASS -- COMPILE 'hafsw_intel' [34:23, 32:59] +PASS -- TEST 'hafs_regional_atm_intel' [12:41, 09:37](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:49, 11:19](1076 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:35, 10:58](762 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:47, 17:03](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:40, 19:35](813 MB) +PASS -- TEST 'gnv1_nested_intel' [12:01, 08:38](771 MB) + +PASS -- COMPILE 'hafs_all_intel' [32:17, 30:53] +PASS -- TEST 'hafs_regional_docn_intel' [14:05, 09:44](767 MB) +FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:09, 08:15] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:32](1040 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:11](1002 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:21, 03:27](916 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 03:28](914 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:30](911 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:32](1038 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:34](1034 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:26](918 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:56](869 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:52](843 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:32](1047 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:54](2387 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:58](2391 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:24] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:56](985 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1037 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:47] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:23](225 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:12](246 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:35, 01:03](243 MB) + +PASS -- COMPILE 'atml_intel' [34:19, 32:27] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:03, 12:11](1585 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [15:04, 11:18](1578 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 06:20](856 MB) + +PASS -- COMPILE 'atmw_intel' [32:20, 31:08] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:53, 02:24](1580 MB) + +PASS -- COMPILE 'atmwm_intel' [32:17, 30:40] +PASS -- TEST 'control_atmwav_intel' [05:26, 02:13](604 MB) + +PASS -- COMPILE 'atmaero_intel' [32:18, 31:08] +PASS -- TEST 'atmaero_control_p8_intel' [08:44, 05:12](1672 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:39, 06:26](1694 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 06:42](1704 MB) + +SYNOPSIS: +Starting Date/Time: 20240219 14:40:09 +Ending Date/Time: 20240219 18:32:24 +Total Time: 03h:52m:41s +Compiles Completed: 33/33 +Tests Completed: 160/161 +Failed Tests: +* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE +-- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2061/tests/logs/log_jet/rt_hafs_regional_docn_oisst_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +0d31ac8854fee356e5409931c3cd5b85e9611a15 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Test 062 rap_decomp_intel PASS +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_intel -Checking test 063 rap_2threads_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_299389 - 0: The total amount of wall time = 596.444166 - 0: The maximum resident set size (KB) = 1076012 - -Test 063 rap_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_intel -Checking test 064 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 311.632937 - 0: The maximum resident set size (KB) = 978004 - -Test 064 rap_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_intel -Checking test 065 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 615.912751 - 0: The maximum resident set size (KB) = 975292 - -Test 065 rap_sfcdiff_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_decomp_intel -Checking test 066 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 655.084638 - 0: The maximum resident set size (KB) = 974472 - -Test 066 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_restart_intel -Checking test 067 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 459.124533 - 0: The maximum resident set size (KB) = 984396 - -Test 067 rap_sfcdiff_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_intel -Checking test 068 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 306.594831 - 0: The maximum resident set size (KB) = 971332 - -Test 068 hrrr_control_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_intel -Checking test 069 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 312.725531 - 0: The maximum resident set size (KB) = 969396 - -Test 069 hrrr_control_decomp_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_intel -Checking test 070 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 280.229414 - 0: The maximum resident set size (KB) = 1038324 - -Test 070 hrrr_control_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_intel -Checking test 071 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 162.782106 - 0: The maximum resident set size (KB) = 903328 - -Test 071 hrrr_control_restart_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_intel -Checking test 072 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 592.940855 - 0: The maximum resident set size (KB) = 972816 - -Test 072 rrfs_v1beta_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_intel -Checking test 073 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 736.322287 - 0: The maximum resident set size (KB) = 1930496 - -Test 073 rrfs_v1nssl_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1nssl_nohailnoccn_intel -Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 727.459835 - 0: The maximum resident set size (KB) = 1926020 - -Test 074 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_intel -Checking test 075 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 472.259244 - 0: The maximum resident set size (KB) = 686476 - -Test 075 control_csawmg_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 473.776226 - 0: The maximum resident set size (KB) = 689928 - -Test 076 control_csawmgt_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_intel -Checking test 077 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 267.668097 - 0: The maximum resident set size (KB) = 651156 - -Test 077 control_ras_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_intel -Checking test 078 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 182.392103 - 0: The maximum resident set size (KB) = 495612 - -Test 078 control_wam_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_faster_intel -Checking test 079 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 203.712492 - 0: The maximum resident set size (KB) = 1565176 - -Test 079 control_p8_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 381.544236 - 0: The maximum resident set size (KB) = 751508 - -Test 080 regional_control_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_CubedSphereGrid_debug_intel -Checking test 081 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 195.382809 - 0: The maximum resident set size (KB) = 755236 - -Test 081 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 193.667470 - 0: The maximum resident set size (KB) = 751360 - -Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_stochy_debug_intel -Checking test 083 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 213.827979 - 0: The maximum resident set size (KB) = 757576 - -Test 083 control_stochy_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_lndp_debug_intel -Checking test 084 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 195.171345 - 0: The maximum resident set size (KB) = 754920 - -Test 084 control_lndp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmg_debug_intel -Checking test 085 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 306.173514 - 0: The maximum resident set size (KB) = 805012 - -Test 085 control_csawmg_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_csawmgt_debug_intel -Checking test 086 control_csawmgt_debug_intel 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.189282 - 0: The maximum resident set size (KB) = 799672 - -Test 086 control_csawmgt_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_ras_debug_intel -Checking test 087 control_ras_debug_intel 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.074184 - 0: The maximum resident set size (KB) = 765948 - -Test 087 control_ras_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_diag_debug_intel -Checking test 088 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 201.393334 - 0: The maximum resident set size (KB) = 811344 - -Test 088 control_diag_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_debug_p8_intel -Checking test 089 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 209.134500 - 0: The maximum resident set size (KB) = 1580264 - -Test 089 control_debug_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_debug_intel -Checking test 090 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 1294.571150 - 0: The maximum resident set size (KB) = 767456 - -Test 090 regional_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_intel -Checking test 091 rap_control_debug_intel 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.739697 - 0: The maximum resident set size (KB) = 1143984 - -Test 091 rap_control_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_intel -Checking test 092 hrrr_control_debug_intel 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.954139 - 0: The maximum resident set size (KB) = 1129848 - -Test 092 hrrr_control_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_gf_debug_intel -Checking test 093 hrrr_gf_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 356.503727 - 0: The maximum resident set size (KB) = 1143808 - -Test 093 hrrr_gf_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_c3_debug_intel -Checking test 094 hrrr_c3_debug_intel 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.500152 - 0: The maximum resident set size (KB) = 1132220 - -Test 094 hrrr_c3_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_drag_suite_debug_intel -Checking test 095 rap_unified_drag_suite_debug_intel 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.455609 - 0: The maximum resident set size (KB) = 1143240 - -Test 095 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_diag_debug_intel -Checking test 096 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 370.133226 - 0: The maximum resident set size (KB) = 1225384 - -Test 096 rap_diag_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_cires_ugwp_debug_intel -Checking test 097 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 367.080624 - 0: The maximum resident set size (KB) = 1132336 - -Test 097 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_unified_ugwp_debug_intel -Checking test 098 rap_unified_ugwp_debug_intel 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.902877 - 0: The maximum resident set size (KB) = 1145848 - -Test 098 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_lndp_debug_intel -Checking test 099 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 355.104906 - 0: The maximum resident set size (KB) = 1142676 - -Test 099 rap_lndp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_progcld_thompson_debug_intel -Checking test 100 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 358.139613 - 0: The maximum resident set size (KB) = 1147216 - -Test 100 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_debug_intel -Checking test 101 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 349.353756 - 0: The maximum resident set size (KB) = 1131740 - -Test 101 rap_noah_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_sfcdiff_debug_intel -Checking test 102 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 354.419121 - 0: The maximum resident set size (KB) = 1146220 - -Test 102 rap_sfcdiff_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 585.497395 - 0: The maximum resident set size (KB) = 1131680 - -Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rrfs_v1beta_debug_intel -Checking test 104 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 346.524844 - 0: The maximum resident set size (KB) = 1139112 - -Test 104 rrfs_v1beta_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_clm_lake_debug_intel -Checking test 105 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 446.655388 - 0: The maximum resident set size (KB) = 1143224 - -Test 105 rap_clm_lake_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_flake_debug_intel -Checking test 106 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 355.722393 - 0: The maximum resident set size (KB) = 1148008 - -Test 106 rap_flake_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_c96_no_nest_debug_intel -Checking test 107 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 623.542340 - 0: The maximum resident set size (KB) = 1149448 - -Test 107 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_wam_debug_intel -Checking test 108 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 359.428519 - 0: The maximum resident set size (KB) = 433748 - -Test 108 control_wam_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 343.766126 - 0: The maximum resident set size (KB) = 1079348 - -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn32_phy32_intel -Checking test 110 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 533.275621 - 0: The maximum resident set size (KB) = 897372 - -Test 110 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_dyn32_phy32_intel -Checking test 111 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 290.676863 - 0: The maximum resident set size (KB) = 864312 - -Test 111 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_2threads_dyn32_phy32_intel -Checking test 112 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 516.032694 - 0: The maximum resident set size (KB) = 943856 - -Test 112 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_2threads_dyn32_phy32_intel -Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 286.869536 - 0: The maximum resident set size (KB) = 893000 - -Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_decomp_dyn32_phy32_intel -Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 313.685081 - 0: The maximum resident set size (KB) = 852292 - -Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_restart_dyn32_phy32_intel -Checking test 115 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 371.283402 - 0: The maximum resident set size (KB) = 890876 - -Test 115 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_restart_dyn32_phy32_intel -Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 137.386903 - 0: The maximum resident set size (KB) = 842772 - -Test 116 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_control_intel -Checking test 117 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 160.536175 - 0: The maximum resident set size (KB) = 1094780 - -Test 117 conus13km_control_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_2threads_intel -Checking test 118 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 72.572251 - 0: The maximum resident set size (KB) = 1045064 - -Test 118 conus13km_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_restart_mismatch_intel -Checking test 119 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 90.220163 - 0: The maximum resident set size (KB) = 1015708 - -Test 119 conus13km_restart_mismatch_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_intel -Checking test 120 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 332.349144 - 0: The maximum resident set size (KB) = 894392 - -Test 120 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_debug_dyn32_phy32_intel -Checking test 121 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 348.227973 - 0: The maximum resident set size (KB) = 1014940 - -Test 121 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hrrr_control_debug_dyn32_phy32_intel -Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 339.975464 - 0: The maximum resident set size (KB) = 1014704 - -Test 122 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_intel -Checking test 123 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1078.617766 - 0: The maximum resident set size (KB) = 1129708 - -Test 123 conus13km_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_qr_intel -Checking test 124 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 1086.949583 - 0: The maximum resident set size (KB) = 844356 - -Test 124 conus13km_debug_qr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_debug_2threads_intel -Checking test 125 conus13km_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 637.005964 - 0: The maximum resident set size (KB) = 1073244 - -Test 125 conus13km_debug_2threads_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/conus13km_radar_tten_debug_intel -Checking test 126 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 1080.027581 - 0: The maximum resident set size (KB) = 1191248 - -Test 126 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/rap_control_dyn64_phy32_debug_intel -Checking test 127 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 354.388561 - 0: The maximum resident set size (KB) = 1059404 - -Test 127 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_intel -Checking test 128 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 476.717845 - 0: The maximum resident set size (KB) = 707808 - -Test 128 hafs_regional_atm_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 425.227955 - 0: The maximum resident set size (KB) = 1087020 - -Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS - -Test 130 hafs_regional_atm_ocn_intel FAIL - -Test 130 hafs_regional_atm_ocn_intel FAIL - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_wav_intel -Checking test 131 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 990.821542 - 0: The maximum resident set size (KB) = 804264 - -Test 131 hafs_regional_atm_wav_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_atm_ocn_wav_intel -Checking test 132 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 1079.639482 - 0: The maximum resident set size (KB) = 821332 - -Test 132 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/gnv1_nested_intel -Checking test 133 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 410.179977 - 0: The maximum resident set size (KB) = 763276 - -Test 133 gnv1_nested_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_intel -Checking test 134 hafs_regional_docn_intel 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 = 574.086147 - 0: The maximum resident set size (KB) = 763520 - -Test 134 hafs_regional_docn_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/hafs_regional_docn_oisst_intel -Checking test 135 hafs_regional_docn_oisst_intel 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 = 561.841074 - 0: The maximum resident set size (KB) = 747004 - -Test 135 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_intel -Checking test 136 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 207.068092 - 0: The maximum resident set size (KB) = 1034420 - -Test 136 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_restart_cfsr_intel -Checking test 137 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 121.050281 - 0: The maximum resident set size (KB) = 1007432 - -Test 137 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_gefs_intel -Checking test 138 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 204.004465 - 0: The maximum resident set size (KB) = 913884 - -Test 138 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_iau_gefs_intel -Checking test 139 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 206.478686 - 0: The maximum resident set size (KB) = 914100 - -Test 139 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_stochy_gefs_intel -Checking test 140 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 208.415550 - 0: The maximum resident set size (KB) = 914816 - -Test 140 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_ciceC_cfsr_intel -Checking test 141 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 207.675031 - 0: The maximum resident set size (KB) = 1041088 - -Test 141 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_cfsr_intel -Checking test 142 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 207.260765 - 0: The maximum resident set size (KB) = 1042384 - -Test 142 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_bulk_gefs_intel -Checking test 143 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 204.051323 - 0: The maximum resident set size (KB) = 914296 - -Test 143 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_cfsr_intel -Checking test 144 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 470.466933 - 0: The maximum resident set size (KB) = 872692 - -Test 144 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_mx025_gefs_intel -Checking test 145 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 469.482267 - 0: The maximum resident set size (KB) = 831800 - -Test 145 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_multiple_files_cfsr_intel -Checking test 146 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 205.678663 - 0: The maximum resident set size (KB) = 1041052 - -Test 146 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_3072x1536_cfsr_intel -Checking test 147 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 306.289101 - 0: The maximum resident set size (KB) = 2386896 - -Test 147 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_gfs_intel -Checking test 148 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 293.490128 - 0: The maximum resident set size (KB) = 2340200 - -Test 148 datm_cdeps_gfs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_debug_cfsr_intel -Checking test 149 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 459.473457 - 0: The maximum resident set size (KB) = 983740 - -Test 149 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_control_cfsr_faster_intel -Checking test 150 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 238.194888 - 0: The maximum resident set size (KB) = 1036176 - -Test 150 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_gswp3_intel -Checking test 151 datm_cdeps_lnd_gswp3_intel 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 = 108.031724 - 0: The maximum resident set size (KB) = 228376 - -Test 151 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_intel -Checking test 152 datm_cdeps_lnd_era5_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 91.316552 - 0: The maximum resident set size (KB) = 248364 - -Test 152 datm_cdeps_lnd_era5_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/datm_cdeps_lnd_era5_rst_intel -Checking test 153 datm_cdeps_lnd_era5_rst_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 39.165795 - 0: The maximum resident set size (KB) = 245560 - -Test 153 datm_cdeps_lnd_era5_rst_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_sbs_intel -Checking test 154 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 692.889115 - 0: The maximum resident set size (KB) = 1594420 - -Test 154 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_p8_atmlnd_intel -Checking test 155 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 683.986966 - 0: The maximum resident set size (KB) = 1582664 - -Test 155 control_p8_atmlnd_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_restart_p8_atmlnd_intel -Checking test 156 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 343.651554 - 0: The maximum resident set size (KB) = 853348 - -Test 156 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmwav_control_noaero_p8_intel -Checking test 157 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 127.277317 - 0: The maximum resident set size (KB) = 1590272 - -Test 157 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/control_atmwav_intel -Checking test 158 control_atmwav_intel 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 - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 152.366863 - 0: The maximum resident set size (KB) = 603188 - -Test 158 control_atmwav_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_intel -Checking test 159 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 297.366017 - 0: The maximum resident set size (KB) = 1685880 - -Test 159 atmaero_control_p8_intel PASS - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_intel -Checking test 160 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 379.443106 - 0: The maximum resident set size (KB) = 1712780 - -Test 160 atmaero_control_p8_rad_intel PASS Tries: 2 - - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_131869/atmaero_control_p8_rad_micro_intel -Checking test 161 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 388.582436 - 0: The maximum resident set size (KB) = 1725884 - -Test 161 atmaero_control_p8_rad_micro_intel PASS - -FAILED TESTS: -hafs_regional_atm_ocn_intel 130 failed in run_test - -REGRESSION TEST FAILED -Wed Feb 14 02:08:12 UTC 2024 -Elapsed time: 04h:01m:43s. Have a nice day! -Wed Feb 14 02:14:51 UTC 2024 -Start Regression test - -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 1956 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-l) - USE CONFIG FILE: rt.conf -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_302887/hafs_regional_atm_ocn_intel -Checking test 001 hafs_regional_atm_ocn_intel 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 +PASS -- COMPILE 'hafs_all_intel' [25:14, 23:54] +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:48, 07:05](749 MB) - 0: The total amount of wall time = 552.777055 - 0: The maximum resident set size (KB) = 764200 +SYNOPSIS: +Starting Date/Time: 20240221 17:29:27 +Ending Date/Time: 20240221 18:09:29 +Total Time: 00h:40m:09s +Compiles Completed: 1/1 +Tests Completed: 1/1 -Test 001 hafs_regional_atm_ocn_intel PASS +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. +Result: SUCCESS -REGRESSION TEST WAS SUCCESSFUL -Wed Feb 14 03:03:11 UTC 2024 -Elapsed time: 00h:48m:22s. Have a nice day! +====END OF JET REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index e6d4990e53..685e0a2ad6 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,6272 +1,308 @@ -Tue Feb 13 19:40:41 CST 2024 -Start Regression test - -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 667 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 205 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 632 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 270 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 789 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 725 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 698 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 787 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 689 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 237 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 440 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 415 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 67 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 759 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 757 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 250 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 795 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 941 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 648 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 663 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 820 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 744 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 968 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 319 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 1150 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1176 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 937 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 300 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 863 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 326 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1074 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 661 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 301.535495 - 0: The maximum resident set size (KB) = 3179084 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 974.980836 - 0: The maximum resident set size (KB) = 1741024 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1054.768539 - 0: The maximum resident set size (KB) = 2017916 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 471.097118 - 0: The maximum resident set size (KB) = 1108868 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1153.528751 - 0: The maximum resident set size (KB) = 1643500 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1380.424891 - 0: The maximum resident set size (KB) = 1681692 - -Test 006 cpld_debug_gfsv17_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 326.555609 - 0: The maximum resident set size (KB) = 3209740 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 324.692990 - 0: The maximum resident set size (KB) = 3215900 - -Test 008 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 191.987744 - 0: The maximum resident set size (KB) = 3252180 - -Test 009 cpld_restart_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 326.013376 - 0: The maximum resident set size (KB) = 3239592 - -Test 010 cpld_control_qr_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 200.568233 - 0: The maximum resident set size (KB) = 3269664 - -Test 011 cpld_restart_qr_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_2threads_p8_intel -Checking test 012 cpld_2threads_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 355.299746 - 0: The maximum resident set size (KB) = 3554336 - -Test 012 cpld_2threads_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_decomp_p8_intel -Checking test 013 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 328.622754 - 0: The maximum resident set size (KB) = 3207056 - -Test 013 cpld_decomp_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_p8_intel -Checking test 014 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 269.503791 - 0: The maximum resident set size (KB) = 3068272 - -Test 014 cpld_mpi_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_ciceC_p8_intel -Checking test 015 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 325.232715 - 0: The maximum resident set size (KB) = 3213624 - -Test 015 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c192_p8_intel -Checking test 016 cpld_control_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 595.455407 - 0: The maximum resident set size (KB) = 3259364 - -Test 016 cpld_control_c192_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_c192_p8_intel -Checking test 017 cpld_restart_c192_p8_intel 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/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 - - 0: The total amount of wall time = 384.019087 - 0: The maximum resident set size (KB) = 3546764 - -Test 017 cpld_restart_c192_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_bmark_p8_intel -Checking test 018 cpld_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 638.338330 - 0: The maximum resident set size (KB) = 4123728 - -Test 018 cpld_bmark_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_bmark_p8_intel -Checking test 019 cpld_restart_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 441.359999 - 0: The maximum resident set size (KB) = 4368600 - -Test 019 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_s2sa_p8_intel -Checking test 020 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 304.805018 - 0: The maximum resident set size (KB) = 3175164 - -Test 020 cpld_s2sa_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_intel -Checking test 021 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 256.703064 - 0: The maximum resident set size (KB) = 1724568 - -Test 021 cpld_control_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_nowave_noaero_p8_intel -Checking test 022 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 247.090018 - 0: The maximum resident set size (KB) = 1782448 - -Test 022 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_p8_intel -Checking test 023 cpld_debug_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 502.349347 - 0: The maximum resident set size (KB) = 3248244 - -Test 023 cpld_debug_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_noaero_p8_intel -Checking test 024 cpld_debug_noaero_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 344.755866 - 0: The maximum resident set size (KB) = 1755776 - -Test 024 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_noaero_p8_agrid_intel -Checking test 025 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 245.304519 - 0: The maximum resident set size (KB) = 1780988 - -Test 025 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_c48_intel -Checking test 026 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 473.527220 - 0: The maximum resident set size (KB) = 2825808 - -Test 026 cpld_control_c48_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_p8_faster_intel -Checking test 027 cpld_control_p8_faster_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 333.172205 - 0: The maximum resident set size (KB) = 3207816 - -Test 027 cpld_control_p8_faster_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_control_pdlib_p8_intel -Checking test 028 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 977.209337 - 0: The maximum resident set size (KB) = 1779632 - -Test 028 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_restart_pdlib_p8_intel -Checking test 029 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 478.275910 - 0: The maximum resident set size (KB) = 1169596 - -Test 029 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_mpi_pdlib_p8_intel -Checking test 030 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1101.840624 - 0: The maximum resident set size (KB) = 1667832 - -Test 030 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/cpld_debug_pdlib_p8_intel -Checking test 031 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1484.231567 - 0: The maximum resident set size (KB) = 1707192 - -Test 031 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_flake_intel -Checking test 032 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 205.290697 - 0: The maximum resident set size (KB) = 703408 - -Test 032 control_flake_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_intel -Checking test 033 control_CubedSphereGrid_intel 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 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 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 - - 0: The total amount of wall time = 138.789268 - 0: The maximum resident set size (KB) = 652048 - -Test 033 control_CubedSphereGrid_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_parallel_intel -Checking test 034 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 150.138908 - 0: The maximum resident set size (KB) = 654884 - -Test 034 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_latlon_intel -Checking test 035 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 145.746665 - 0: The maximum resident set size (KB) = 598520 - -Test 035 control_latlon_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_intel -Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 143.687698 - 0: The maximum resident set size (KB) = 651128 - -Test 036 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48_intel -Checking test 037 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 348.566627 -0: The maximum resident set size (KB) = 862692 - -Test 037 control_c48_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c48.v2.sfc_intel -Checking test 038 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 351.363973 -0: The maximum resident set size (KB) = 872188 - -Test 038 control_c48.v2.sfc_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c192_intel -Checking test 039 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 536.023905 - 0: The maximum resident set size (KB) = 857416 - -Test 039 control_c192_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384_intel -Checking test 040 control_c384_intel 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 - - 0: The total amount of wall time = 603.759118 - 0: The maximum resident set size (KB) = 1245304 - -Test 040 control_c384_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_c384gdas_intel -Checking test 041 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 536.538698 - 0: The maximum resident set size (KB) = 1308248 - -Test 041 control_c384gdas_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_intel -Checking test 042 control_stochy_intel 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 - - 0: The total amount of wall time = 236.088814 - 0: The maximum resident set size (KB) = 659164 - -Test 042 control_stochy_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_restart_intel -Checking test 043 control_stochy_restart_intel 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.087111 - 0: The maximum resident set size (KB) = 499604 - -Test 043 control_stochy_restart_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_intel -Checking test 044 control_lndp_intel 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 - - 0: The total amount of wall time = 89.825266 - 0: The maximum resident set size (KB) = 649260 - -Test 044 control_lndp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr4_intel -Checking test 045 control_iovr4_intel 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 - - 0: The total amount of wall time = 143.342597 - 0: The maximum resident set size (KB) = 599720 - -Test 045 control_iovr4_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_iovr5_intel -Checking test 046 control_iovr5_intel 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 - - 0: The total amount of wall time = 139.612058 - 0: The maximum resident set size (KB) = 646880 - -Test 046 control_iovr5_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_intel -Checking test 047 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 177.132743 - 0: The maximum resident set size (KB) = 1627744 - -Test 047 control_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8.v2.sfc_intel -Checking test 048 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 176.627299 - 0: The maximum resident set size (KB) = 1628272 - -Test 048 control_p8.v2.sfc_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_ugwpv1_intel -Checking test 049 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 162.648454 - 0: The maximum resident set size (KB) = 1626672 - -Test 049 control_p8_ugwpv1_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_intel -Checking test 050 control_restart_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 90.237566 - 0: The maximum resident set size (KB) = 888596 - -Test 050 control_restart_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_noqr_p8_intel -Checking test 051 control_noqr_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 172.399677 - 0: The maximum resident set size (KB) = 1617304 - -Test 051 control_noqr_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_noqr_p8_intel -Checking test 052 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 88.759681 - 0: The maximum resident set size (KB) = 926672 - -Test 052 control_restart_noqr_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_decomp_p8_intel -Checking test 053 control_decomp_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 172.092008 - 0: The maximum resident set size (KB) = 1615132 - -Test 053 control_decomp_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_2threads_p8_intel -Checking test 054 control_2threads_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 178.386978 - 0: The maximum resident set size (KB) = 1714152 - -Test 054 control_2threads_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_lndp_intel -Checking test 055 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 307.189829 - 0: The maximum resident set size (KB) = 1618456 - -Test 055 control_p8_lndp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_rrtmgp_intel -Checking test 056 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 229.876717 - 0: The maximum resident set size (KB) = 1687228 - -Test 056 control_p8_rrtmgp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_mynn_intel -Checking test 057 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 167.886708 - 0: The maximum resident set size (KB) = 1628684 - -Test 057 control_p8_mynn_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/merra2_thompson_intel -Checking test 058 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 200.169508 - 0: The maximum resident set size (KB) = 1644112 - -Test 058 merra2_thompson_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_intel -Checking test 059 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 302.599084 - 0: The maximum resident set size (KB) = 856200 - -Test 059 regional_control_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_restart_intel -Checking test 060 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 160.401540 - 0: The maximum resident set size (KB) = 1023744 - -Test 060 regional_restart_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_decomp_intel -Checking test 061 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 318.727468 - 0: The maximum resident set size (KB) = 848060 - -Test 061 regional_decomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2threads_intel -Checking test 062 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 213.331729 - 0: The maximum resident set size (KB) = 842564 - -Test 062 regional_2threads_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_noquilt_intel -Checking test 063 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - - 0: The total amount of wall time = 294.509183 - 0: The maximum resident set size (KB) = 1364140 - -Test 063 regional_noquilt_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_netcdf_parallel_intel -Checking test 064 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 293.990290 - 0: The maximum resident set size (KB) = 855428 - -Test 064 regional_netcdf_parallel_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_2dwrtdecomp_intel -Checking test 065 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 296.906280 - 0: The maximum resident set size (KB) = 852100 - -Test 065 regional_2dwrtdecomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_wofs_intel -Checking test 066 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 385.584485 - 0: The maximum resident set size (KB) = 1921680 - -Test 066 regional_wofs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_intel -Checking test 067 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 454.379619 - 0: The maximum resident set size (KB) = 1109460 - -Test 067 rap_control_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_intel -Checking test 068 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 275.976213 - 0: The maximum resident set size (KB) = 1303044 - -Test 068 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_decomp_intel -Checking test 069 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 476.816352 - 0: The maximum resident set size (KB) = 1028124 - -Test 069 rap_decomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_intel -Checking test 070 rap_2threads_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 466.628534 - 0: The maximum resident set size (KB) = 1182704 - -Test 070 rap_2threads_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_intel -Checking test 071 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 232.608853 - 0: The maximum resident set size (KB) = 1098420 - -Test 071 rap_restart_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_intel -Checking test 072 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 451.386579 - 0: The maximum resident set size (KB) = 1099996 - -Test 072 rap_sfcdiff_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_decomp_intel -Checking test 073 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 477.216399 - 0: The maximum resident set size (KB) = 1023840 - -Test 073 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_restart_intel -Checking test 074 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 340.230630 - 0: The maximum resident set size (KB) = 1135196 - -Test 074 rap_sfcdiff_restart_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_intel -Checking test 075 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 228.662743 - 0: The maximum resident set size (KB) = 1039932 - -Test 075 hrrr_control_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_intel -Checking test 076 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 237.099533 - 0: The maximum resident set size (KB) = 1019136 - -Test 076 hrrr_control_decomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_intel -Checking test 077 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 193.806730 - 0: The maximum resident set size (KB) = 1111304 - -Test 077 hrrr_control_2threads_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_intel -Checking test 078 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 120.266180 - 0: The maximum resident set size (KB) = 1000480 - -Test 078 hrrr_control_restart_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_intel -Checking test 079 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 444.578004 - 0: The maximum resident set size (KB) = 1090636 - -Test 079 rrfs_v1beta_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_intel -Checking test 080 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 539.862203 - 0: The maximum resident set size (KB) = 1995360 - -Test 080 rrfs_v1nssl_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1nssl_nohailnoccn_intel -Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 528.734531 - 0: The maximum resident set size (KB) = 2067700 - -Test 081 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_intel -Checking test 082 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 348.666453 - 0: The maximum resident set size (KB) = 709872 - -Test 082 control_csawmg_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_intel -Checking test 083 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 340.256091 - 0: The maximum resident set size (KB) = 750524 - -Test 083 control_csawmgt_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_intel -Checking test 084 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 190.111149 - 0: The maximum resident set size (KB) = 741976 - -Test 084 control_ras_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_intel -Checking test 085 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 117.836898 - 0: The maximum resident set size (KB) = 659492 - -Test 085 control_wam_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_faster_intel -Checking test 086 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 147.710157 - 0: The maximum resident set size (KB) = 1634152 - -Test 086 control_p8_faster_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_control_faster_intel -Checking test 087 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 269.950099 - 0: The maximum resident set size (KB) = 851480 - -Test 087 regional_control_faster_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_CubedSphereGrid_debug_intel -Checking test 088 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 162.342462 - 0: The maximum resident set size (KB) = 817468 - -Test 088 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 158.582992 - 0: The maximum resident set size (KB) = 761260 - -Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_stochy_debug_intel -Checking test 090 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 179.328922 - 0: The maximum resident set size (KB) = 817520 - -Test 090 control_stochy_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_lndp_debug_intel -Checking test 091 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 158.282236 - 0: The maximum resident set size (KB) = 815488 - -Test 091 control_lndp_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmg_debug_intel -Checking test 092 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 242.121993 - 0: The maximum resident set size (KB) = 862520 - -Test 092 control_csawmg_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_csawmgt_debug_intel -Checking test 093 control_csawmgt_debug_intel 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.562702 - 0: The maximum resident set size (KB) = 860060 - -Test 093 control_csawmgt_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_ras_debug_intel -Checking test 094 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 159.786021 - 0: The maximum resident set size (KB) = 828620 - -Test 094 control_ras_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_diag_debug_intel -Checking test 095 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 161.567847 - 0: The maximum resident set size (KB) = 870248 - -Test 095 control_diag_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_debug_p8_intel -Checking test 096 control_debug_p8_intel 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.609448 - 0: The maximum resident set size (KB) = 1643948 - -Test 096 control_debug_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_debug_intel -Checking test 097 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - - 0: The total amount of wall time = 1029.052233 - 0: The maximum resident set size (KB) = 842300 - -Test 097 regional_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_intel -Checking test 098 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 290.234996 - 0: The maximum resident set size (KB) = 1208800 - -Test 098 rap_control_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_intel -Checking test 099 hrrr_control_debug_intel 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.196024 - 0: The maximum resident set size (KB) = 1201560 - -Test 099 hrrr_control_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_gf_debug_intel -Checking test 100 hrrr_gf_debug_intel 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.043240 - 0: The maximum resident set size (KB) = 1144964 - -Test 100 hrrr_gf_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_c3_debug_intel -Checking test 101 hrrr_c3_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 295.484683 - 0: The maximum resident set size (KB) = 1195980 - -Test 101 hrrr_c3_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_drag_suite_debug_intel -Checking test 102 rap_unified_drag_suite_debug_intel 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.614768 - 0: The maximum resident set size (KB) = 1203704 - -Test 102 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_diag_debug_intel -Checking test 103 rap_diag_debug_intel 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.461129 - 0: The maximum resident set size (KB) = 1290176 - -Test 103 rap_diag_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_cires_ugwp_debug_intel -Checking test 104 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 291.470095 - 0: The maximum resident set size (KB) = 1199732 - -Test 104 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_unified_ugwp_debug_intel -Checking test 105 rap_unified_ugwp_debug_intel 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.313429 - 0: The maximum resident set size (KB) = 1198352 - -Test 105 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_lndp_debug_intel -Checking test 106 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 314.634665 - 0: The maximum resident set size (KB) = 1150932 - -Test 106 rap_lndp_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_progcld_thompson_debug_intel -Checking test 107 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 286.027627 - 0: The maximum resident set size (KB) = 1211628 - -Test 107 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_debug_intel -Checking test 108 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 279.674781 - 0: The maximum resident set size (KB) = 1198516 - -Test 108 rap_noah_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_sfcdiff_debug_intel -Checking test 109 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 287.094300 - 0: The maximum resident set size (KB) = 1202684 - -Test 109 rap_sfcdiff_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 474.631970 - 0: The maximum resident set size (KB) = 1188640 - -Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rrfs_v1beta_debug_intel -Checking test 111 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 282.726763 - 0: The maximum resident set size (KB) = 1202944 - -Test 111 rrfs_v1beta_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_clm_lake_debug_intel -Checking test 112 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 356.573609 - 0: The maximum resident set size (KB) = 1206544 - -Test 112 rap_clm_lake_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_flake_debug_intel -Checking test 113 rap_flake_debug_intel 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.796758 - 0: The maximum resident set size (KB) = 1203280 - -Test 113 rap_flake_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_c96_no_nest_debug_intel -Checking test 114 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 498.216245 - 0: The maximum resident set size (KB) = 1204652 - -Test 114 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_wam_debug_intel -Checking test 115 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 286.764877 - 0: The maximum resident set size (KB) = 515624 - -Test 115 control_wam_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 263.599302 - 0: The maximum resident set size (KB) = 1168112 - -Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn32_phy32_intel -Checking test 117 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 374.977947 - 0: The maximum resident set size (KB) = 990992 - -Test 117 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_dyn32_phy32_intel -Checking test 118 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 194.241147 - 0: The maximum resident set size (KB) = 989448 - -Test 118 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_2threads_dyn32_phy32_intel -Checking test 119 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 391.465469 - 0: The maximum resident set size (KB) = 1088532 - -Test 119 rap_2threads_dyn32_phy32_intel PASS +====START OF ORION REGRESSION TESTING LOG==== +UFSWM hash used in testing: +0d31ac8854fee356e5409931c3cd5b85e9611a15 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_2threads_dyn32_phy32_intel -Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 168.650345 - 0: The maximum resident set size (KB) = 960700 - -Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_decomp_dyn32_phy32_intel -Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 208.189304 - 0: The maximum resident set size (KB) = 932732 - -Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_restart_dyn32_phy32_intel -Checking test 122 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 284.767218 - 0: The maximum resident set size (KB) = 1034380 - -Test 122 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_restart_dyn32_phy32_intel -Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 107.453722 - 0: The maximum resident set size (KB) = 933064 - -Test 123 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_control_intel -Checking test 124 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 113.741949 - 0: The maximum resident set size (KB) = 1198248 - -Test 124 conus13km_control_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_2threads_intel -Checking test 125 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 56.689549 - 0: The maximum resident set size (KB) = 1123316 - -Test 125 conus13km_2threads_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_restart_mismatch_intel -Checking test 126 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 71.324885 - 0: The maximum resident set size (KB) = 1112256 - -Test 126 conus13km_restart_mismatch_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_intel -Checking test 127 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 244.166162 - 0: The maximum resident set size (KB) = 996080 - -Test 127 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_debug_dyn32_phy32_intel -Checking test 128 rap_control_debug_dyn32_phy32_intel 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.122094 - 0: The maximum resident set size (KB) = 1081220 - -Test 128 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hrrr_control_debug_dyn32_phy32_intel -Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 273.077148 - 0: The maximum resident set size (KB) = 1078984 - -Test 129 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_intel -Checking test 130 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - - 0: The total amount of wall time = 883.616506 - 0: The maximum resident set size (KB) = 1232096 - -Test 130 conus13km_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_qr_intel -Checking test 131 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 877.481632 - 0: The maximum resident set size (KB) = 930760 - -Test 131 conus13km_debug_qr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_debug_2threads_intel -Checking test 132 conus13km_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 512.702983 - 0: The maximum resident set size (KB) = 1100960 - -Test 132 conus13km_debug_2threads_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/conus13km_radar_tten_debug_intel -Checking test 133 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 864.228547 - 0: The maximum resident set size (KB) = 1292208 - -Test 133 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/rap_control_dyn64_phy32_debug_intel -Checking test 134 rap_control_dyn64_phy32_debug_intel 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.173758 - 0: The maximum resident set size (KB) = 1123684 - -Test 134 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_intel -Checking test 135 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 328.596464 - 0: The maximum resident set size (KB) = 738476 - -Test 135 hafs_regional_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 364.630257 - 0: The maximum resident set size (KB) = 1120072 - -Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_intel -Checking test 137 hafs_regional_atm_ocn_intel 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 = 411.993723 - 0: The maximum resident set size (KB) = 783524 - -Test 137 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_wav_intel -Checking test 138 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 791.269515 - 0: The maximum resident set size (KB) = 860592 - -Test 138 hafs_regional_atm_wav_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_atm_ocn_wav_intel -Checking test 139 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 875.524976 - 0: The maximum resident set size (KB) = 884624 - -Test 139 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_1nest_atm_intel -Checking test 140 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 365.464749 - 0: The maximum resident set size (KB) = 499320 - -Test 140 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_telescopic_2nests_atm_intel -Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 443.561957 - 0: The maximum resident set size (KB) = 486292 - -Test 141 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_1nest_atm_intel -Checking test 142 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 182.443505 - 0: The maximum resident set size (KB) = 373596 - -Test 142 hafs_global_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_multiple_4nests_atm_intel -Checking test 143 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - - 0: The total amount of wall time = 491.611369 - 0: The maximum resident set size (KB) = 479896 - -Test 143 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_specified_moving_1nest_atm_intel -Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 243.768041 - 0: The maximum resident set size (KB) = 528900 - -Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 235.248058 - 0: The maximum resident set size (KB) = 527440 - -Test 145 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 319.007158 - 0: The maximum resident set size (KB) = 543232 - -Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_global_storm_following_1nest_atm_intel -Checking test 147 hafs_global_storm_following_1nest_atm_intel 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 = 84.376151 - 0: The maximum resident set size (KB) = 402088 - -Test 147 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/gnv1_nested_intel -Checking test 148 gnv1_nested_intel results .... - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atm.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_ne.res.nest02.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_BC_sw.res.nest02.nc ............ALT CHECK......NOT OK - - 0: The total amount of wall time = 289.137622 - 0: The maximum resident set size (KB) = 803856 - -Test 148 gnv1_nested_intel FAIL Tries: 2 - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - - 0: The total amount of wall time = 1249.711129 - 0: The maximum resident set size (KB) = 574500 - -Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 577.595540 - 0: The maximum resident set size (KB) = 672492 - -Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 581.714316 - 0: The maximum resident set size (KB) = 716316 - -Test 151 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 457.182550 - 0: The maximum resident set size (KB) = 643412 - -Test 152 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_intel -Checking test 153 hafs_regional_docn_intel 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 = 373.592859 - 0: The maximum resident set size (KB) = 831768 - -Test 153 hafs_regional_docn_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_docn_oisst_intel -Checking test 154 hafs_regional_docn_oisst_intel 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 = 384.377249 - 0: The maximum resident set size (KB) = 815344 - -Test 154 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/hafs_regional_datm_cdeps_intel -Checking test 155 hafs_regional_datm_cdeps_intel 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 = 948.326176 - 0: The maximum resident set size (KB) = 1209820 - -Test 155 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_intel -Checking test 156 datm_cdeps_control_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 152.647059 - 0: The maximum resident set size (KB) = 1138652 - -Test 156 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_restart_cfsr_intel -Checking test 157 datm_cdeps_restart_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 88.683271 - 0: The maximum resident set size (KB) = 1091432 - -Test 157 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_gefs_intel -Checking test 158 datm_cdeps_control_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 147.245503 - 0: The maximum resident set size (KB) = 1015548 - -Test 158 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_iau_gefs_intel -Checking test 159 datm_cdeps_iau_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 148.886800 - 0: The maximum resident set size (KB) = 1013800 - -Test 159 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_stochy_gefs_intel -Checking test 160 datm_cdeps_stochy_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 148.175446 - 0: The maximum resident set size (KB) = 1019588 - -Test 160 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_ciceC_cfsr_intel -Checking test 161 datm_cdeps_ciceC_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.317638 - 0: The maximum resident set size (KB) = 1131700 - -Test 161 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_cfsr_intel -Checking test 162 datm_cdeps_bulk_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 147.508235 - 0: The maximum resident set size (KB) = 1116288 - -Test 162 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_bulk_gefs_intel -Checking test 163 datm_cdeps_bulk_gefs_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 148.047303 - 0: The maximum resident set size (KB) = 1019492 - -Test 163 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_cfsr_intel -Checking test 164 datm_cdeps_mx025_cfsr_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 353.523564 - 0: The maximum resident set size (KB) = 1058268 - -Test 164 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_mx025_gefs_intel -Checking test 165 datm_cdeps_mx025_gefs_intel results .... - Comparing RESTART/20111001.120000.MOM.res.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 345.307426 - 0: The maximum resident set size (KB) = 1001192 - -Test 165 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_multiple_files_cfsr_intel -Checking test 166 datm_cdeps_multiple_files_cfsr_intel results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.115196 - 0: The maximum resident set size (KB) = 1137200 - -Test 166 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_3072x1536_cfsr_intel -Checking test 167 datm_cdeps_3072x1536_cfsr_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 217.054180 - 0: The maximum resident set size (KB) = 2403708 - -Test 167 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_gfs_intel -Checking test 168 datm_cdeps_gfs_intel results .... - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 217.555488 - 0: The maximum resident set size (KB) = 2469852 - -Test 168 datm_cdeps_gfs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_debug_cfsr_intel -Checking test 169 datm_cdeps_debug_cfsr_intel results .... - Comparing RESTART/20111001.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - - 0: The total amount of wall time = 362.860271 - 0: The maximum resident set size (KB) = 1063896 - -Test 169 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_control_cfsr_faster_intel -Checking test 170 datm_cdeps_control_cfsr_faster_intel results .... - Comparing RESTART/20111002.000000.MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 153.275664 - 0: The maximum resident set size (KB) = 1139668 - -Test 170 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_gswp3_intel -Checking test 171 datm_cdeps_lnd_gswp3_intel 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 = 51.538648 - 0: The maximum resident set size (KB) = 260780 - -Test 171 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_intel -Checking test 172 datm_cdeps_lnd_era5_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 54.342466 - 0: The maximum resident set size (KB) = 326276 - -Test 172 datm_cdeps_lnd_era5_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/datm_cdeps_lnd_era5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/datm_cdeps_lnd_era5_rst_intel -Checking test 173 datm_cdeps_lnd_era5_rst_intel results .... - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2011-01-01-43200.tile6.nc .........OK - - 0: The total amount of wall time = 31.364450 - 0: The maximum resident set size (KB) = 322284 - -Test 173 datm_cdeps_lnd_era5_rst_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_sbs_intel -Checking test 174 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 263.329875 - 0: The maximum resident set size (KB) = 1611364 - -Test 174 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_p8_atmlnd_intel -Checking test 175 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 264.134060 - 0: The maximum resident set size (KB) = 1606780 - -Test 175 control_p8_atmlnd_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_restart_p8_atmlnd_intel -Checking test 176 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 125.990273 - 0: The maximum resident set size (KB) = 900868 - -Test 176 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmwav_control_noaero_p8_intel -Checking test 177 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 105.534816 - 0: The maximum resident set size (KB) = 1659924 - -Test 177 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/control_atmwav_intel -Checking test 178 control_atmwav_intel 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 - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 96.788507 - 0: The maximum resident set size (KB) = 676480 - -Test 178 control_atmwav_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_intel -Checking test 179 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 239.493134 - 0: The maximum resident set size (KB) = 3024016 - -Test 179 atmaero_control_p8_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_intel -Checking test 180 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 292.670045 - 0: The maximum resident set size (KB) = 3089668 - -Test 180 atmaero_control_p8_rad_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/atmaero_control_p8_rad_micro_intel -Checking test 181 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 302.777064 - 0: The maximum resident set size (KB) = 3104452 - -Test 181 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_99156/regional_atmaq_debug_intel -Checking test 182 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - - 0: The total amount of wall time = 1300.410865 - 0: The maximum resident set size (KB) = 4580096 - -Test 182 regional_atmaq_debug_intel PASS - -FAILED TESTS: -148 gnv1_nested_intel failed in check_result -gnv1_nested_intel 148 failed in run_test - -REGRESSION TEST FAILED -Wed Feb 14 02:59:29 CST 2024 -Elapsed time: 07h:18m:50s. Have a nice day! -Wed Feb 14 08:25:16 CST 2024 -Start Regression test - -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile hafsw_intel elapsed time 881 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_294699/gnv1_nested_intel -Checking test 001 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - - 0: The total amount of wall time = 284.447630 - 0: The maximum resident set size (KB) = 802428 - -Test 001 gnv1_nested_intel PASS Tries: 2 -REGRESSION TEST WAS SUCCESSFUL -Wed Feb 14 09:00:56 CST 2024 -Elapsed time: 00h:35m:41s. Have a nice day! +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_403308 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nems +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:18] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:44, 05:13](3185 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 20:01] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:45, 16:24](1738 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:54, 17:38](2026 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:57, 08:07](1111 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:39, 18:29](1644 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:56] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 23:01](1681 MB) + +PASS -- COMPILE 's2swa_intel' [17:07, 15:18] +PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:37](3217 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:40](3206 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:51, 03:17](3253 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:44](3235 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:49, 03:29](3276 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 06:08](3551 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:42](3198 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:43](3070 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:40](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:40, 10:01](3335 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:23, 06:09](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:06, 11:07](4121 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:43, 06:47](4374 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 05:26](3175 MB) + +PASS -- COMPILE 's2sw_intel' [16:07, 14:53] +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:29](1735 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:14, 04:26](1779 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:51] +PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:31](3249 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:43] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:58](1749 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:59] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:17, 04:17](1790 MB) + +PASS -- COMPILE 's2s_intel' [15:07, 13:16] +PASS -- TEST 'cpld_control_c48_intel' [10:52, 08:05](2828 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:20] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:17](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:24] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 16:29](1776 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 08:01](1177 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:04, 18:27](1678 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:55] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:18](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:15] +PASS -- TEST 'control_flake_intel' [05:20, 03:31](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:29](649 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:36](650 MB) +PASS -- TEST 'control_latlon_intel' [04:20, 02:30](646 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](650 MB) +PASS -- TEST 'control_c48_intel' [07:24, 06:01](871 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:57](870 MB) +PASS -- TEST 'control_c192_intel' [11:34, 09:07](858 MB) +PASS -- TEST 'control_c384_intel' [13:41, 10:02](1245 MB) +PASS -- TEST 'control_c384gdas_intel' [13:47, 09:05](1348 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:45](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](497 MB) +PASS -- TEST 'control_lndp_intel' [03:17, 01:40](656 MB) +PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](646 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:25](652 MB) +PASS -- TEST 'control_p8_intel' [05:14, 02:59](1633 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:54](1632 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 02:50](1638 MB) +PASS -- TEST 'control_restart_p8_intel' [04:16, 01:38](895 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:54](1612 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:39](929 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:59](1615 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:02](1715 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:52, 05:11](1621 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:32, 04:03](1687 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:22, 02:59](1627 MB) +PASS -- TEST 'merra2_thompson_intel' [06:38, 03:32](1640 MB) +PASS -- TEST 'regional_control_intel' [07:34, 05:14](855 MB) +PASS -- TEST 'regional_restart_intel' [04:42, 02:42](1020 MB) +PASS -- TEST 'regional_decomp_intel' [07:30, 05:29](852 MB) +PASS -- TEST 'regional_2threads_intel' [05:34, 03:42](844 MB) +PASS -- TEST 'regional_noquilt_intel' [06:35, 05:01](1368 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:04](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:04](857 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 06:33](1919 MB) + +PASS -- COMPILE 'rrfs_intel' [14:06, 12:43] +PASS -- TEST 'rap_control_intel' [10:28, 07:47](1106 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:48](1295 MB) +PASS -- TEST 'rap_decomp_intel' [11:15, 08:07](1028 MB) +PASS -- TEST 'rap_2threads_intel' [10:26, 07:57](1177 MB) +PASS -- TEST 'rap_restart_intel' [06:18, 04:03](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:44](1108 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:07](1025 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:24, 05:47](1134 MB) +PASS -- TEST 'hrrr_control_intel' [06:52, 04:11](1033 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:06](1019 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:18, 03:23](1111 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:11](1002 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:34](1099 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 09:08](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:51](2080 MB) + +PASS -- COMPILE 'csawmg_intel' [13:07, 12:00] +PASS -- TEST 'control_csawmg_intel' [07:41, 05:54](746 MB) +PASS -- TEST 'control_csawmgt_intel' [07:44, 05:45](745 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:17](742 MB) + +PASS -- COMPILE 'wam_intel' [12:07, 10:18] +PASS -- TEST 'control_wam_intel' [04:17, 02:03](657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:32] +PASS -- TEST 'control_p8_faster_intel' [05:29, 02:40](1636 MB) +PASS -- TEST 'regional_control_faster_intel' [06:40, 04:38](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:32] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:45](815 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:45](813 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:58](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:50](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:10](862 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 04:06](864 MB) +PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](825 MB) +PASS -- TEST 'control_diag_debug_intel' [04:23, 02:59](873 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 02:55](1643 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:42](843 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:48](1193 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:51](1201 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1202 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:55](1204 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1282 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 05:02](1199 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1202 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:52](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:53](1204 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:51](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:02](1200 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:05](1205 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:47](1197 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 06:05](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:54](1207 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:11](1207 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:06, 02:51] +PASS -- TEST 'control_wam_debug_intel' [07:18, 05:04](517 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 11:18] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:54, 04:23](1169 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:14, 06:25](1046 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:06, 03:25](985 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:48, 06:42](1092 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 03:03](960 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](942 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:50](1028 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](935 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:39] +PASS -- TEST 'conus13km_control_intel' [12:56, 02:05](1203 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:40, 01:03](1125 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:15](1108 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 11:24] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:13](990 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:04](1078 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:48](1082 MB) +PASS -- TEST 'conus13km_debug_intel' [16:46, 14:29](1223 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 14:50](928 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:33, 08:17](1157 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:50](1293 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:54](1130 MB) + +PASS -- COMPILE 'hafsw_intel' [15:07, 13:44] +PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:31](748 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:22, 05:58](1125 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:48](828 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:11, 12:49](858 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:34](886 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 06:12](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:19, 07:34](525 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:09](372 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:10](470 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 04:08](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:23](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:25](403 MB) +PASS -- TEST 'gnv1_nested_intel' [06:56, 04:32](798 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:49] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:44, 13:10](576 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [14:06, 12:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:37](669 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:04, 09:37](707 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:17] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:59](724 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:07, 12:27] +PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:16](831 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 06:27](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:14](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:06, 08:03] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:42](1143 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:43](1096 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1012 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1015 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:00](1125 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:42](1135 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:35](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:57](1055 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 05:50](1039 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:33](1128 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:39](2439 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:36](2493 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 03:00] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:57](1058 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:16] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:40](1128 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:12] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:47](259 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:49](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:33](317 MB) + +PASS -- COMPILE 'atml_intel' [13:06, 11:46] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:14](1612 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 04:14](1607 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:37, 02:21](896 MB) + +PASS -- COMPILE 'atmw_intel' [14:06, 12:22] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:47](1673 MB) + +PASS -- COMPILE 'atmwm_intel' [13:06, 11:52] +PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB) + +PASS -- COMPILE 'atmaero_intel' [13:06, 11:27] +PASS -- TEST 'atmaero_control_p8_intel' [06:08, 03:58](3017 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:48](3091 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:05](3105 MB) + +PASS -- COMPILE 'atmaq_intel' [12:06, 10:25] + +PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55] +PASS -- TEST 'regional_atmaq_debug_intel' [23:46, 21:02](4576 MB) + +SYNOPSIS: +Starting Date/Time: 20240219 08:28:47 +Ending Date/Time: 20240219 09:57:21 +Total Time: 01h:28m:54s +Compiles Completed: 39/39 +Tests Completed: 182/182 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF ORION REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index a8a4b54def..12934ee963 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,5544 +1,266 @@ -Tue Feb 13 20:56:17 UTC 2024 -Start Regression test +====START OF WCOSS2 REGRESSION TESTING LOG==== -Testing UFSWM Hash: adaa0251576e3bce458499500e0422aefeb809c7 -Testing With Submodule Hashes: +UFSWM hash used in testing: +681a70733ad51929905514527b6d5a497cd17776 + +Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - b86395f884b5e6b336c3a5c9db2f431d9b5516b9 FV3 (remotes/origin/zsoil) + 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) -Compile atmaero_intel elapsed time 619 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 404 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_intel elapsed time 1039 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 927 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 1579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 1452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 921 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 1170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 933 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_mom6w_intel elapsed time 709 seconds. -DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 361 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 759 seconds. -DAPP=HAFSW -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 832 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 1053 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 821 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 1296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 748 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 717 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 907 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 287 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 705 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 1279 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1393 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 1362 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 250 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1439 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 572 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 1193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 329.457449 -The maximum resident set size (KB) = 2971044 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 915.125525 -The maximum resident set size (KB) = 1595356 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.120000.coupler.res .........OK - Comparing RESTART/20210323.120000.fv_core.res.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.120000.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 MOM6_OUTPUT/ocn_2021_03_23_09.nc .........OK - Comparing history/iceh_06h.2021-03-23-43200.nc ............ALT CHECK......OK - Comparing 20210323.120000.out_pnt.ww3 .........OK - Comparing 20210323.120000.out_grd.ww3 .........OK - -The total amount of wall time = 997.808037 -The maximum resident set size (KB) = 1709916 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 470.189352 -The maximum resident set size (KB) = 845676 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 1066.801900 -The maximum resident set size (KB) = 1567592 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 1416.465302 -The maximum resident set size (KB) = 1603992 - -Test 006 cpld_debug_gfsv17_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 368.621338 -The maximum resident set size (KB) = 3004160 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8.v2.sfc_intel -Checking test 008 cpld_control_p8.v2.sfc_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 365.650165 -The maximum resident set size (KB) = 3003280 - -Test 008 cpld_control_p8.v2.sfc_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_p8_intel -Checking test 009 cpld_restart_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 220.617873 -The maximum resident set size (KB) = 3067660 - -Test 009 cpld_restart_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_qr_p8_intel -Checking test 010 cpld_control_qr_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 371.869084 -The maximum resident set size (KB) = 3027368 - -Test 010 cpld_control_qr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_qr_p8_intel -Checking test 011 cpld_restart_qr_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 227.395411 -The maximum resident set size (KB) = 3080028 - -Test 011 cpld_restart_qr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_2threads_p8_intel -Checking test 012 cpld_2threads_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 330.381081 -The maximum resident set size (KB) = 3318488 - -Test 012 cpld_2threads_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_decomp_p8_intel -Checking test 013 cpld_decomp_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 364.001102 -The maximum resident set size (KB) = 2997096 - -Test 013 cpld_decomp_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_p8_intel -Checking test 014 cpld_mpi_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 308.580036 -The maximum resident set size (KB) = 2923452 - -Test 014 cpld_mpi_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_ciceC_p8_intel -Checking test 015 cpld_control_ciceC_p8_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 366.990523 -The maximum resident set size (KB) = 3002992 - -Test 015 cpld_control_ciceC_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_bmark_p8_intel -Checking test 016 cpld_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.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 = 763.623435 -The maximum resident set size (KB) = 3957120 - -Test 016 cpld_bmark_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_bmark_p8_intel -Checking test 017 cpld_restart_bmark_p8_intel 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/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.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 = 540.980220 -The maximum resident set size (KB) = 4253632 - -Test 017 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_s2sa_p8_intel -Checking test 018 cpld_s2sa_p8_intel results .... - 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 351.731756 -The maximum resident set size (KB) = 2969680 - -Test 018 cpld_s2sa_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_intel -Checking test 019 cpld_control_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 273.246572 -The maximum resident set size (KB) = 1591812 - -Test 019 cpld_control_noaero_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_nowave_noaero_p8_intel -Checking test 020 cpld_control_nowave_noaero_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 278.832067 -The maximum resident set size (KB) = 1635008 - -Test 020 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_noaero_p8_agrid_intel -Checking test 021 cpld_control_noaero_p8_agrid_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 280.325052 -The maximum resident set size (KB) = 1634760 - -Test 021 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_c48_intel -Checking test 022 cpld_control_c48_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - 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 = 418.314915 -The maximum resident set size (KB) = 2650180 - -Test 022 cpld_control_c48_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_p8_faster_intel -Checking test 023 cpld_control_p8_faster_intel results .... - 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 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 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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 367.397222 -The maximum resident set size (KB) = 3002092 - -Test 023 cpld_control_p8_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_control_pdlib_p8_intel -Checking test 024 cpld_control_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 934.716069 -The maximum resident set size (KB) = 1608900 - -Test 024 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_restart_pdlib_p8_intel -Checking test 025 cpld_restart_pdlib_p8_intel results .... - 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 478.797496 -The maximum resident set size (KB) = 900020 - -Test 025 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_mpi_pdlib_p8_intel -Checking test 026 cpld_mpi_pdlib_p8_intel results .... - 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 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 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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - -The total amount of wall time = 1083.391522 -The maximum resident set size (KB) = 1585180 - -Test 026 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/cpld_debug_pdlib_p8_intel -Checking test 027 cpld_debug_pdlib_p8_intel results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - -The total amount of wall time = 1493.649751 -The maximum resident set size (KB) = 1622384 - -Test 027 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_flake_intel -Checking test 028 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 214.400844 -The maximum resident set size (KB) = 573988 - -Test 028 control_flake_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_intel -Checking test 029 control_CubedSphereGrid_intel 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 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 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 - -The total amount of wall time = 132.972562 -The maximum resident set size (KB) = 521276 - -Test 029 control_CubedSphereGrid_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_parallel_intel -Checking test 030 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........OK - Comparing cubed_sphere_grid_sfcf024.nc .........OK - Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 141.212648 -The maximum resident set size (KB) = 526704 - -Test 030 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_latlon_intel -Checking test 031 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 134.857626 -The maximum resident set size (KB) = 524092 - -Test 031 control_latlon_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_intel -Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 137.418331 -The maximum resident set size (KB) = 526616 - -Test 032 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48_intel -Checking test 033 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 333.592096 -The maximum resident set size (KB) = 717112 - -Test 033 control_c48_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c48.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c48.v2.sfc_intel -Checking test 034 control_c48.v2.sfc_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 328.720224 -The maximum resident set size (KB) = 716440 - -Test 034 control_c48.v2.sfc_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c192_intel -Checking test 035 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 529.668191 -The maximum resident set size (KB) = 640132 - -Test 035 control_c192_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384_intel -Checking test 036 control_c384_intel 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 = 629.797197 -The maximum resident set size (KB) = 952916 - -Test 036 control_c384_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_c384gdas_intel -Checking test 037 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/20210322.060000.coupler.res .........OK - Comparing RESTART/20210322.060000.fv_core.res.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 547.581361 -The maximum resident set size (KB) = 1093116 - -Test 037 control_c384gdas_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_intel -Checking test 038 control_stochy_intel 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 = 91.065977 -The maximum resident set size (KB) = 531320 - -Test 038 control_stochy_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_restart_intel -Checking test 039 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 50.389895 -The maximum resident set size (KB) = 333432 - -Test 039 control_stochy_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_intel -Checking test 040 control_lndp_intel 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 = 84.923118 -The maximum resident set size (KB) = 533912 - -Test 040 control_lndp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr4_intel -Checking test 041 control_iovr4_intel 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 - -The total amount of wall time = 135.357882 -The maximum resident set size (KB) = 525600 - -Test 041 control_iovr4_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_iovr5_intel -Checking test 042 control_iovr5_intel 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 - -The total amount of wall time = 137.210152 -The maximum resident set size (KB) = 525788 - -Test 042 control_iovr5_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_intel -Checking test 043 control_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 164.561276 -The maximum resident set size (KB) = 1509544 - -Test 043 control_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8.v2.sfc_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8.v2.sfc_intel -Checking test 044 control_p8.v2.sfc_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 165.199652 -The maximum resident set size (KB) = 1499432 - -Test 044 control_p8.v2.sfc_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_ugwpv1_intel -Checking test 045 control_p8_ugwpv1_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 161.744955 -The maximum resident set size (KB) = 1511016 - -Test 045 control_p8_ugwpv1_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_intel -Checking test 046 control_restart_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 91.919863 -The maximum resident set size (KB) = 685864 - -Test 046 control_restart_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_noqr_p8_intel -Checking test 047 control_noqr_p8_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 165.373090 -The maximum resident set size (KB) = 1489272 - -Test 047 control_noqr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_noqr_p8_intel -Checking test 048 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - -The total amount of wall time = 91.345866 -The maximum resident set size (KB) = 697124 - -Test 048 control_restart_noqr_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_decomp_p8_intel -Checking test 049 control_decomp_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 169.341980 -The maximum resident set size (KB) = 1500340 - -Test 049 control_decomp_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_2threads_p8_intel -Checking test 050 control_2threads_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 146.392199 -The maximum resident set size (KB) = 1588536 - -Test 050 control_2threads_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_lndp_intel -Checking test 051 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 295.237804 -The maximum resident set size (KB) = 1497160 - -Test 051 control_p8_lndp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_rrtmgp_intel -Checking test 052 control_p8_rrtmgp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 220.698043 -The maximum resident set size (KB) = 1553816 - -Test 052 control_p8_rrtmgp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_mynn_intel -Checking test 053 control_p8_mynn_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 167.783667 -The maximum resident set size (KB) = 1515868 - -Test 053 control_p8_mynn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/merra2_thompson_intel -Checking test 054 merra2_thompson_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 201.082056 -The maximum resident set size (KB) = 1513680 - -Test 054 merra2_thompson_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_intel -Checking test 055 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 289.593049 -The maximum resident set size (KB) = 606708 - -Test 055 regional_control_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_restart_intel -Checking test 056 regional_restart_intel results .... - Comparing dynf006.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 159.399463 -The maximum resident set size (KB) = 780488 - -Test 056 regional_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_decomp_intel -Checking test 057 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 307.435087 -The maximum resident set size (KB) = 607256 - -Test 057 regional_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2threads_intel -Checking test 058 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 177.156835 -The maximum resident set size (KB) = 659388 - -Test 058 regional_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_noquilt_intel -Checking test 059 regional_noquilt_intel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -The total amount of wall time = 279.602604 -The maximum resident set size (KB) = 1141992 - -Test 059 regional_noquilt_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_netcdf_parallel_intel -Checking test 060 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - -The total amount of wall time = 292.727447 -The maximum resident set size (KB) = 607064 - -Test 060 regional_netcdf_parallel_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_2dwrtdecomp_intel -Checking test 061 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 289.398405 -The maximum resident set size (KB) = 609276 - -Test 061 regional_2dwrtdecomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_wofs_intel -Checking test 062 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 409.445515 -The maximum resident set size (KB) = 1578212 - -Test 062 regional_wofs_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_intel -Checking test 063 rap_control_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 410.338009 -The maximum resident set size (KB) = 920936 - -Test 063 rap_control_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_intel -Checking test 064 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 241.772100 -The maximum resident set size (KB) = 1097516 - -Test 064 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_decomp_intel -Checking test 065 rap_decomp_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 425.915912 -The maximum resident set size (KB) = 916880 - -Test 065 rap_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_intel -Checking test 066 rap_2threads_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 371.714893 -The maximum resident set size (KB) = 1010916 - -Test 066 rap_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_intel -Checking test 067 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 209.368309 -The maximum resident set size (KB) = 787660 - -Test 067 rap_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_intel -Checking test 068 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 407.332610 -The maximum resident set size (KB) = 918480 - -Test 068 rap_sfcdiff_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_decomp_intel -Checking test 069 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 425.020834 -The maximum resident set size (KB) = 913772 - -Test 069 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_restart_intel -Checking test 070 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 305.208277 -The maximum resident set size (KB) = 784272 - -Test 070 rap_sfcdiff_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_intel -Checking test 071 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 211.238137 -The maximum resident set size (KB) = 908564 - -Test 071 hrrr_control_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_intel -Checking test 072 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 214.646837 -The maximum resident set size (KB) = 909172 - -Test 072 hrrr_control_decomp_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_intel -Checking test 073 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 188.989521 -The maximum resident set size (KB) = 993336 - -Test 073 hrrr_control_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_intel -Checking test 074 hrrr_control_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 110.490743 -The maximum resident set size (KB) = 741580 - -Test 074 hrrr_control_restart_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_intel -Checking test 075 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 399.653333 -The maximum resident set size (KB) = 909444 - -Test 075 rrfs_v1beta_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_intel -Checking test 076 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 488.590260 -The maximum resident set size (KB) = 1874712 - -Test 076 rrfs_v1nssl_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1nssl_nohailnoccn_intel -Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 471.900454 -The maximum resident set size (KB) = 1862596 - -Test 077 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_intel -Checking test 078 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 338.065704 -The maximum resident set size (KB) = 596512 - -Test 078 control_csawmg_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_intel -Checking test 079 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 336.679038 -The maximum resident set size (KB) = 596352 - -Test 079 control_csawmgt_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_intel -Checking test 080 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 184.721866 -The maximum resident set size (KB) = 561572 - -Test 080 control_ras_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_intel -Checking test 081 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 121.009893 -The maximum resident set size (KB) = 272776 - -Test 081 control_wam_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_faster_intel -Checking test 082 control_p8_faster_intel 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 161.975328 -The maximum resident set size (KB) = 1504956 - -Test 082 control_p8_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_control_faster_intel -Checking test 083 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 283.981035 -The maximum resident set size (KB) = 610684 - -Test 083 regional_control_faster_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_CubedSphereGrid_debug_intel -Checking test 084 control_CubedSphereGrid_debug_intel 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 sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.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 atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 160.630431 -The maximum resident set size (KB) = 688756 - -Test 084 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 158.871953 -The maximum resident set size (KB) = 689884 - -Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_stochy_debug_intel -Checking test 086 control_stochy_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 181.484643 -The maximum resident set size (KB) = 688880 - -Test 086 control_stochy_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_lndp_debug_intel -Checking test 087 control_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 163.081272 -The maximum resident set size (KB) = 692596 - -Test 087 control_lndp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmg_debug_intel -Checking test 088 control_csawmg_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 251.748787 -The maximum resident set size (KB) = 730708 - -Test 088 control_csawmg_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_csawmgt_debug_intel -Checking test 089 control_csawmgt_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 248.344384 -The maximum resident set size (KB) = 730964 - -Test 089 control_csawmgt_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_ras_debug_intel -Checking test 090 control_ras_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 165.276975 -The maximum resident set size (KB) = 705064 - -Test 090 control_ras_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_diag_debug_intel -Checking test 091 control_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 167.192686 -The maximum resident set size (KB) = 746564 - -Test 091 control_diag_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_debug_p8_intel -Checking test 092 control_debug_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 168.593384 -The maximum resident set size (KB) = 1519076 - -Test 092 control_debug_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_debug_intel -Checking test 093 regional_debug_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 1066.856512 -The maximum resident set size (KB) = 629600 - -Test 093 regional_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_intel -Checking test 094 rap_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 301.779372 -The maximum resident set size (KB) = 1075308 - -Test 094 rap_control_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_intel -Checking test 095 hrrr_control_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 295.778703 -The maximum resident set size (KB) = 1070848 - -Test 095 hrrr_control_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_gf_debug_intel -Checking test 096 hrrr_gf_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 302.218082 -The maximum resident set size (KB) = 1070948 - -Test 096 hrrr_gf_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_c3_debug_intel -Checking test 097 hrrr_c3_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 303.616359 -The maximum resident set size (KB) = 1077440 - -Test 097 hrrr_c3_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_drag_suite_debug_intel -Checking test 098 rap_unified_drag_suite_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 303.308680 -The maximum resident set size (KB) = 1076344 - -Test 098 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_diag_debug_intel -Checking test 099 rap_diag_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 317.922053 -The maximum resident set size (KB) = 1155636 - -Test 099 rap_diag_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_cires_ugwp_debug_intel -Checking test 100 rap_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 308.973760 -The maximum resident set size (KB) = 1076912 - -Test 100 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_unified_ugwp_debug_intel -Checking test 101 rap_unified_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 311.026485 -The maximum resident set size (KB) = 1075560 - -Test 101 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_lndp_debug_intel -Checking test 102 rap_lndp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 305.383239 -The maximum resident set size (KB) = 1075928 - -Test 102 rap_lndp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_progcld_thompson_debug_intel -Checking test 103 rap_progcld_thompson_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 302.741453 -The maximum resident set size (KB) = 1077264 - -Test 103 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_debug_intel -Checking test 104 rap_noah_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 294.837008 -The maximum resident set size (KB) = 1073164 - -Test 104 rap_noah_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_sfcdiff_debug_intel -Checking test 105 rap_sfcdiff_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 304.036555 -The maximum resident set size (KB) = 1072336 - -Test 105 rap_sfcdiff_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 492.553809 -The maximum resident set size (KB) = 1076192 - -Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rrfs_v1beta_debug_intel -Checking test 107 rrfs_v1beta_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 298.032419 -The maximum resident set size (KB) = 1069732 - -Test 107 rrfs_v1beta_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_clm_lake_debug_intel -Checking test 108 rap_clm_lake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 352.917507 -The maximum resident set size (KB) = 1076212 - -Test 108 rap_clm_lake_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_flake_debug_intel -Checking test 109 rap_flake_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 301.551968 -The maximum resident set size (KB) = 1076008 - -Test 109 rap_flake_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/gnv1_c96_no_nest_debug_intel -Checking test 110 gnv1_c96_no_nest_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 523.092725 -The maximum resident set size (KB) = 1078752 - -Test 110 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_wam_debug_intel -Checking test 111 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -The total amount of wall time = 303.613563 -The maximum resident set size (KB) = 297748 - -Test 111 control_wam_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 229.960894 -The maximum resident set size (KB) = 955568 - -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn32_phy32_intel -Checking test 113 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 341.630584 -The maximum resident set size (KB) = 790648 - -Test 113 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_dyn32_phy32_intel -Checking test 114 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 178.772819 -The maximum resident set size (KB) = 789348 - -Test 114 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_2threads_dyn32_phy32_intel -Checking test 115 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 307.071625 -The maximum resident set size (KB) = 851684 - -Test 115 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_2threads_dyn32_phy32_intel -Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 160.312016 -The maximum resident set size (KB) = 842460 - -Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_decomp_dyn32_phy32_intel -Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 185.773661 -The maximum resident set size (KB) = 788012 - -Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_restart_dyn32_phy32_intel -Checking test 118 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 249.761858 -The maximum resident set size (KB) = 685740 - -Test 118 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_restart_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 94.800100 -The maximum resident set size (KB) = 672828 - -Test 119 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_control_intel -Checking test 120 conus13km_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 120.458608 -The maximum resident set size (KB) = 1001904 - -Test 120 conus13km_control_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_2threads_intel -Checking test 121 conus13km_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 63.708613 -The maximum resident set size (KB) = 1006300 - -Test 121 conus13km_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_restart_mismatch_intel -Checking test 122 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 70.556962 -The maximum resident set size (KB) = 881612 - -Test 122 conus13km_restart_mismatch_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 231.102342 -The maximum resident set size (KB) = 808800 - -Test 123 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 293.406693 -The maximum resident set size (KB) = 953444 - -Test 124 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 287.858761 -The maximum resident set size (KB) = 950340 - -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_intel -Checking test 126 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210512.170000.phy_data.nc .........OK - Comparing RESTART/20210512.170000.sfc_data.nc .........OK - -The total amount of wall time = 878.284115 -The maximum resident set size (KB) = 1032908 - -Test 126 conus13km_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_qr_intel -Checking test 127 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20210512.170000.coupler.res .........OK - Comparing RESTART/20210512.170000.fv_core.res.nc .........OK - Comparing RESTART/20210512.170000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - -The total amount of wall time = 890.943396 -The maximum resident set size (KB) = 706196 - -Test 127 conus13km_debug_qr_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_debug_2threads_intel -Checking test 128 conus13km_debug_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 512.752532 -The maximum resident set size (KB) = 1038256 - -Test 128 conus13km_debug_2threads_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/conus13km_radar_tten_debug_intel -Checking test 129 conus13km_radar_tten_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 891.230808 -The maximum resident set size (KB) = 1099020 - -Test 129 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/rap_control_dyn64_phy32_debug_intel -Checking test 130 rap_control_dyn64_phy32_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 306.260542 -The maximum resident set size (KB) = 978604 - -Test 130 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_intel -Checking test 131 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -The total amount of wall time = 362.041813 -The maximum resident set size (KB) = 615168 - -Test 131 hafs_regional_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -The total amount of wall time = 362.816354 -The maximum resident set size (KB) = 967296 - -Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_intel -Checking test 133 hafs_regional_atm_ocn_intel 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 - -The total amount of wall time = 451.226496 -The maximum resident set size (KB) = 663968 - -Test 133 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_wav_intel -Checking test 134 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 773.805636 -The maximum resident set size (KB) = 699364 - -Test 134 hafs_regional_atm_wav_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_atm_ocn_wav_intel -Checking test 135 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 950.462122 -The maximum resident set size (KB) = 705936 - -Test 135 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_1nest_atm_intel -Checking test 136 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 329.945797 -The maximum resident set size (KB) = 390916 - -Test 136 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_telescopic_2nests_atm_intel -Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -The total amount of wall time = 424.056544 -The maximum resident set size (KB) = 403680 - -Test 137 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 183.370516 -The maximum resident set size (KB) = 282692 - -Test 138 hafs_global_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_multiple_4nests_atm_intel -Checking test 139 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - -The total amount of wall time = 533.029334 -The maximum resident set size (KB) = 370648 - -Test 139 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_specified_moving_1nest_atm_intel -Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - -The total amount of wall time = 236.033646 -The maximum resident set size (KB) = 420680 - -Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - -The total amount of wall time = 222.784444 -The maximum resident set size (KB) = 423636 - -Test 141 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -The total amount of wall time = 281.563093 -The maximum resident set size (KB) = 486356 - -Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_global_storm_following_1nest_atm_intel -Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 103.904984 -The maximum resident set size (KB) = 312176 - -Test 143 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... - Comparing atmf001.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atm.nest02.f001.nc .........OK - Comparing sfc.nest02.f001.nc .........OK - -The total amount of wall time = 820.616990 -The maximum resident set size (KB) = 499728 - -Test 144 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 545.584197 -The maximum resident set size (KB) = 530336 - -Test 145 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - -The total amount of wall time = 539.742323 -The maximum resident set size (KB) = 709488 - -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel -Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel results .... - Comparing atmf003.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atm.nest02.f003.nc .........OK - Comparing sfc.nest02.f003.nc .........OK - Comparing ocn_2020_08_25_15.nc .........OK - Comparing 20200825.150000.out_grd.ww3 .........OK - Comparing 20200825.150000.out_pnt.ww3 .........OK - -The total amount of wall time = 395.034358 -The maximum resident set size (KB) = 710156 - -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_intel -Checking test 148 hafs_regional_docn_intel 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 - -The total amount of wall time = 420.771629 -The maximum resident set size (KB) = 653444 - -Test 148 hafs_regional_docn_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_docn_oisst_intel -Checking test 149 hafs_regional_docn_oisst_intel 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 - -The total amount of wall time = 425.538250 -The maximum resident set size (KB) = 642652 - -Test 149 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/hafs_regional_datm_cdeps_intel -Checking test 150 hafs_regional_datm_cdeps_intel 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 = 952.679601 -The maximum resident set size (KB) = 881048 - -Test 150 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_sbs_intel -Checking test 151 control_p8_atmlnd_sbs_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 283.442813 -The maximum resident set size (KB) = 1552624 - -Test 151 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_p8_atmlnd_intel -Checking test 152 control_p8_atmlnd_intel 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 sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.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 atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.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/20210323.060000.ca_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.ca_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-64800.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 = 284.467436 -The maximum resident set size (KB) = 1537904 - -Test 152 control_p8_atmlnd_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/control_p8_atmlnd_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/control_restart_p8_atmlnd_intel -Checking test 153 control_restart_p8_atmlnd_intel results .... - 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 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 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 = 156.243371 -The maximum resident set size (KB) = 738544 - -Test 153 control_restart_p8_atmlnd_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_intel -Checking test 154 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 245.700323 -The maximum resident set size (KB) = 2854944 - -Test 154 atmaero_control_p8_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_intel -Checking test 155 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 281.685079 -The maximum resident set size (KB) = 2913048 - -Test 155 atmaero_control_p8_rad_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/atmaero_control_p8_rad_micro_intel -Checking test 156 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -The total amount of wall time = 297.673172 -The maximum resident set size (KB) = 2925768 - -Test 156 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42245/regional_atmaq_debug_intel -Checking test 157 regional_atmaq_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - -The total amount of wall time = 1339.534722 -The maximum resident set size (KB) = 4436092 - -Test 157 regional_atmaq_debug_intel PASS -REGRESSION TEST WAS SUCCESSFUL -Tue Feb 13 22:27:49 UTC 2024 -Elapsed time: 01h:31m:33s. Have a nice day! +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22069 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [22:59, 22:35] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:45, 01:38](2972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:46] +PASS -- TEST 'cpld_control_gfsv17_intel' [51:27, 01:59](1597 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:26, 01:45](1716 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:21, 01:48](847 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:28, 01:15](1571 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:19, 10:17] +PASS -- TEST 'cpld_debug_gfsv17_intel' [52:34, 02:01](1603 MB) + +PASS -- COMPILE 's2swa_intel' [25:07, 24:31] +PASS -- TEST 'cpld_control_p8_intel' [38:46, 01:46](3002 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:46, 01:55](3003 MB) +PASS -- TEST 'cpld_restart_p8_intel' [29:59, 01:26](3060 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [38:45, 01:44](3030 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [29:59, 01:22](3079 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [38:41, 01:22](3314 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [38:39, 01:46](2999 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [38:03, 01:38](2924 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:49, 02:14](3001 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [37:56, 04:39](3950 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:43, 04:09](4252 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [37:22, 01:13](2969 MB) + +PASS -- COMPILE 's2sw_intel' [33:51, 32:36] +PASS -- TEST 'cpld_control_noaero_p8_intel' [29:59, 01:36](1587 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:53, 01:43](1633 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:18, 09:53] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [53:35, 01:10](1630 MB) + +PASS -- COMPILE 's2s_intel' [14:31, 13:48] +PASS -- TEST 'cpld_control_c48_intel' [49:20, 01:08](2642 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:42, 16:34] +PASS -- TEST 'cpld_control_p8_faster_intel' [46:10, 01:18](3005 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 15:33] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:15, 01:17](1603 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:34, 01:55](900 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:20, 01:58](1573 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:37, 15:48] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:16, 01:07](1617 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:04, 10:43] +PASS -- TEST 'control_flake_intel' [42:30, 00:23](577 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [42:30, 00:54](522 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:30, 00:46](528 MB) +PASS -- TEST 'control_latlon_intel' [42:30, 00:47](522 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:30, 00:55](526 MB) +PASS -- TEST 'control_c48_intel' [42:29, 01:07](715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [42:29, 01:03](715 MB) +PASS -- TEST 'control_c192_intel' [42:30, 00:46](642 MB) +PASS -- TEST 'control_c384_intel' [42:34, 01:15](952 MB) +PASS -- TEST 'control_c384gdas_intel' [42:34, 02:03](1092 MB) +PASS -- TEST 'control_stochy_intel' [42:30, 00:25](528 MB) +PASS -- TEST 'control_stochy_restart_intel' [39:57, 01:04](333 MB) +PASS -- TEST 'control_lndp_intel' [42:30, 00:30](529 MB) +PASS -- TEST 'control_iovr4_intel' [42:30, 00:51](522 MB) +PASS -- TEST 'control_iovr5_intel' [42:30, 00:53](524 MB) +PASS -- TEST 'control_p8_intel' [42:30, 01:48](1511 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [42:30, 02:05](1504 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [42:30, 02:05](1510 MB) +PASS -- TEST 'control_restart_p8_intel' [36:57, 01:13](690 MB) +PASS -- TEST 'control_noqr_p8_intel' [42:30, 01:43](1487 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [36:57, 01:11](698 MB) +PASS -- TEST 'control_decomp_p8_intel' [42:30, 01:41](1497 MB) +PASS -- TEST 'control_2threads_p8_intel' [42:30, 01:12](1594 MB) +PASS -- TEST 'control_p8_lndp_intel' [42:30, 01:25](1498 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [42:30, 01:14](1570 MB) +PASS -- TEST 'control_p8_mynn_intel' [42:30, 02:01](1511 MB) +PASS -- TEST 'merra2_thompson_intel' [39:56, 01:43](1516 MB) +PASS -- TEST 'regional_control_intel' [38:50, 00:25](605 MB) +PASS -- TEST 'regional_restart_intel' [32:52, 00:37](779 MB) +PASS -- TEST 'regional_decomp_intel' [36:56, 01:12](605 MB) +PASS -- TEST 'regional_2threads_intel' [36:41, 01:01](664 MB) +PASS -- TEST 'regional_noquilt_intel' [36:39, 00:33](1138 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [36:38, 00:31](606 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [36:37, 00:25](608 MB) +PASS -- TEST 'regional_wofs_intel' [35:25, 00:26](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [30:49, 30:04] +PASS -- TEST 'rap_control_intel' [21:38, 01:33](918 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:39, 01:33](1092 MB) +PASS -- TEST 'rap_decomp_intel' [21:29, 01:25](919 MB) +PASS -- TEST 'rap_2threads_intel' [21:19, 01:36](1007 MB) +PASS -- TEST 'rap_restart_intel' [12:41, 01:44](784 MB) +PASS -- TEST 'rap_sfcdiff_intel' [20:31, 02:05](916 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:31, 01:52](916 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:02, 02:11](787 MB) +PASS -- TEST 'hrrr_control_intel' [20:23, 01:37](906 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [20:07, 01:03](909 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [19:02, 01:49](994 MB) +PASS -- TEST 'hrrr_control_restart_intel' [14:47, 01:16](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:00, 02:08](911 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:00, 01:02](1876 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:43, 01:10](1863 MB) + +PASS -- COMPILE 'csawmg_intel' [18:29, 17:07] +PASS -- TEST 'control_csawmg_intel' [32:42, 00:46](598 MB) +PASS -- TEST 'control_csawmgt_intel' [32:15, 00:54](599 MB) +PASS -- TEST 'control_ras_intel' [31:48, 00:22](562 MB) + +PASS -- COMPILE 'wam_intel' [19:48, 18:43] +PASS -- TEST 'control_wam_intel' [29:07, 01:09](269 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:02, 09:42] +PASS -- TEST 'control_p8_faster_intel' [35:25, 01:08](1501 MB) +PASS -- TEST 'regional_control_faster_intel' [35:07, 00:48](612 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:41, 04:41] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:04, 01:43](684 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:21, 01:35](690 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:34, 01:18](693 MB) +PASS -- TEST 'control_lndp_debug_intel' [30:57, 00:20](693 MB) +PASS -- TEST 'control_csawmg_debug_intel' [30:45, 01:34](731 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [30:42, 01:38](729 MB) +PASS -- TEST 'control_ras_debug_intel' [30:39, 00:38](705 MB) +PASS -- TEST 'control_diag_debug_intel' [30:38, 00:41](744 MB) +PASS -- TEST 'control_debug_p8_intel' [30:32, 01:14](1518 MB) +PASS -- TEST 'regional_debug_intel' [30:21, 00:21](630 MB) +PASS -- TEST 'rap_control_debug_intel' [30:13, 00:34](1073 MB) +PASS -- TEST 'hrrr_control_debug_intel' [29:48, 01:23](1066 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [28:49, 01:10](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [28:47, 01:11](1070 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [28:32, 01:20](1073 MB) +PASS -- TEST 'rap_diag_debug_intel' [28:28, 01:10](1157 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:05, 00:23](1072 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:44, 01:24](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [27:07, 01:14](1081 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [26:32, 01:51](1074 MB) +PASS -- TEST 'rap_noah_debug_intel' [26:31, 00:26](1072 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [26:25, 01:44](1078 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [25:28, 00:33](1068 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [25:27, 00:55](1066 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [25:19, 00:42](1074 MB) +PASS -- TEST 'rap_flake_debug_intel' [24:58, 00:34](1073 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:31, 02:03](1082 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:19, 16:17] +PASS -- TEST 'control_wam_debug_intel' [23:55, 01:18](297 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:49, 09:17] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [23:56, 01:47](952 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:48, 01:42](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:20, 02:29](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:20, 01:42](854 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [22:34, 02:06](843 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:31, 02:31](784 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:46, 02:32](689 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:16, 00:51](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:26, 21:13] +PASS -- TEST 'conus13km_control_intel' [18:32, 01:36](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:56, 00:58](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [13:50, 00:54](888 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:59] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:28, 01:53](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:50] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:19, 00:28](954 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:49, 00:35](954 MB) +PASS -- TEST 'conus13km_debug_intel' [18:09, 00:49](1034 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:16, 00:45](712 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:16, 00:39](1035 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 00:49](1101 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:21, 12:38] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:21, 01:34](981 MB) + +PASS -- COMPILE 'hafsw_intel' [11:13, 09:54] +PASS -- TEST 'hafs_regional_atm_intel' [16:24, 01:40](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:11, 01:10](970 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:05, 02:12](662 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:50, 01:47](695 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:48, 02:23](706 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:58, 01:23](387 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:48, 01:33](411 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [13:59, 01:58](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:15, 02:27](370 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:54, 01:50](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 01:07](420 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:30, 00:55](490 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:36, 00:26](314 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:12, 15:07] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:05, 00:52](502 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:50, 11:51] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:51, 01:19](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:50, 00:58](707 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:39, 15:30] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:29, 01:22](715 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:38, 12:17] +PASS -- TEST 'hafs_regional_docn_intel' [09:25, 01:15](659 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 01:37](645 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:01, 00:47](880 MB) + +PASS -- COMPILE 'atml_intel' [17:14, 16:48] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:01, 01:23](1536 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 01:32](1549 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [01:03, 00:51](739 MB) + +PASS -- COMPILE 'atmaero_intel' [12:41, 12:06] +PASS -- TEST 'atmaero_control_p8_intel' [08:24, 01:52](2854 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:19, 01:23](2908 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 01:15](2925 MB) + +PASS -- COMPILE 'atmaq_intel' [16:00, 14:39] + +PASS -- COMPILE 'atmaq_debug_intel' [08:13, 06:55] +PASS -- TEST 'regional_atmaq_debug_intel' [08:09, 01:14](4443 MB) + +SYNOPSIS: +Starting Date/Time: 20240220 12:55:51 +Ending Date/Time: 20240220 14:18:54 +Total Time: 01h:23m:34s +Compiles Completed: 31/31 +Tests Completed: 157/157 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF WCOSS2 REGRESSION TESTING LOG==== diff --git a/tests/opnReqTest b/tests/opnReqTest index 4bec5cbc00..b9a003b706 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -104,12 +104,12 @@ build_opnReqTests() { ;; esac MAKE_OPT=$(echo $MAKE_OPT | sed -e 's/^ *//' -e 's/ *$//') - export COMPILE_NR=${name} + export COMPILE_ID=${name} cat <<-EOF > ${RUNDIR_ROOT}/compile_${name}.env export MACHINE_ID=${MACHINE_ID} - export JOB_NR=${COMPILE_NR} - export COMPILE_NR=${COMPILE_NR} + export JOB_NR=${COMPILE_ID} + export COMPILE_ID=${COMPILE_ID} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export SCHEDULER=${SCHEDULER} @@ -124,7 +124,7 @@ build_opnReqTests() { EOF if [[ $ECFLOW == true ]]; then - COMPILE_NR=$name + COMPILE_ID=$name ecflow_create_compile_task else echo "compiling $name with compile option $MAKE_OPT" @@ -252,8 +252,8 @@ run_opnReqTests() { EOF if [[ $ECFLOW == true ]]; then - TEST_NR=${RT_SUFFIX:1} - COMPILE_NR=$comp_nm + TEST_ID=${RT_SUFFIX:1} + COMPILE_ID=$comp_nm RT_COMPILER=${RT_COMPILER:-intel} DEP_RUN= if [[ ${RT_SUFFIX} == _std || ${RT_SUFFIX} == _thr || ${RT_SUFFIX} == _mpi || ${RT_SUFFIX} == _dcp || ${RT_SUFFIX} == _rst || ${RT_SUFFIX} == _fhz ]]; then @@ -269,8 +269,8 @@ run_opnReqTests() { else echo "Running test for $rc" echo " THRD: $THRD; INPES: $INPES; JNPES: $JNPES; TPN: $TPN" - TEST_NR=${RT_SUFFIX:1} - ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_NR $comp_nm > $LOG_DIR/run_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log #2>&1 + TEST_ID=${RT_SUFFIX:1} + ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_ID $comp_nm > $LOG_DIR/run_${TEST_ID}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log #2>&1 fi done diff --git a/tests/rt.sh b/tests/rt.sh index 960e20bb87..8571bac483 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -30,21 +30,62 @@ usage() { [[ $# -eq 0 ]] && usage -rt_single() { - rm -f $RT_SINGLE_CONF +update_rtconf() { + + find_match() { + # This function finds if a test in $TESTS_FILE matches one + # in our list of tests to be run. + THIS_TEST_WITH_COMPILER=$1 + shift + TWC=("$@") + FOUND=false + for i in "${!TWC[@]}"; do + if [[ "${TWC[$i]}" == "${THIS_TEST_WITH_COMPILER}" ]]; then + FOUND=true + echo "${i}" + return + fi + done + if [[ $FOUND == false ]]; then + echo "-1" + fi + } + + # This script will update the rt.conf ($TESTS_FILE) if needed by the + # -b or -n options being called/used. + + # THE USER CHOSE THE -b OPTION + if [[ $NEW_BASELINES_FILE != '' ]]; then + [[ -s "$NEW_BASELINES_FILE" ]] || die "${NEW_BASELINES_FILE} is empty, exiting..." + TEST_WITH_COMPILE=() + readarray -t TEST_WITH_COMPILE < "$NEW_BASELINES_FILE" + # else USER CHOSE THE -l OPTION + elif [[ $DEFINE_CONF_FILE == true ]]; then + echo "No update needed to TESTS_FILE" + return + # else USER CHOSE THE -n OPTION + elif [[ $RUN_SINGLE_TEST == true ]]; then + TEST_WITH_COMPILE=("${SRT_NAME} ${SRT_COMPILER}") + else + echo "No update needed to rt.conf" + return + fi + + RT_TEMP_CONF="rt_temp.conf" + rm -f $RT_TEMP_CONF && touch $RT_TEMP_CONF local compile_line='' - local run_line='' + while read -r line || [ "$line" ]; do line="${line#"${line%%[![:space:]]*}"}" + [[ -n $line ]] || continue [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue - + if [[ $line == COMPILE* ]] ; then + COMPILE_LINE_USED=false MACHINES=$(echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - if [[ ! $RT_COMPILER_IN == $RT_COMPILER ]]; then - continue - fi + if [[ ${MACHINES} == '' ]]; then compile_line=$line elif [[ ${MACHINES} == -* ]]; then @@ -52,47 +93,334 @@ rt_single() { elif [[ ${MACHINES} == +* ]]; then [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line fi + fi if [[ $line =~ RUN ]]; then - tmp_test=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - if [[ $SINGLE_NAME == $tmp_test && $compile_line != '' ]]; then - echo $compile_line > $RT_SINGLE_CONF - dep_test=$(echo $line | grep -w $tmp_test | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') + tmp_test=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') + TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") + + if [[ $TEST_IDX != -1 ]]; then + if [[ $COMPILE_LINE_USED == false ]]; then + echo "$compile_line" >> $RT_TEMP_CONF + COMPILE_LINE_USED=true + fi + dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') + if [[ $dep_test != '' ]]; then - dep_line=$(cat rt.conf | grep -w "$dep_test" | grep -v "$tmp_test") - dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" - echo $dep_line >> $RT_SINGLE_CONF + if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then + + dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test") + dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" + dep_line=$(echo "${dep_line}" | tr -d '\n') + CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line") + CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line") + + if [[ $RT_COMPILER_IN == "intel" ]]; then + echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF + elif [[ $RT_COMPILER_IN == "gnu" ]]; then + echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF + fi + fi fi - echo $line >> $RT_SINGLE_CONF - break + echo "$line" >> $RT_TEMP_CONF fi fi - done < $TESTS_FILE + done < "$TESTS_FILE" - if [[ ! -f $RT_SINGLE_CONF ]]; then - echo "$SINGLE_NAME does not exist or cannot be run on $MACHINE_ID" + if [[ ! -s $RT_TEMP_CONF ]]; then + echo "The tests listed/chosen do not exist or cannot be run on $MACHINE_ID" exit 1 + else + TESTS_FILE=$RT_TEMP_CONF fi } +generate_log() { + + COMPILE_COUNTER=0 + FAILED_COMPILES=() + TEST_COUNTER=0 + FAILED_TESTS=() + FAILED_TEST_ID=() + FAILED_COMPILE_LOGS=() + FAILED_TEST_LOGS=() + TEST_CHANGES_LOG="test_changes.list" + TEST_END_TIME="$(date '+%Y%m%d %T')" + cat << EOF > "${REGRESSIONTEST_LOG}" +====START OF ${MACHINE_ID^^} REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +$(git rev-parse HEAD) + +Submodule hashes used in testing: +EOF + cd .. + git submodule status >> "${REGRESSIONTEST_LOG}" + echo; echo >> "${REGRESSIONTEST_LOG}" + cd tests + + cat << EOF >> "${REGRESSIONTEST_LOG}" + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: ${RTPWD} +COMPARISON DIRECTORY: ${RUNDIR_ROOT} + +RT.SH OPTIONS USED: +EOF + + [[ -n $ACCNR ]] && echo "* (-a) - HPC PROJECT ACCOUNT: ${ACCNR}" >> "${REGRESSIONTEST_LOG}" + [[ -n $NEW_BASELINES_FILE ]] && echo "* (-b) - NEW BASELINES FROM FILE: ${NEW_BASELINES_FILE}" >> "${REGRESSIONTEST_LOG}" + [[ $CREATE_BASELINE == true ]] && echo "* (-c) - CREATE NEW BASELINES" >> "${REGRESSIONTEST_LOG}" + [[ $DEFINE_CONF_FILE == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}" + [[ $RTPWD_NEW_BASELINE == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}" + [[ $RUN_SINGLE_TEST == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}" + [[ $delete_rundir == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" + [[ $skip_check_results == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}" + [[ $KEEP_RUNDIR == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" + [[ $ROCOTO == true ]] && echo "* (-r) - USE ROCOTO" >> "${REGRESSIONTEST_LOG}" + [[ $ECFLOW == true ]] && echo "* (-e) - USE ECFLOW" >> "${REGRESSIONTEST_LOG}" + + + [[ -f "${TEST_CHANGES_LOG}" ]] && rm ${TEST_CHANGES_LOG} + touch ${TEST_CHANGES_LOG} + while read -r line || [ "$line" ]; do + line="${line#"${line%%[![:space:]]*}"}" + [[ -n "$line" ]] || continue + [[ ${#line} == 0 ]] && continue + [[ $line == \#* ]] && continue + local valid_compile=false + local valid_test=false + + if [[ $line == COMPILE* ]] ; then + + CMACHINES=$(echo "$line" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') + COMPILER=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + COMPILE_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') + COMPILE_ID=${COMPILE_NAME}_${COMPILER} + + if [[ ${CMACHINES} == '' ]]; then + valid_compile=true + elif [[ ${CMACHINES} == -* ]]; then + [[ ${CMACHINES} =~ ${MACHINE_ID} ]] || valid_compile=true + elif [[ ${CMACHINES} == +* ]]; then + [[ ${CMACHINES} =~ ${MACHINE_ID} ]] && valid_compile=true + fi + + if [[ $valid_compile == true ]]; then + COMPILE_COUNTER=$((COMPILE_COUNTER+1)) + FAIL_LOG="" + COMPILE_RESULT="" + TIME_FILE="" + COMPILE_TIME="" + RT_COMPILE_TIME="" + if [[ ! -f "${LOG_DIR}/compile_${COMPILE_ID}.log" ]]; then + COMPILE_RESULT="MISSING" + FAIL_LOG="N/A" + elif [[ -f fail_compile_${COMPILE_ID} ]]; then + COMPILE_RESULT="FAIL TO RUN" + FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" + else + if grep -q "quota" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then + COMPILE_RESULT="FAIL FROM DISK QUOTA" + FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" + elif grep -q "timeout" "${LOG_DIR}/compile_${COMPILE_ID}.log"; then + COMPILE_RESULT="FAIL FROM TIMEOUT" + FAIL_LOG="${LOG_DIR}/compile_${COMPILE_ID}.log" + else + COMPILE_RESULT="PASS" + TIME_FILE="${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt" + if [[ -f "${TIME_FILE}" ]]; then + while read -r times || [ "$times" ]; do + times="${times#"${times%%[![:space:]]*}"}" + + DATE1=$(echo "$times" | cut -d ',' -f2 ) + DATE2=$(echo "$times" | cut -d ',' -f3 ) + DATE3=$(echo "$times" | cut -d ',' -f4 ) + DATE4=$(echo "$times" | cut -d ',' -f5 ) + + COMPILE_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') + RT_COMPILE_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') + + done < "$TIME_FILE" + fi + fi + fi + echo >> "${REGRESSIONTEST_LOG}" + echo "${COMPILE_RESULT} -- COMPILE '${COMPILE_ID}' [${RT_COMPILE_TIME}, ${COMPILE_TIME}]" >> "${REGRESSIONTEST_LOG}" + [[ -n $FAIL_LOG ]] && FAILED_COMPILES+=("COMPILE ${COMPILE_ID}: ${COMPILE_RESULT}") + [[ -n $FAIL_LOG ]] && FAILED_COMPILE_LOGS+=("${FAIL_LOG}") + fi + + elif [[ $line =~ RUN ]]; then + + RMACHINES=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + TEST_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') + GEN_BASELINE=$(echo "$line" | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') + + if [[ ${RMACHINES} == '' ]]; then + valid_test=true + elif [[ ${RMACHINES} == -* ]]; then + [[ ${RMACHINES} =~ ${MACHINE_ID} ]] || valid_test=true + elif [[ ${RMACHINES} == +* ]]; then + [[ ${RMACHINES} =~ ${MACHINE_ID} ]] && valid_test=true + fi + + if [[ $valid_test == true ]]; then + TEST_COUNTER=$((TEST_COUNTER+1)) + GETMEMFROMLOG="" + FAIL_LOG="" + TEST_RESULT="" + TIME_FILE="" + TEST_TIME="" + RT_TEST_TIME="" + RT_TEST_MEM="" + if [[ $CREATE_BASELINE == true && $GEN_BASELINE != "baseline" ]]; then + TEST_RESULT="SKIPPED (TEST DOES NOT GENERATE BASELINE)" + elif [[ ! -f "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" ]]; then + TEST_RESULT="MISSING" + FAIL_LOG="N/A" + elif [[ -f fail_test_${TEST_NAME}_${COMPILER} ]]; then + if [[ -f "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" ]]; then + TEST_RESULT="FAIL TO COMPARE" + FAIL_LOG="${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log" + else + TEST_RESULT="FAIL TO RUN" + FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + fi + else + if grep -q "quota" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then + TEST_RESULT="FAIL FROM DISK QUOTA" + FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + elif grep -q "timeout" "${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log"; then + TEST_RESULT="FAIL FROM TIMEOUT" + FAIL_LOG="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}.log" + else + + TEST_RESULT="PASS" + TIME_FILE="${LOG_DIR}/run_${TEST_NAME}_${COMPILER}_timestamp.txt" + GETMEMFROMLOG=$(grep "The maximum resident set size" "${LOG_DIR}/rt_${TEST_NAME}_${COMPILER}.log") + RT_TEST_MEM=$(echo "${GETMEMFROMLOG:9:${#GETMEMFROMLOG}-1}" | tr -dc '0-9') + RT_TEST_MEM=$((RT_TEST_MEM/1000)) + if [[ -f "${TIME_FILE}" ]]; then + while read -r times || [ "$times" ]; do + times="${times#"${times%%[![:space:]]*}"}" + + DATE1=$(echo "$times" | cut -d ',' -f2 ) + DATE2=$(echo "$times" | cut -d ',' -f3 ) + DATE3=$(echo "$times" | cut -d ',' -f4 ) + DATE4=$(echo "$times" | cut -d ',' -f5 ) + + TEST_TIME=$(date --date=@$((DATE3 - DATE2)) +'%M:%S') + RT_TEST_TIME=$(date --date=@$((DATE4 - DATE1)) +'%M:%S') + + done < "$TIME_FILE" + fi + fi + fi + + echo "${TEST_RESULT} -- TEST '${TEST_NAME}_${COMPILER}' [${RT_TEST_TIME}, ${TEST_TIME}](${RT_TEST_MEM} MB)" >> "${REGRESSIONTEST_LOG}" + [[ -n $FAIL_LOG ]] && FAILED_TESTS+=("TEST ${TEST_NAME}_${COMPILER}: ${TEST_RESULT}") + [[ -n $FAIL_LOG ]] && FAILED_TEST_LOGS+=("${FAIL_LOG}") + [[ -n $FAIL_LOG ]] && FAILED_TEST_ID+=("${TEST_NAME} ${COMPILER}") + fi + fi + done < "$TESTS_FILE" + + elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) + + cat << EOF >> "${REGRESSIONTEST_LOG}" + +SYNOPSIS: +Starting Date/Time: ${TEST_START_TIME} +Ending Date/Time: ${TEST_END_TIME} +Total Time: ${elapsed_time} +Compiles Completed: $((COMPILE_COUNTER-${#FAILED_COMPILES[@]}))/${COMPILE_COUNTER} +Tests Completed: $((TEST_COUNTER-${#FAILED_TESTS[@]}))/${TEST_COUNTER} +EOF + # PRINT FAILED COMPILES + if [[ "${#FAILED_COMPILES[@]}" -ne "0" ]]; then + echo "Failed Compiles:" >> "${REGRESSIONTEST_LOG}" + for i in "${!FAILED_COMPILES[@]}"; do + echo "* ${FAILED_COMPILES[$i]}" >> "${REGRESSIONTEST_LOG}" + echo "-- LOG: ${FAILED_COMPILE_LOGS[$i]}" >> "${REGRESSIONTEST_LOG}" + done + fi + + # PRINT FAILED TESTS + if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then + + echo "Failed Tests:" >> ${REGRESSIONTEST_LOG} + for j in "${!FAILED_TESTS[@]}"; do + echo "* ${FAILED_TESTS[$j]}" >> "${REGRESSIONTEST_LOG}" + echo "-- LOG: ${FAILED_TEST_LOGS[$j]}" >> "${REGRESSIONTEST_LOG}" + done + + fi + + # WRITE FAILED_TEST_ID LIST TO TEST_CHANGES_LOG + if [[ "${#FAILED_TESTS[@]}" -ne "0" ]]; then + for item in "${FAILED_TEST_ID[@]}"; do + echo "$item" >> "${TEST_CHANGES_LOG}" + done + fi + + if [[ "${#FAILED_COMPILES[@]}" -eq "0" && "${#FAILED_TESTS[@]}" -eq "0" ]]; then + cat << EOF >> "${REGRESSIONTEST_LOG}" + +NOTES: +A file '${TEST_CHANGES_LOG}' was generated but is empty. +If you are using this log as a pull request verification, please commit '${TEST_CHANGES_LOG}'. + +Result: SUCCESS + +====END OF ${MACHINE_ID^^} REGRESSION TESTING LOG==== +EOF + echo "Performing Cleanup..." + rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp + [[ ${KEEP_RUNDIR} == false ]] && rm -rf "${RUNDIR_ROOT}" && rm "${PATHRT}/run_dir" + [[ ${ROCOTO} == true ]] && rm -f "${ROCOTO_XML}" "${ROCOTO_DB}" "${ROCOTO_STATE}" *_lock.db + [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* + echo "REGRESSION TEST RESULT: SUCCESS" + else + cat << EOF >> "${REGRESSIONTEST_LOG}" + +NOTES: +A file '${TEST_CHANGES_LOG}' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit '${TEST_CHANGES_LOG}'. + +Result: FAILURE + +====END OF ${MACHINE_ID^^} REGRESSION TESTING LOG==== +EOF + echo "REGRESSION TEST RESULT: FAILURE" + fi + +} + create_or_run_compile_task() { - cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env - export JOB_NR=${JOB_NR} - export COMPILE_NR=${COMPILE_NR} - export MACHINE_ID=${MACHINE_ID} - export RT_COMPILER=${RT_COMPILER} - export PATHRT=${PATHRT} - export PATHTR=${PATHTR} - export SCHEDULER=${SCHEDULER} - export ACCNR=${ACCNR} - export QUEUE=${COMPILE_QUEUE} - export PARTITION=${PARTITION} - export ROCOTO=${ROCOTO} - export ECFLOW=${ECFLOW} - export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} - export LOG_DIR=${LOG_DIR} + cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env +export JOB_NR=${JOB_NR} +export COMPILE_ID=${COMPILE_ID} +export MACHINE_ID=${MACHINE_ID} +export RT_COMPILER=${RT_COMPILER} +export PATHRT=${PATHRT} +export PATHTR=${PATHTR} +export SCHEDULER=${SCHEDULER} +export ACCNR=${ACCNR} +export QUEUE=${COMPILE_QUEUE} +export PARTITION=${PARTITION} +export ROCOTO=${ROCOTO} +export ECFLOW=${ECFLOW} +export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} +export LOG_DIR=${LOG_DIR} EOF if [[ $ROCOTO == true ]]; then @@ -100,7 +428,7 @@ EOF elif [[ $ECFLOW == true ]]; then ecflow_create_compile_task else - ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_NR} > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 + ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_ID} > ${LOG_DIR}/compile_${COMPILE_ID}.log 2>&1 fi RT_SUFFIX="" @@ -157,8 +485,6 @@ else exit 1 fi -readonly RT_SINGLE_CONF='rt_single.conf' - source detect_machine.sh # Note: this does not set ACCNR. The "if" block below does. source rt_utils.sh source module-setup.sh @@ -167,7 +493,6 @@ CREATE_BASELINE=false ROCOTO=false ECFLOW=false KEEP_RUNDIR=false -SINGLE_NAME='' TEST_35D=false export skip_check_results=false export delete_rundir=false @@ -175,6 +500,8 @@ SKIP_ORDER=false RTPWD_NEW_BASELINE=false TESTS_FILE='rt.conf' NEW_BASELINES_FILE='' +DEFINE_CONF_FILE=false +RUN_SINGLE_TEST=false ACCNR=${ACCNR:-""} while getopts ":a:b:cl:mn:dwkreh" opt; do @@ -189,32 +516,27 @@ while getopts ":a:b:cl:mn:dwkreh" opt; do CREATE_BASELINE=true ;; l) + DEFINE_CONF_FILE=true TESTS_FILE=$OPTARG - SKIP_ORDER=true + grep -q '[^[:space:]]' < "$TESTS_FILE" || die "${TESTS_FILE} empty, exiting..." ;; m) # redefine RTPWD to point to newly created baseline outputs RTPWD_NEW_BASELINE=true ;; n) - SINGLE_OPTS=("$OPTARG") - until [[ $(eval "echo \${$OPTIND}") =~ ^-.* ]] || [ -z $(eval "echo \${$OPTIND}") ]; do - SINGLE_OPTS+=($(eval "echo \${$OPTIND}")) - OPTIND=$((OPTIND + 1)) - done + RUN_SINGLE_TEST=true + IFS=' ' read -r -a SINGLE_OPTS <<< $OPTARG if [[ ${#SINGLE_OPTS[@]} != 2 ]]; then - echo "The -n option needs AND , i.e. -n control_p8 intel" - exit 1 + die 'The -n option needs AND in quotes, i.e. -n "control_p8 intel"' fi - SINGLE_NAME=${SINGLE_OPTS[0]} - export RT_COMPILER=${SINGLE_OPTS[1]} - if [[ "$RT_COMPILER" == "intel" ]] || [[ "$RT_COMPILER" == "gnu" ]]; then - echo "COMPILER set to ${RT_COMPILER}" - else - echo "Compiler must be either 'intel' or 'gnu'." - exit 1 + SRT_NAME="${SINGLE_OPTS[0]}" + SRT_COMPILER="${SINGLE_OPTS[1]}" + + if [[ "${SRT_COMPILER}" != "intel" ]] && [[ "${SRT_COMPILER}" != "gnu" ]]; then + die "COMPILER MUST BE 'intel' OR 'gnu'" fi ;; d) @@ -249,6 +571,11 @@ while getopts ":a:b:cl:mn:dwkreh" opt; do esac done +#Check to error out if incompatible options are chosen together +[[ $KEEP_RUNDIR == true && $delete_rundir == true ]] && die "-k and -d options cannot be used at the same time" +[[ $ECFLOW == true && $ROCOTO == true ]] && die "-r and -e options cannot be used at the same time" +[[ $CREATE_BASELINE == true && $RTPWD_NEW_BASELINE == true ]] && die "-c and -m options cannot be used at the same time" + if [[ -z "$ACCNR" ]]; then echo "Please use -a to set group account to use on HPC" exit 1 @@ -259,13 +586,6 @@ echo "Machine: " $MACHINE_ID " Account: " $ACCNR if [[ $MACHINE_ID = wcoss2 ]]; then - #module use /usrx/local/dev/emc_rocoto/modulefiles - #module load ruby/2.5.1 rocoto/1.3.0rc2 - #ROCOTORUN=$(which rocotorun) - #ROCOTOSTAT=$(which rocotostat) - #ROCOTOCOMPLETE=$(which rocotocomplete) - #ROCOTO_SCHEDULER=lsf - module load ecflow/5.6.0.13 module load intel/19.1.3.304 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh @@ -279,6 +599,7 @@ if [[ $MACHINE_ID = wcoss2 ]]; then DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT QUEUE=dev COMPILE_QUEUE=dev + ROCOTO_SCHEDULER=pbs PARTITION= STMP=/lfs/h2/emc/ptmp PTMP=/lfs/h2/emc/ptmp @@ -299,6 +620,7 @@ elif [[ $MACHINE_ID = acorn ]]; then DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT QUEUE=dev COMPILE_QUEUE=dev + ROCOTO_SCHEDULER=pbs PARTITION= STMP=/lfs/h2/emc/ptmp PTMP=/lfs/h2/emc/ptmp @@ -365,6 +687,7 @@ elif [[ $MACHINE_ID = orion ]]; then ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm module use /work/noaa/epic/role-epic/spack-stack/orion/modulefiles module load ecflow/5.8.4 @@ -387,6 +710,7 @@ elif [[ $MACHINE_ID = hercules ]]; then ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm module use /work/noaa/epic/role-epic/spack-stack/hercules/modulefiles module load ecflow/5.8.4 @@ -454,10 +778,16 @@ elif [[ $MACHINE_ID = s4 ]]; then elif [[ $MACHINE_ID = derecho ]]; then - export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH - export PATH=/glade/work/epicufsrt/contrib/derecho/rocoto/bin:$PATH - export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh + module use /glade/work/epicufsrt/contrib/derecho/rocoto/modulefiles + module load rocoto + module use /glade/work/epicufsrt/contrib/spack-stack/derecho/modulefiles + module load ecflow/5.8.4 + module unload ncarcompilers + module use /glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core + module load stack-intel/2021.10.0 + module load stack-python/3.10.8 +# export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/glade/work/epicufsrt/contrib/spack-stack/derecho/ecflow-5.8.4/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=main @@ -536,12 +866,14 @@ NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST # Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$ mkdir -p ${RUNDIR_ROOT} +if [[ -e ${PATHRT}/run_dir ]]; then + rm ${PATHRT}/run_dir +fi +echo "Linking ${RUNDIR_ROOT} to ${PATHRT}/run_dir" +ln -s ${RUNDIR_ROOT} ${PATHRT}/run_dir echo "Run regression test in: ${RUNDIR_ROOT}" -if [[ $SINGLE_NAME != '' ]]; then - rt_single - TESTS_FILE=$RT_SINGLE_CONF -fi +update_rtconf if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true @@ -575,21 +907,10 @@ shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage if [[ $CREATE_BASELINE == true ]]; then - # - # prepare new regression test directory - # + # PREPARE NEW REGRESSION TEST DIRECTORY rm -rf "${NEW_BASELINE}" mkdir -p "${NEW_BASELINE}" - NEW_BASELINES_TESTS=() - if [[ $NEW_BASELINES_FILE != '' ]]; then - readarray -t NEW_BASELINES_TESTS < $NEW_BASELINES_FILE - echo "New baselines will be created for:" - for test_name in "${NEW_BASELINES_TESTS[@]}" - do - echo " $test_name" - done - fi fi if [[ $skip_check_results == true ]]; then @@ -598,20 +919,11 @@ else REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_$MACHINE_ID.log fi -date > ${REGRESSIONTEST_LOG} -echo "Start Regression test" >> ${REGRESSIONTEST_LOG} -echo >> ${REGRESSIONTEST_LOG} -echo "Testing UFSWM Hash:" `git rev-parse HEAD` >> ${REGRESSIONTEST_LOG} -echo "Testing With Submodule Hashes:" >> ${REGRESSIONTEST_LOG} -cd .. -git submodule status >> ${REGRESSIONTEST_LOG} - -cd tests +export TEST_START_TIME="$(date '+%Y%m%d %T')" source default_vars.sh JOB_NR=0 -TEST_NR=0 COMPILE_COUNTER=0 rm -f fail_test* fail_compile* @@ -627,44 +939,8 @@ if [[ $ROCOTO == true ]]; then rm -f $ROCOTO_XML $ROCOTO_DB $ROCOTO_STATE *_lock.db - if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then - QUEUE=dev - COMPILE_QUEUE=dev - ROCOTO_SCHEDULER=pbs - elif [[ $MACHINE_ID = hera ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = orion ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = hercules ]]; then - QUEUE=windfall - COMPILE_QUEUE=windfall - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = s4 ]]; then - QUEUE=s4 - COMPILE_QUEUE=s4 - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = noaacloud ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = jet ]]; then - QUEUE=batch - COMPILE_QUEUE=batch - ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = derecho ]]; then - QUEUE=main - COMPILE_QUEUE=main - ROCOTO_SCHEDULER=pbspro - elif [[ $MACHINE_ID = gaea ]]; then - QUEUE=normal - COMPILE_QUEUE=normal - ROCOTO_SCHEDULER=slurm - else - die "Rocoto is not supported on this machine $MACHINE_ID" + if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then + die "Rocoto is not supported on this machine: $MACHINE_ID" fi cat << EOF > $ROCOTO_XML @@ -721,24 +997,8 @@ suite ${ECFLOW_SUITE} limit max_jobs ${MAX_JOBS} EOF - if [[ $MACHINE_ID = wcoss2 || $MACHINE_ID = acorn ]]; then - QUEUE=dev - elif [[ $MACHINE_ID = hera ]]; then - QUEUE=batch - elif [[ $MACHINE_ID = orion ]]; then - QUEUE=batch - elif [[ $MACHINE_ID = hercules ]]; then - QUEUE=windfall - elif [[ $MACHINE_ID = jet ]]; then - QUEUE=batch - elif [[ $MACHINE_ID = s4 ]]; then - QUEUE=s4 - elif [[ $MACHINE_ID = gaea ]]; then - QUEUE=normal - elif [[ $MACHINE_ID = derecho ]]; then - QUEUE=main - else - die "ecFlow is not supported on this machine $MACHINE_ID" + if [[ $MACHINE_ID = stampede || $MACHINE_ID = expanse ]]; then + die "ecFlow is not supported on this machine: $MACHINE_ID" fi fi @@ -754,7 +1014,7 @@ in_metatask=false [[ -f $TESTS_FILE ]] || die "$TESTS_FILE does not exist" LAST_COMPILER_NR=-9999 -COMPILE_PREV=='' +COMPILE_PREV='' declare -A compiles @@ -773,17 +1033,17 @@ while read -r line || [ "$line" ]; do MAKE_OPT=$( echo $line | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') MACHINES=$( echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') CB=$( echo $line | cut -d'|' -f6) - COMPILE_NR=${COMPILE_NAME}_${RT_COMPILER} - COMPILE_PREV=${COMPILE_NR} + COMPILE_ID=${COMPILE_NAME}_${RT_COMPILER} + COMPILE_PREV=${COMPILE_ID} set +u - if [[ ! -z ${compiles[$COMPILE_NR]} ]] ; then + if [[ ! -z ${compiles[$COMPILE_ID]} ]] ; then echo "Error! Duplicated compilation $COMPILE_NAME for compiler $RT_COMPILER!" exit 1 fi set -u - compiles[$COMPILE_NR]=$COMPILE_NR - echo "COMPILING ${compiles[${COMPILE_NR}]}" + compiles[$COMPILE_ID]=$COMPILE_ID + echo "COMPILING ${compiles[${COMPILE_ID}]}" [[ $CREATE_BASELINE == true && $CB != *fv3* ]] && continue @@ -798,10 +1058,6 @@ while read -r line || [ "$line" ]; do fi fi - if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then - continue - fi - create_or_run_compile_task continue @@ -818,6 +1074,8 @@ while read -r line || [ "$line" ]; do DEP_RUN=${DEP_RUN}_${RT_COMPILER} fi + export TEST_ID=${TEST_NAME}_${RT_COMPILER} + [[ -e "tests/$TEST_NAME" ]] || die "run test file tests/$TEST_NAME does not exist" [[ $CREATE_BASELINE == true && $CB != *baseline* ]] && continue @@ -832,25 +1090,7 @@ while read -r line || [ "$line" ]; do fi fi - COMPILE_METATASK_NAME=${COMPILE_NR} - if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then - if [[ ! " ${NEW_BASELINES_TESTS[*]} " =~ " ${TEST_NAME} " ]]; then - echo "Link current baselines for test ${TEST_NAME}_${RT_COMPILER}" - ( - source ${PATHRT}/tests/$TEST_NAME - ln -s ${RTPWD}/${CNTL_DIR}_${RT_COMPILER} ${NEW_BASELINE} - ) - continue - else - echo "Create new baselines for test ${TEST_NAME}_${RT_COMPILER}" - # look at COMPILE_PREV, and if it's not an empty string run compile step - # and reset it to empty so that we do not run compile more than once - if [[ ${COMPILE_PREV} != '' ]]; then - create_or_run_compile_task - [[ $ROCOTO == true || $ECFLOW == true ]] && COMPILE_PREV='' - fi - fi - fi + COMPILE_METATASK_NAME=${COMPILE_ID} # 35 day tests [[ $TEST_35D == true ]] && rt_35d @@ -867,8 +1107,6 @@ while read -r line || [ "$line" ]; do EOF fi - TEST_NR=$( printf '%03d' $(( 10#$TEST_NR + 1 )) ) - ( source ${PATHRT}/tests/$TEST_NAME @@ -884,38 +1122,39 @@ EOF if (( TASKS - ( PPN * NODES ) > 0 )); then PPN=$((PPN + 1)) fi - - cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_NR}.env - export JOB_NR=${JOB_NR} - export MACHINE_ID=${MACHINE_ID} - export RT_COMPILER=${RT_COMPILER} - export RTPWD=${RTPWD} - export INPUTDATA_ROOT=${INPUTDATA_ROOT} - export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} - export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} - export PATHRT=${PATHRT} - export PATHTR=${PATHTR} - export NEW_BASELINE=${NEW_BASELINE} - export CREATE_BASELINE=${CREATE_BASELINE} - export RT_SUFFIX=${RT_SUFFIX} - export BL_SUFFIX=${BL_SUFFIX} - export SCHEDULER=${SCHEDULER} - export ACCNR=${ACCNR} - export QUEUE=${QUEUE} - export PARTITION=${PARTITION} - export ROCOTO=${ROCOTO} - export ECFLOW=${ECFLOW} - export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} - export LOG_DIR=${LOG_DIR} - export DEP_RUN=${DEP_RUN} - export skip_check_results=${skip_check_results} - export delete_rundir=${delete_rundir} - export WLCLK=${WLCLK} + + cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_ID}.env +export JOB_NR=${JOB_NR} +export TEST_ID=${TEST_ID} +export MACHINE_ID=${MACHINE_ID} +export RT_COMPILER=${RT_COMPILER} +export RTPWD=${RTPWD} +export INPUTDATA_ROOT=${INPUTDATA_ROOT} +export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} +export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} +export PATHRT=${PATHRT} +export PATHTR=${PATHTR} +export NEW_BASELINE=${NEW_BASELINE} +export CREATE_BASELINE=${CREATE_BASELINE} +export RT_SUFFIX=${RT_SUFFIX} +export BL_SUFFIX=${BL_SUFFIX} +export SCHEDULER=${SCHEDULER} +export ACCNR=${ACCNR} +export QUEUE=${QUEUE} +export PARTITION=${PARTITION} +export ROCOTO=${ROCOTO} +export ECFLOW=${ECFLOW} +export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} +export LOG_DIR=${LOG_DIR} +export DEP_RUN=${DEP_RUN} +export skip_check_results=${skip_check_results} +export delete_rundir=${delete_rundir} +export WLCLK=${WLCLK} EOF if [[ $MACHINE_ID = jet ]]; then - cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_NR}.env - export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH - export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages + cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_ID}.env +export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH +export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages EOF fi @@ -924,7 +1163,7 @@ EOF elif [[ $ECFLOW == true ]]; then ecflow_create_run_task else - ./run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log 2>&1 + ./run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > ${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log 2>&1 fi ) @@ -953,43 +1192,14 @@ if [[ $ECFLOW == true ]]; then ecflow_run fi -## -## regression test is either failed or successful -## -set +e -cat ${LOG_DIR}/compile_*_time.log >> ${REGRESSIONTEST_LOG} -cat ${LOG_DIR}/rt_*.log >> ${REGRESSIONTEST_LOG} - -FILES="fail_test_* fail_compile_*" -for f in $FILES; do - if [[ -f "$f" ]]; then - cat "$f" >> fail_test - fi -done - -if [[ -e fail_test ]]; then - echo "FAILED TESTS: " - echo "FAILED TESTS: " >> ${REGRESSIONTEST_LOG} - while read -r failed_test_name - do - echo "${failed_test_name}" - echo "${failed_test_name}" >> ${REGRESSIONTEST_LOG} - done < fail_test - echo ; echo REGRESSION TEST FAILED - (echo ; echo REGRESSION TEST FAILED) >> ${REGRESSIONTEST_LOG} -else - echo ; echo REGRESSION TEST WAS SUCCESSFUL - (echo ; echo REGRESSION TEST WAS SUCCESSFUL) >> ${REGRESSIONTEST_LOG} - - rm -f fv3_*.x fv3_*.exe modules.fv3_* modulefiles/modules.fv3_* keep_tests.tmp - [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} - [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} ${ROCOTO_STATE} *_lock.db - [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* - [[ ${SINGLE_NAME} != '' ]] && rm -f $RT_SINGLE_CONF +# IF -c AND -b; LINK VERIFIED BASELINES TO NEW_BASELINE +if [[ $CREATE_BASELINE == true && $NEW_BASELINES_FILE != '' ]]; then + for dir in "${RTPWD}"/*/; do + dir=${dir%*/} + [[ -d "${NEW_BASELINE}/${dir##*/}" ]] && continue + ln -s "${dir%*/}" "${NEW_BASELINE}/" + done fi -date >> ${REGRESSIONTEST_LOG} - -elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) -echo "Elapsed time: ${elapsed_time}. Have a nice day!" >> ${REGRESSIONTEST_LOG} -echo "Elapsed time: ${elapsed_time}. Have a nice day!" +## Lets verify all tests were run and that they passed +generate_log diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 0646266895..238f8ed695 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -101,9 +101,6 @@ interrupt_job() { elif [[ $SCHEDULER = 'slurm' ]]; then echo "run_util.sh: interrupt_job slurm_id = ${slurm_id}" scancel ${slurm_id} - elif [[ $SCHEDULER = 'lsf' ]]; then - echo "run_util.sh: interrupt_job bsub_id = ${bsub_id}" - bkill ${bsub_id} else echo "run_util.sh: interrupt_job unknown SCHEDULER $SCHEDULER" fi @@ -133,11 +130,6 @@ submit_and_wait() { re='Submitted batch job ([0-9]+)' [[ "${slurmout}" =~ $re ]] && slurm_id=${BASH_REMATCH[1]} echo "Job id ${slurm_id}" - elif [[ $SCHEDULER = 'lsf' ]]; then - bsubout=$( bsub < $job_card ) - re='Job <([0-9]+)> is submitted to queue <(.+)>.' - [[ "${bsubout}" =~ $re ]] && bsub_id=${BASH_REMATCH[1]} - echo "Job id ${bsub_id}" else echo "Unknown SCHEDULER $SCHEDULER" exit 1 @@ -148,14 +140,12 @@ submit_and_wait() { local job_running=0 until [[ $job_running -eq 1 ]] do - echo "TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is waiting to enter the queue" + echo "Job is waiting to enter the queue" [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "waiting to enter the queue" if [[ $SCHEDULER = 'pbs' ]]; then job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l ) elif [[ $SCHEDULER = 'slurm' ]]; then job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) - elif [[ $SCHEDULER = 'lsf' ]]; then - job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l) else echo "Unknown SCHEDULER $SCHEDULER" exit 1 @@ -170,13 +160,11 @@ submit_and_wait() { jobid=${qsub_id} elif [[ $SCHEDULER = 'slurm' ]]; then jobid=${slurm_id} - elif [[ $SCHEDULER = 'lsf' ]]; then - jobid=${bsub_id} else echo "Unknown SCHEDULER $SCHEDULER" exit 1 fi - echo "TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is submitted " + echo "Job is submitted " if [[ ${ECFLOW:-false} == true ]]; then ecflow_client --label=job_id "${jobid}" ecflow_client --label=job_status "submitted" @@ -192,8 +180,6 @@ submit_and_wait() { job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l ) elif [[ $SCHEDULER = 'slurm' ]]; then job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) - elif [[ $SCHEDULER = 'lsf' ]]; then - job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l) else echo "Unknown SCHEDULER $SCHEDULER" exit 1 @@ -241,37 +227,13 @@ submit_and_wait() { fi fi - elif [[ $SCHEDULER = 'lsf' ]]; then - - status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--} - if [[ $status = 'PEND' ]]; then - status_label='pending' - elif [[ $status = 'RUN' ]]; then - status_label='running' - elif [[ $status = 'DONE' ]]; then - status_label='finished' - test_status='DONE' - elif [[ $status = 'EXIT' ]]; then - status_label='failed' - test_status='FAIL' - else - echo "bsub unknown status ${status}" - status_label='finished' - test_status='DONE' - exit_status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--} - if [[ $exit_status = 'EXIT' ]]; then - status_label='failed' - test_status='FAIL' - fi - fi - else echo "Unknown SCHEDULER $SCHEDULER" exit 1 fi - echo "$n min. TEST ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} is ${status_label}, status: $status jobid ${jobid}" + echo "$n min. Job is ${status_label}, status: $status jobid ${jobid}" [[ ${ECFLOW:-false} == true ]] && ecflow_client --label=job_status "$status_label" if [[ $test_status = 'FAIL' || $test_status = 'DONE' ]]; then @@ -283,9 +245,9 @@ submit_and_wait() { done if [[ $test_status = 'FAIL' ]]; then - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} FAIL" >> ${RT_LOG} + echo "Job FAIL" >> ${RT_LOG} echo;echo;echo >> ${RT_LOG} - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} FAIL" + echo "Job FAIL" if [[ $ROCOTO == true || $ECFLOW == true ]]; then exit 1 @@ -311,11 +273,11 @@ check_results() { echo > ${RT_LOG} echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" >> ${RT_LOG} echo "working dir = ${RUNDIR}" >> ${RT_LOG} - echo "Checking test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} results ...." >> ${RT_LOG} + echo "Checking test ${TEST_ID} results ...." >> ${RT_LOG} echo echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} results ...." + echo "Checking test ${TEST_ID} results ...." if [[ ${CREATE_BASELINE} = false ]]; then # @@ -338,34 +300,36 @@ check_results() { test_status='FAIL' else - - cmp ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? - if [[ $d -eq 2 ]]; then - echo "....CMP ERROR" >> ${RT_LOG} - echo "....CMP ERROR" - exit 1 - fi - - if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then + if [[ ${i##*.} == 'nc' ]] ; then if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then - printf ".......ALT CHECK.." >> ${RT_LOG} - printf ".......ALT CHECK.." + printf "USING NCCMP.." >> ${RT_LOG} + printf "USING NCCMP.." if [[ $CMP_DATAONLY == false ]]; then nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? else nccmp -d -S -q -f -B --Attribute=checksum --warn=format ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ${RUNDIR}/${i} > ${i}_nccmp.log 2>&1 && d=$? || d=$? fi if [[ $d -ne 0 && $d -ne 1 ]]; then - echo "....ERROR" >> ${RT_LOG} - echo "....ERROR" - exit 1 + printf "....ERROR" >> ${RT_LOG} + printf "....ERROR" + test_status='FAIL' fi fi + else + printf "USING CMP.." >> ${RT_LOG} + printf "USING CMP.." + cmp ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 2 ]]; then + printf "....ERROR" >> ${RT_LOG} + printf "....ERROR" + test_status='FAIL' + fi + fi if [[ $d -ne 0 ]]; then - echo "....NOT OK" >> ${RT_LOG} - echo "....NOT OK" + echo "....NOT IDENTICAL" >> ${RT_LOG} + echo "....NOT IDENTICAL" test_status='FAIL' else echo "....OK" >> ${RT_LOG} @@ -380,8 +344,8 @@ check_results() { # # --- create baselines # - echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} files ...." - echo;echo "Moving baseline ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} files ...." >> ${RT_LOG} + echo;echo "Moving baseline ${TEST_ID} files ...." + echo;echo "Moving baseline ${TEST_ID} files ...." >> ${RT_LOG} for i in ${LIST_FILES} ; do printf %s " Moving " $i " ....." @@ -411,13 +375,13 @@ check_results() { TRIES=" Tries: $ECF_TRYNO" fi fi - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${test_status}${TRIES}" >> ${RT_LOG} + echo "Test ${TEST_ID} ${test_status}${TRIES}" >> ${RT_LOG} echo >> ${RT_LOG} - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${test_status}${TRIES}" + echo "Test ${TEST_ID} ${test_status}${TRIES}" echo if [[ $test_status = 'FAIL' ]]; then - echo "${TEST_NR} ${TEST_NAME}_${RT_COMPILER} failed in check_result" >> $PATHRT/fail_test_${TEST_NR} + echo "${TEST_ID} failed in check_result" >> $PATHRT/fail_test_${TEST_ID} if [[ $ROCOTO = true || $ECFLOW == true ]]; then exit 1 @@ -438,8 +402,6 @@ kill_job() { qdel ${jobid} elif [[ $SCHEDULER = 'slurm' ]]; then scancel ${jobid} - elif [[ $SCHEDULER = 'lsf' ]]; then - bkill ${jobid} fi } @@ -475,9 +437,9 @@ rocoto_create_compile_task() { cat << EOF >> $ROCOTO_XML - - &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_NR} - compile_${COMPILE_NR} + + &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} > &LOG;/compile_${COMPILE_ID}.log + compile_${COMPILE_ID} ${ACCNR} ${COMPILE_QUEUE} EOF @@ -496,7 +458,7 @@ EOF cat << EOF >> $ROCOTO_XML ${BUILD_CORES} ${BUILD_WALLTIME} - &RUNDIR_ROOT;/compile_${COMPILE_NR}.log + &RUNDIR_ROOT;/compile_${COMPILE_ID}.log ${NATIVE} EOF @@ -505,9 +467,9 @@ EOF rocoto_create_run_task() { if [[ $DEP_RUN != '' ]]; then - DEP_STRING=" " + DEP_STRING=" " else - DEP_STRING="" + DEP_STRING="" fi CORES=$(( ${TASKS} * ${THRD} )) @@ -518,10 +480,10 @@ rocoto_create_run_task() { NATIVE="" cat << EOF >> $ROCOTO_XML - + $DEP_STRING - &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} - ${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX} + &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > &LOG;/run_${TEST_ID}${RT_SUFFIX}.log + ${TEST_ID}${RT_SUFFIX} ${ACCNR} ${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE} EOF @@ -541,8 +503,8 @@ EOF cat << EOF >> $ROCOTO_XML ${NODES}:ppn=${TPN} 00:${WLCLK}:00 - &RUNDIR_ROOT;/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.out - &RUNDIR_ROOT;/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.err + &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.out + &RUNDIR_ROOT;/${TEST_ID}${RT_SUFFIX}.err ${NATIVE} EOF @@ -617,13 +579,13 @@ ecflow_create_compile_task() { new_compile=true - cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_NR}.ecf + cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf %include -$PATHRT/run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 & +$PATHRT/run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" $COMPILE_ID > ${LOG_DIR}/compile_${COMPILE_ID}.log 2>&1 & %include EOF - echo " task compile_${COMPILE_NR}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " task compile_${COMPILE_ID}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " label build_options '${MAKE_OPT}'" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def @@ -632,20 +594,20 @@ EOF ecflow_create_run_task() { - cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.ecf + cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf %include -$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log 2>&1 & +$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} > ${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log 2>&1 & %include EOF - echo " task ${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " task ${TEST_ID}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " inlimit max_jobs" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def if [[ $DEP_RUN != '' ]]; then - echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " trigger compile_${COMPILE_ID} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def else - echo " trigger compile_${COMPILE_NR} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " trigger compile_${COMPILE_ID} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def fi } diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 1d8d6254f0..795353a32a 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -15,42 +15,38 @@ cleanup() { } write_fail_test() { - echo "compile_${COMPILE_NR} failed in run_compile" >> $PATHRT/fail_compile_${COMPILE_NR} + echo "compile_${COMPILE_ID} failed in run_compile" >> $PATHRT/fail_compile_${COMPILE_ID} exit 1 } remove_fail_test() { - echo "Removing test failure flag file for compile_${COMPILE_NR}" - rm -f $PATHRT/fail_compile_${COMPILE_NR} + echo "Removing test failure flag file for compile_${COMPILE_ID}" + rm -f $PATHRT/fail_compile_${COMPILE_ID} } if [[ $# != 4 ]]; then - echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_NR" + echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_ID" exit 1 fi export PATHRT=$1 export RUNDIR_ROOT=$2 export MAKE_OPT=$3 -export COMPILE_NR=$4 +export COMPILE_ID=$4 cd ${PATHRT} remove_fail_test -[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env +[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env source default_vars.sh -[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env +[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_ID}.env +export JBNME="compile_${COMPILE_ID}" +export RUNDIR=${RUNDIR_ROOT}/compile_${COMPILE_ID} +echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt -export TEST_NAME=compile -export TEST_NR=${COMPILE_NR} -export JBNME="compile_${COMPILE_NR}" -export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${TEST_NR} - -echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt - -export RT_LOG=${LOG_DIR}/compile_${TEST_NR}.log +export RT_LOG=${LOG_DIR}/compile_${COMPILE_ID}.log source rt_utils.sh source atparse.bash @@ -96,10 +92,10 @@ else # relying on bash-specific extensions or non-standard OS features. fi -ls -l ${PATHTR}/tests/fv3_${COMPILE_NR}.exe +ls -l ${PATHTR}/tests/fv3_${COMPILE_ID}.exe cp ${RUNDIR}/compile_*_time.log ${LOG_DIR} -cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt remove_fail_test @@ -107,7 +103,7 @@ remove_fail_test # End compile job ################################################################################ -echo " $( date +%s ), 1" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo " $( date +%s ), 1" >> ${LOG_DIR}/compile_${COMPILE_ID}_timestamp.txt elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Compile ${COMPILE_NR}" +echo "Elapsed time $elapsed seconds. Compile ${COMPILE_ID}" diff --git a/tests/run_test.sh b/tests/run_test.sh index ab10a0e17d..d4ea64068c 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -15,31 +15,31 @@ cleanup() { } write_fail_test() { - echo "${TEST_NAME}_${RT_COMPILER} ${TEST_NR} failed in run_test" >> $PATHRT/fail_test_${TEST_NR} + echo "${TEST_ID} failed in run_test" >> $PATHRT/fail_test_${TEST_ID} exit 1 } remove_fail_test() { - echo "Removing test failure flag file for ${TEST_NAME}_${RT_COMPILER} ${TEST_NR}" - rm -f $PATHRT/fail_test_${TEST_NR} + echo "Removing test failure flag file for ${TEST_ID}" + rm -f $PATHRT/fail_test_${TEST_ID} } if [[ $# != 5 ]]; then - echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_NR COMPILE_NR" + echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_ID COMPILE_ID" exit 1 fi export PATHRT=$1 export RUNDIR_ROOT=$2 export TEST_NAME=$3 -export TEST_NR=$4 -export COMPILE_NR=$5 +export TEST_ID=$4 +export COMPILE_ID=$5 echo "PATHRT: ${PATHRT}" echo "RUNDIR_ROOT: ${RUNDIR_ROOT}" echo "TEST_NAME: ${TEST_NAME}" -echo "TEST_NR: ${TEST_NR}" -echo "COMPILE_NR: ${COMPILE_NR}" +echo "TEST_ID: ${TEST_ID}" +echo "COMPILE_ID: ${COMPILE_ID}" cd ${PATHRT} @@ -47,9 +47,9 @@ cd ${PATHRT} unset MODEL_CONFIGURE unset UFS_CONFIGURE -[[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env +[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env source default_vars.sh -[[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env +[[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_ID}.env source tests/$TEST_NAME remove_fail_test @@ -60,15 +60,15 @@ remove_fail_test export INPUT_DIR=${CNTL_DIR} # Append RT_SUFFIX to RUNDIR, and BL_SUFFIX to CNTL_DIR -export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX} +export RUNDIR=${RUNDIR_ROOT}/${TEST_ID}${RT_SUFFIX} export CNTL_DIR=${CNTL_DIR}${BL_SUFFIX} -export JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR} +export JBNME=$(basename $RUNDIR_ROOT)_${TEST_ID} -echo -n "${TEST_NAME}_${RT_COMPILER}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo -n "${TEST_ID}, $( date +%s )," > ${LOG_DIR}/run_${TEST_ID}_timestamp.txt -export RT_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}_${RT_COMPILER}${RT_SUFFIX}.log -echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} ${TEST_DESCR}" +export RT_LOG=${LOG_DIR}/rt_${TEST_ID}${RT_SUFFIX}.log +echo "Test ${TEST_ID} ${TEST_DESCR}" source rt_utils.sh source atparse.bash @@ -82,14 +82,14 @@ cd $RUNDIR ############################################################################### # FV3 executable: -cp ${PATHRT}/fv3_${COMPILE_NR}.exe fv3.exe +cp ${PATHRT}/fv3_${COMPILE_ID}.exe fv3.exe # modulefile for FV3 prerequisites: mkdir -p modulefiles if [[ $MACHINE_ID == linux ]]; then - cp ${PATHRT}/modules.fv3_${COMPILE_NR} ./modulefiles/modules.fv3 + cp ${PATHRT}/modules.fv3_${COMPILE_ID} ./modulefiles/modules.fv3 else - cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua ./modulefiles/modules.fv3.lua + cp ${PATHRT}/modules.fv3_${COMPILE_ID}.lua ./modulefiles/modules.fv3.lua fi cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. @@ -370,18 +370,20 @@ else fi if [[ $skip_check_results = false ]]; then - check_results + check_results || true + # The above call will exit with an error on its own and does + # not need to cause run_test to TRAP the failure and error out itself. else echo >> ${RT_LOG} grep "The total amount of wall time" ${RUNDIR}/out >> ${RT_LOG} grep "The maximum resident set size" ${RUNDIR}/out >> ${RT_LOG} echo >> ${RT_LOG} - echo "Test ${TEST_NR} ${TEST_NAME}_${RT_COMPILER} RUN_SUCCESS" >> ${RT_LOG} + echo "Test ${TEST_ID} RUN_SUCCESS" >> ${RT_LOG} echo;echo;echo >> ${RT_LOG} fi if [[ $SCHEDULER != 'none' ]]; then - cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt fi if [[ $ROCOTO = true ]]; then @@ -392,7 +394,7 @@ fi # End test ################################################################################ -echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/run_${TEST_ID}_timestamp.txt ################################################################################ # Remove RUN_DIRs if they are no longer needed by other tests @@ -412,4 +414,4 @@ if [[ ${delete_rundir} = true ]]; then fi elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Test ${TEST_NAME}_${RT_COMPILER}" +echo "Elapsed time $elapsed seconds. Test ${TEST_ID}" diff --git a/tests/test_changes.list b/tests/test_changes.list new file mode 100644 index 0000000000..e69de29bb2 From d87b54c08978cda84ae2625a376658cf153033cc Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 23 Feb 2024 14:04:34 -0700 Subject: [PATCH 08/10] Submodule pointer update for ccpp-framework/ccpp-physics & option to run compile jobs of regression test suite only & -mcmodel=medium gnu.cmake option (also includes https://github.com/ufs-community/ufs-weather-model/pull/2142) (#2066) * UFSWM - Add option to `rt.sh` to run compile-only tests * FV3 - Update submodule pointer (NOAA-EMC/fv3atm#747) * ccpp-physics - Update submodule pointer (ufs-community/ccpp-physics#150) * ccpp-framework - Update submodule pointer (NCAR/ccpp-framework#519) * Update WM license and documentation logo * Update GNU.cmake: -mcmodel=medium --- FV3 | 2 +- LICENSE.md | 27 +- README.md | 15 +- cmake/GNU.cmake | 2 +- doc/UsersGuide/Makefile | 10 +- doc/UsersGuide/requirements.in | 3 + doc/UsersGuide/requirements.txt | 85 ++- doc/UsersGuide/source/CodeOverview.rst | 2 +- doc/UsersGuide/source/Configurations.rst | 2 +- doc/UsersGuide/source/Glossary.rst | 4 +- doc/UsersGuide/source/InputsOutputs.rst | 2 +- doc/UsersGuide/source/conf.py | 19 +- doc/UsersGuide/source/references.bib | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_derecho.log | 511 ++++++------- tests/logs/RegressionTests_gaea.log | 506 ++++++------- tests/logs/RegressionTests_hera.log | 708 +++++++++--------- tests/logs/RegressionTests_hercules.log | 690 ++++++++--------- tests/logs/RegressionTests_jet.log | 520 ++++++------- tests/logs/RegressionTests_orion.log | 530 ++++++------- tests/logs/RegressionTests_wcoss2.log | 448 +++++------ tests/rt.conf | 14 +- tests/rt.sh | 20 +- 25 files changed, 2148 insertions(+), 2070 deletions(-) create mode 100644 doc/UsersGuide/requirements.in diff --git a/FV3 b/FV3 index 0fe9ba3020..2d34223122 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0fe9ba3020ad2f744ead7323bda414497aa33632 +Subproject commit 2d342231225b6d00875d164cb86e09ea335fe6b1 diff --git a/LICENSE.md b/LICENSE.md index ba11b8537c..a3a10c4366 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -10,19 +10,32 @@ This project includes a mix of the following: This project utilizes the following unmodified works under various licenses, as shown below. -- Atmos cube sphere dycore: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [atmos_cubed_sphere dycore](https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- FV3 Atm: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [fv3atm](https://github.com/NOAA-EMC/fv3atm): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- NEMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [Stochastic Physics](https://github.com/NOAA-PSL/stochastic_physics): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- FMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [CCPP Physics](https://github.com/ufs-community/ccpp-physics): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) -- Stochastic Physics: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [CCPP Framework](https://github.com/NCAR/ccpp-framework): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) -- CCPP Physics: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) +- [AQM](https://github.com/NOAA-EMC/AQM): GNU General Public License 3.0 ([GPL](https://www.gnu.org/licenses/gpl-3.0.en.html)) + +- [CICE](https://github.com/NOAA-EMC/CICE): CICE Consortium license ([LICENSE.pdf](https://github.com/NOAA-EMC/CICE/blob/emc/develop/LICENSE.pdf)) + +- [CMakeModules](https://github.com/NOAA-EMC/CMakeModules): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [GOCART](https://github.com/GEOS-ESM/GOCART): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) + +- [HYCOM](https://github.com/NOAA-EMC/HYCOM-src): [MIT License](https://opensource.org/license/mit/) + +- [MOM6](https://github.com/NOAA-EMC/MOM6): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [WW3](https://github.com/NOAA-EMC/WW3): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [Unified Post Processor](https://github.com/NOAA-EMC/UPP): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- CCPP Framework: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) ## The rest of this project is in the worldwide public domain diff --git a/README.md b/README.md index 311fec3b65..cd17b6afc2 100644 --- a/README.md +++ b/README.md @@ -18,18 +18,21 @@ The top level directory structure groups source code and input files as follow: | -------------- | ------- | | ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. | | ```README.md``` | This file with basic pointers to more information. | -| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset run scripts. | +| ```AQM/``` | Contains air quality modeling component | | ```CMEPS-interface/``` | Contains CMEPS mediator | +| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | +| ```CDEPS-interface/``` | Contains CDEPS data components, including data-atmosphere (DATM) and data-ocean (DOCN) model components| | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | -| ```DATM/``` | Contains Data Atmosphere model component | -| ```WW3/``` | Contains community wave modeling framework WW3. | +| ```GOCART/``` | Contains GOCART aerosol model component | +| ```HYCOM-interface/``` | Contains HYCOM ocean model component | | ```MOM6-interface/``` | Contains MOM6 ocean model component | -| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | -| ```stochastic_physics/``` | Contains the stochastic physics source code. | +| ```NOAHMP-interface/``` | Contains Noah-MP land model component | +| ```WW3/``` | Contains community wave modeling framework WW3 | +| ```stochastic_physics/``` | Contains the stochastic physics source code | | ```cmake/``` | Contains compile option files on various platforms. | | ```modulefiles/``` | Contains module files on various platforms. | | ```tests/``` | Regression and unit testing framework scripts. | -| ```build.sh``` | Script to build the model executable. (also used by `tests/`) | +| ```build.sh``` | Script to build the model executable (also used by `tests/`) | E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite. ``` diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 4069d922d7..939e25bfa7 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -10,7 +10,7 @@ endif() if(DEBUG) add_definitions(-DDEBUG) - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check") + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -mcmodel=medium") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0") else() set(CMAKE_Fortran_FLAGS_RELEASE "-O2") diff --git a/doc/UsersGuide/Makefile b/doc/UsersGuide/Makefile index d0c3cbf102..a883b1dda4 100644 --- a/doc/UsersGuide/Makefile +++ b/doc/UsersGuide/Makefile @@ -3,16 +3,20 @@ # You can set these variables from the command line, and also # from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build +SPHINXOPTS = -a -n +SPHINXBUILD = sphinx-build SOURCEDIR = source BUILDDIR = build +LINKCHECKDIR = $(BUILDDIR)/linkcheck # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -.PHONY: help Makefile +.PHONY: help Makefile linkcheck + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(SPHINXOPTS) $(SOURCEDIR) $(LINKCHECKDIR) # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/doc/UsersGuide/requirements.in b/doc/UsersGuide/requirements.in new file mode 100644 index 0000000000..26c778f4aa --- /dev/null +++ b/doc/UsersGuide/requirements.in @@ -0,0 +1,3 @@ +sphinx>=6.0.0 +sphinx_rtd_theme +sphinxcontrib-bibtex diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 7be32f526d..b4642f5872 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -1,3 +1,82 @@ -sphinxcontrib-bibtex -sphinx_rtd_theme -docutils==0.16 \ No newline at end of file +# +# This file is autogenerated by pip-compile with Python 3.9 +# by the following command: +# +# pip-compile requirements.in +# +alabaster==0.7.16 + # via sphinx +babel==2.14.0 + # via sphinx +certifi==2024.2.2 + # via requests +charset-normalizer==3.3.2 + # via requests +docutils==0.20.1 + # via + # pybtex-docutils + # sphinx + # sphinx-rtd-theme + # sphinxcontrib-bibtex +idna==3.6 + # via requests +imagesize==1.4.1 + # via sphinx +importlib-metadata==7.0.1 + # via + # sphinx + # sphinxcontrib-bibtex +jinja2==3.1.3 + # via sphinx +latexcodec==2.0.1 + # via pybtex +markupsafe==2.1.5 + # via jinja2 +packaging==23.2 + # via sphinx +pybtex==0.24.0 + # via + # pybtex-docutils + # sphinxcontrib-bibtex +pybtex-docutils==1.0.3 + # via sphinxcontrib-bibtex +pygments==2.17.2 + # via sphinx +pyyaml==6.0.1 + # via pybtex +requests==2.31.0 + # via sphinx +six==1.16.0 + # via + # latexcodec + # pybtex +snowballstemmer==2.2.0 + # via sphinx +sphinx==7.2.6 + # via + # -r requirements.in + # sphinx-rtd-theme + # sphinxcontrib-bibtex + # sphinxcontrib-jquery +sphinx-rtd-theme==2.0.0 + # via -r requirements.in +sphinxcontrib-applehelp==1.0.8 + # via sphinx +sphinxcontrib-bibtex==2.6.2 + # via -r requirements.in +sphinxcontrib-devhelp==1.0.6 + # via sphinx +sphinxcontrib-htmlhelp==2.0.5 + # via sphinx +sphinxcontrib-jquery==4.1 + # via sphinx-rtd-theme +sphinxcontrib-jsmath==1.0.1 + # via sphinx +sphinxcontrib-qthelp==1.0.7 + # via sphinx +sphinxcontrib-serializinghtml==1.1.10 + # via sphinx +urllib3==2.2.1 + # via requests +zipp==3.17.0 + # via importlib-metadata diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index a479309aab..a8594bce14 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -67,7 +67,7 @@ The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range w * - :term:`FV3` dynamical core - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere * - Stochastic physics pattern generator - - https://github.com/noaa-psd/stochastic_physics + - https://github.com/NOAA-PSL/stochastic_physics * - Modular Ocean Model (:term:`MOM6`) - https://github.com/NOAA-EMC/MOM6 * - HYbrid Coordinate Ocean Model (:term:`HYCOM`) diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst index 0ad596002a..7ac2cf6034 100644 --- a/doc/UsersGuide/source/Configurations.rst +++ b/doc/UsersGuide/source/Configurations.rst @@ -335,7 +335,7 @@ Each test file lists the input files required for a given test. Input files requ Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__. -Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. +Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. .. _lnd-documented: diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index b30a242867..4b54f0ae3c 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -120,7 +120,7 @@ Glossary NCEPLIBS The software libraries created and maintained by :term:`NCEP` that are required for running - :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in `spack-stack `__ and `HPC-Stack `__. + :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in `spack-stack `__ and `HPC-Stack `__. NCEPLIBS-external A collection of third-party libraries required to build :term:`NCEPLIBS`, :term:`chgres_cube`, @@ -167,7 +167,7 @@ Glossary The `Short-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. spack-stack - The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. + The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. Suite Definition File (SDF) An external file containing information about the diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index 534d173579..b3b7567fda 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -1639,7 +1639,7 @@ A sample of the file contents is shown below: However, ``ufs.configure`` files for other configurations of the Weather Model are more complex. A full set of ``ufs.configure`` templates is available in the ``ufs-weather-model/tests/parm/`` directory `here `__. Template names follow the pattern ``ufs.configure.*.IN``. A number of samples are available below: * `ATMAQ `__ configuration - * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) + * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) * `S2SW `__ (fully coupled ``S2SW`` configuration) * `S2SWA `__ (coupled GOCART in the S2SAW configuration) * `ATM-LND `__ (ATML configuration) diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index bbe458cf54..e7c00bd318 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -69,12 +69,9 @@ # The master toctree document. master_doc = 'index' -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# -# This is also used if you do content translation via gettext catalogs. -# Usually you set "language" from the command line for these cases. -language = None +# The language for content autogenerated by Sphinx. +# Not set because default is 'en'. +# language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -84,6 +81,15 @@ # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' +# Avoid a 403 Forbidden error when accessing certain links (e.g., noaa.gov) +user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" + +# Ignore anchor tags for links that show Not Found even when they exist. +linkcheck_anchors_ignore = [r"L\d*", + ] +# Ignore working links that cause a linkcheck 403 error. +linkcheck_ignore = [r'https://agupubs\.onlinelibrary\.wiley\.com/doi/10\.1029/2020MS002260', + ] # -- Options for HTML output ------------------------------------------------- @@ -100,6 +106,7 @@ # # html_theme_options = {} html_theme_options = {"body_max_width": "none"} +html_logo="https://github.com/ufs-community/ufs/wiki/images/ufs-epic-logo.png" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/doc/UsersGuide/source/references.bib b/doc/UsersGuide/source/references.bib index 92a6d96b98..0015b43304 100644 --- a/doc/UsersGuide/source/references.bib +++ b/doc/UsersGuide/source/references.bib @@ -16,6 +16,6 @@ @article{BengtssonEtAl2020 title={A Stochastic Parameterization of Organized Tropical Convection Using Cellular Automata for Global Forecasts in NOAA's Unified Forecast System}, author={L. Bengtsson and J. Dias and S. Tulich and M. Gehne and J. Bao}, journal={Journal of Advances in Modeling Earth Systems}, - url={https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020MS002260}, + url={https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020MS002260}, year={2020}, } diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 641bb1eb78..5ab7c2b923 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Feb 16 23:35:21 UTC 2024 +Thu Feb 22 20:53:25 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.838063 - 0: The maximum resident set size (KB) = 1310900 + 0: The total amount of wall time = 280.439468 + 0: The maximum resident set size (KB) = 1305520 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 901.459527 - 0: The maximum resident set size (KB) = 1284480 + 0: The total amount of wall time = 909.185427 + 0: The maximum resident set size (KB) = 1287316 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.691945 - 0: The maximum resident set size (KB) = 1279076 + 0: The total amount of wall time = 248.211050 + 0: The maximum resident set size (KB) = 1280512 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.381682 - 0: The maximum resident set size (KB) = 1281444 + 0: The total amount of wall time = 251.581934 + 0: The maximum resident set size (KB) = 1264336 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.909525 - 0: The maximum resident set size (KB) = 1280000 + 0: The total amount of wall time = 250.725287 + 0: The maximum resident set size (KB) = 1280612 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.556867 - 0: The maximum resident set size (KB) = 1284028 + 0: The total amount of wall time = 289.617565 + 0: The maximum resident set size (KB) = 1277316 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 261.471265 - 0: The maximum resident set size (KB) = 1280040 + 0: The total amount of wall time = 248.771012 + 0: The maximum resident set size (KB) = 1279892 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Feb 17 10:33:22 UTC 2024 -Elapsed time: 10h:58m:02s. Have a nice day! +Thu Feb 22 22:13:07 UTC 2024 +Elapsed time: 01h:19m:42s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 98e09e571e..92f9a7c5d4 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Feb 19 14:50:19 UTC 2024 +Fri Feb 23 14:47:29 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1252.713120 - 0: The maximum resident set size (KB) = 1390364 + 0: The total amount of wall time = 1267.233553 + 0: The maximum resident set size (KB) = 1405904 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 384.439726 - 0: The maximum resident set size (KB) = 1385248 + 0: The total amount of wall time = 391.689198 + 0: The maximum resident set size (KB) = 1402796 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 385.798138 - 0: The maximum resident set size (KB) = 1402428 + 0: The total amount of wall time = 387.349272 + 0: The maximum resident set size (KB) = 1402180 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Feb 19 15:48:40 UTC 2024 -Elapsed time: 00h:58m:22s. Have a nice day! +Fri Feb 23 16:15:36 UTC 2024 +Elapsed time: 01h:28m:07s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e5ae1412cf..b1caca193e 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Feb 19 14:05:32 UTC 2024 +Fri Feb 23 14:04:50 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 514.940897 - 0: The maximum resident set size (KB) = 588032 + 0: The total amount of wall time = 524.440233 + 0: The maximum resident set size (KB) = 589460 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 514.782298 - 0: The maximum resident set size (KB) = 587896 + 0: The total amount of wall time = 512.660107 + 0: The maximum resident set size (KB) = 590144 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +51,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 515.415577 - 0: The maximum resident set size (KB) = 587940 + 0: The total amount of wall time = 516.695763 + 0: The maximum resident set size (KB) = 591548 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Feb 19 14:42:44 UTC 2024 -Elapsed time: 00h:37m:13s. Have a nice day! +Fri Feb 23 14:41:20 UTC 2024 +Elapsed time: 00h:36m:30s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 197ca0d90c..92b2f84a32 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -681a70733ad51929905514527b6d5a497cd17776 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,263 +25,272 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_101438 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2497 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [28:47, 21:25] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:17, 05:02](3072 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:44, 23:00] -PASS -- TEST 'cpld_control_gfsv17_intel' [17:09, 13:52](1677 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:35, 15:18](1822 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:38, 07:19](950 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:52](1653 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:50, 11:12] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 21:46](1699 MB) - -PASS -- COMPILE 's2swa_intel' [40:42, 20:54] -PASS -- TEST 'cpld_control_p8_intel' [10:41, 05:44](3091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:55, 05:42](3090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:21](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 05:42](3122 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 03:26](3174 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:42, 05:38](3089 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:53, 04:44](3383 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:43](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:14, 09:04](3635 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:50, 05:56](3616 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 05:21](3065 MB) - -PASS -- COMPILE 's2sw_intel' [39:46, 20:20] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:18](1678 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:20](1722 MB) - -PASS -- COMPILE 's2swa_debug_intel' [30:46, 11:36] -PASS -- TEST 'cpld_debug_p8_intel' [11:40, 07:49](3151 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:33, 10:39] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 05:16](1703 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [34:51, 15:36] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 04:21](1732 MB) - -PASS -- COMPILE 's2s_intel' [34:51, 15:21] -PASS -- TEST 'cpld_control_c48_intel' [41:34, 06:37](2663 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [41:52, 21:02] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 14:09](1694 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:29](1016 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:06, 16:04](1669 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:21, 10:23] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 22:39](1707 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:22, 12:47] -PASS -- TEST 'control_flake_intel' [17:56, 03:28](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:10, 02:06](615 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:24, 02:12](1389 MB) -PASS -- TEST 'control_latlon_intel' [10:53, 02:10](616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:16, 02:11](615 MB) -PASS -- TEST 'control_c48_intel' [31:56, 05:15](731 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [31:55, 05:15](730 MB) -PASS -- TEST 'control_c192_intel' [22:39, 07:53](739 MB) -PASS -- TEST 'control_c384_intel' [17:18, 08:26](1052 MB) -PASS -- TEST 'control_c384gdas_intel' [20:31, 07:36](1194 MB) -PASS -- TEST 'control_stochy_intel' [15:53, 01:28](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:48, 00:56](434 MB) -PASS -- TEST 'control_lndp_intel' [16:04, 01:25](622 MB) -PASS -- TEST 'control_iovr4_intel' [17:21, 02:07](618 MB) -PASS -- TEST 'control_iovr5_intel' [17:22, 02:09](616 MB) -PASS -- TEST 'control_p8_intel' [14:03, 02:34](1594 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:50, 02:32](1601 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:57, 02:33](1599 MB) -PASS -- TEST 'control_restart_p8_intel' [03:34, 01:28](795 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:41, 02:33](1585 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:28](799 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:32, 02:37](1592 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:25, 04:24](1597 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 03:22](1655 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:37](1605 MB) -PASS -- TEST 'merra2_thompson_intel' [05:58, 03:05](1599 MB) -PASS -- TEST 'regional_control_intel' [06:23, 04:31](622 MB) -PASS -- TEST 'regional_restart_intel' [04:03, 02:31](796 MB) -PASS -- TEST 'regional_decomp_intel' [06:16, 04:45](1389 MB) -PASS -- TEST 'regional_noquilt_intel' [07:19, 04:26](1157 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:33](621 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:18, 04:34](626 MB) -PASS -- TEST 'regional_wofs_intel' [08:15, 05:41](1597 MB) - -PASS -- COMPILE 'rrfs_intel' [52:44, 11:44] -PASS -- TEST 'rap_control_intel' [08:15, 06:09](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:34, 03:58](1195 MB) -PASS -- TEST 'rap_decomp_intel' [09:14, 06:25](1007 MB) -PASS -- TEST 'rap_restart_intel' [05:15, 03:15](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:10, 06:11](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 06:23](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 04:36](883 MB) -PASS -- TEST 'hrrr_control_intel' [06:06, 03:15](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 03:20](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:53](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:48](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:03](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:40, 07:26](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:46, 07:10](1954 MB) - -PASS -- COMPILE 'csawmg_intel' [49:35, 10:52] -PASS -- TEST 'control_csawmg_intel' [07:15, 05:14](692 MB) -PASS -- TEST 'control_csawmgt_intel' [07:16, 05:10](687 MB) -PASS -- TEST 'control_ras_intel' [04:34, 02:56](656 MB) - -PASS -- COMPILE 'wam_intel' [48:44, 10:32] -PASS -- TEST 'control_wam_intel' [04:01, 01:59](384 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [51:37, 13:52] -PASS -- TEST 'control_p8_faster_intel' [04:42, 02:24](1594 MB) -PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](627 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [44:43, 09:40] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:26, 02:34](791 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:36](793 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:21, 02:55](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:37](800 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:49, 03:58](834 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:49, 03:59](833 MB) -PASS -- TEST 'control_ras_debug_intel' [06:19, 02:42](807 MB) -PASS -- TEST 'control_diag_debug_intel' [07:05, 02:45](854 MB) -PASS -- TEST 'control_debug_p8_intel' [06:48, 02:44](1624 MB) -PASS -- TEST 'regional_debug_intel' [18:52, 15:45](661 MB) -PASS -- TEST 'rap_control_debug_intel' [08:23, 04:44](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:26, 04:34](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 04:47](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 04:47](1175 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 04:50](1177 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:55, 04:57](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:19, 04:53](1178 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 04:43](1180 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:31, 04:45](1177 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 04:46](1176 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:24, 04:36](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 04:44](1176 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:19, 07:49](1178 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 04:37](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 05:36](1179 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:38](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 07:55](1180 MB) - -PASS -- COMPILE 'wam_debug_intel' [40:41, 06:21] -PASS -- TEST 'control_wam_debug_intel' [06:33, 04:38](416 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:33, 10:46] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:39](1056 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:22, 05:09](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:01, 02:47](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:00, 02:58](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 03:55](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:36](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:32, 12:46] -PASS -- TEST 'conus13km_control_intel' [04:51, 01:58](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:20, 01:04](1081 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:12, 01:11](973 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [38:31, 10:34] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:40](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [32:34, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:41, 04:39](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1389 MB) -PASS -- TEST 'conus13km_debug_intel' [16:55, 13:25](1130 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:49, 13:30](1196 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:22, 06:35] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 04:37](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [21:30, 16:57] -PASS -- TEST 'hafs_regional_atm_intel' [08:57, 04:41](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:27, 05:32](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:20, 06:33](772 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:00](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 12:10](805 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 04:46](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 05:53](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:26, 02:26](389 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:53, 06:33](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:34, 03:26](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:12, 03:10](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:56, 03:59](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:48, 01:20](426 MB) -PASS -- TEST 'gnv1_nested_intel' [05:27, 03:29](785 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:17] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:37, 12:14](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:21, 20:18] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:41, 07:13](628 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:28](677 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:29, 17:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:00, 05:26](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:28, 14:59] -PASS -- TEST 'hafs_regional_docn_intel' [09:30, 05:41](754 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:40, 05:44](737 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:24, 16:11](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:25, 08:31] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:30](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:35, 01:35](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:45, 02:21](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:23](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:47, 02:24](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:31](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:34, 02:32](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:43, 02:23](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:48, 05:43](685 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:28, 05:38](670 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:36, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:56](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:32, 04:00](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 05:55] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:00, 05:07](1389 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:52, 02:31](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:48] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:17](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:12](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:51, 00:50](455 MB) - -PASS -- COMPILE 'atml_intel' [14:24, 13:45] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 06:58](1622 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:28](1639 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:11, 03:33](842 MB) - -PASS -- COMPILE 'atmw_intel' [14:29, 13:41] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:37](1627 MB) - -PASS -- COMPILE 'atmwm_intel' [14:29, 13:16] -PASS -- TEST 'control_atmwav_intel' [03:08, 01:31](637 MB) - -PASS -- COMPILE 'atmaero_intel' [13:20, 12:17] -PASS -- TEST 'atmaero_control_p8_intel' [06:00, 03:44](2944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:19](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:34](3012 MB) - -PASS -- COMPILE 'atmaq_intel' [13:21, 11:52] +PASS -- COMPILE 's2swa_32bit_intel' [40:32, 22:08] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 05:04](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:32, 22:31] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:40, 13:55](1688 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:25](1825 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:37](953 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 15:51](1656 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:38, 12:02] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:15, 21:47](1694 MB) + +PASS -- COMPILE 's2swa_intel' [40:42, 21:36] +PASS -- TEST 'cpld_control_p8_intel' [09:30, 05:44](3089 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 05:43](3090 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:31](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 05:44](3120 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 03:31](3176 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3088 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 04:47](3383 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:42](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:28, 09:11](3632 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:35, 06:28](3612 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:52, 10:03](4342 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:48, 07:08](4646 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:53, 05:24](3062 MB) + +PASS -- COMPILE 's2sw_intel' [39:38, 20:47] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:16](1677 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:11, 04:21](1728 MB) + +PASS -- COMPILE 's2swa_debug_intel' [29:36, 11:36] +PASS -- TEST 'cpld_debug_p8_intel' [10:05, 07:45](3151 MB) + +PASS -- COMPILE 's2sw_debug_intel' [29:37, 11:01] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:54, 05:23](1696 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [34:39, 16:13] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:31, 04:25](1721 MB) + +PASS -- COMPILE 's2s_intel' [34:37, 15:58] +PASS -- TEST 'cpld_control_c48_intel' [08:25, 06:39](2663 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:47, 24:57] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:55, 05:44](3097 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:32, 21:20] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:17, 14:11](1697 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:45, 07:26](1012 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 16:11](1663 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:29, 10:38] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:48](1712 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:28, 13:56] +PASS -- TEST 'control_flake_intel' [04:50, 03:29](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:11](616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:08, 02:20](625 MB) +PASS -- TEST 'control_latlon_intel' [03:49, 02:11](622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:16](618 MB) +PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:56, 05:16](740 MB) +PASS -- TEST 'control_c192_intel' [11:04, 08:09](737 MB) +PASS -- TEST 'control_c384_intel' [15:41, 08:37](1064 MB) +PASS -- TEST 'control_c384gdas_intel' [18:32, 07:39](1198 MB) +PASS -- TEST 'control_stochy_intel' [02:44, 01:31](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:44, 00:58](436 MB) +PASS -- TEST 'control_lndp_intel' [02:45, 01:26](625 MB) +PASS -- TEST 'control_iovr4_intel' [03:56, 02:11](621 MB) +PASS -- TEST 'control_iovr5_intel' [03:47, 02:10](618 MB) +PASS -- TEST 'control_p8_intel' [04:51, 02:34](1602 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:38](1592 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:35](1602 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 01:32](801 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:02, 02:41](1595 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:27](805 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:42](1597 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 04:30](1600 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:58, 03:28](1658 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:37](1603 MB) +PASS -- TEST 'merra2_thompson_intel' [06:19, 03:07](1602 MB) +PASS -- TEST 'regional_control_intel' [06:36, 04:35](631 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:35](798 MB) +PASS -- TEST 'regional_decomp_intel' [06:35, 04:46](631 MB) +PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:26, 04:35](627 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:37](631 MB) +PASS -- TEST 'regional_wofs_intel' [07:22, 05:42](1600 MB) + +PASS -- COMPILE 'rrfs_intel' [13:28, 12:11] +PASS -- TEST 'rap_control_intel' [08:39, 06:08](999 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:27, 03:59](1188 MB) +PASS -- TEST 'rap_decomp_intel' [09:00, 06:33](1003 MB) +PASS -- TEST 'rap_restart_intel' [05:38, 03:18](876 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:57, 06:13](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:30](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:39](878 MB) +PASS -- TEST 'hrrr_control_intel' [05:51, 03:20](995 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:22](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:53, 02:53](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:59](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:05](996 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:30](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:12](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [12:28, 11:17] +PASS -- TEST 'control_csawmg_intel' [07:40, 05:20](691 MB) +PASS -- TEST 'control_csawmgt_intel' [07:36, 05:13](689 MB) +PASS -- TEST 'control_ras_intel' [04:48, 02:59](658 MB) + +PASS -- COMPILE 'wam_intel' [11:21, 10:39] +PASS -- TEST 'control_wam_intel' [03:37, 01:56](380 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:25, 13:43] +PASS -- TEST 'control_p8_faster_intel' [05:05, 02:29](1598 MB) +PASS -- TEST 'regional_control_faster_intel' [06:24, 04:20](628 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:30, 09:53] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:38](792 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:37](796 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](802 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:43](801 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:26, 03:57](838 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:32, 03:59](836 MB) +PASS -- TEST 'control_ras_debug_intel' [03:49, 02:44](803 MB) +PASS -- TEST 'control_diag_debug_intel' [05:12, 02:47](855 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 02:39](1624 MB) +PASS -- TEST 'regional_debug_intel' [17:27, 15:54](664 MB) +PASS -- TEST 'rap_control_debug_intel' [05:51, 04:51](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:50, 04:39](1402 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:50, 04:41](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:47](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:43, 04:43](1178 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:04, 05:00](1265 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:45, 04:49](1176 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:43, 04:53](1180 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:53, 04:48](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:52](1178 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:53, 04:43](1174 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 04:41](1179 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:46, 07:47](1179 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:38](1171 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:55, 05:28](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:41](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:27, 07:55](1179 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:25, 06:11] +PASS -- TEST 'control_wam_debug_intel' [15:41, 04:38](423 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 10:39] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:47](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:16, 05:11](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:05, 02:51](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:24, 02:57](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 03:53](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:44, 01:34](775 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 12:46] +PASS -- TEST 'conus13km_control_intel' [12:26, 01:55](1081 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:31, 01:03](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:02, 01:11](972 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:30, 10:57] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:14, 03:41](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:29, 07:05] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:57, 04:36](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:46, 04:26](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [23:36, 13:24](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:38, 13:31](820 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:25, 13:40](1385 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:25, 07:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:47, 04:41](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [18:24, 17:43] +PASS -- TEST 'hafs_regional_atm_intel' [13:08, 04:48](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:21, 05:23](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:26, 06:31](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:43, 11:00](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:02, 12:12](809 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:44, 04:45](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 05:54](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:29, 02:27](389 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:12, 06:26](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:14, 03:25](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:59, 03:12](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:43, 03:56](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:53, 01:19](428 MB) +PASS -- TEST 'gnv1_nested_intel' [12:33, 03:30](787 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:36, 12:02](610 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:32, 21:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:02, 07:18](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:17, 07:20](687 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:26, 18:27] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:20, 05:30](675 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:29, 15:50] +PASS -- TEST 'hafs_regional_docn_intel' [13:53, 05:46](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:53, 05:45](736 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 16:11](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:29, 09:04] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:08, 02:30](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [24:47, 01:35](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:36, 02:21](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:48, 02:23](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:40, 02:24](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:42, 02:31](1405 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:02, 02:30](1215 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:39, 02:20](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:19, 05:42](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:46, 05:42](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:07, 03:53](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 03:54](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:25, 06:17] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:06](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 08:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:31](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:23, 02:54] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:17](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:43, 01:12](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [21:57, 00:52](451 MB) + +PASS -- COMPILE 'atml_intel' [15:28, 14:18] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:47, 07:28](1624 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [32:45, 07:46](1628 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 04:50](853 MB) + +PASS -- COMPILE 'atmw_intel' [14:26, 14:00] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:19, 01:37](1635 MB) + +PASS -- COMPILE 'atmwm_intel' [14:26, 13:38] +PASS -- TEST 'control_atmwav_intel' [03:06, 01:33](635 MB) + +PASS -- COMPILE 'atmaero_intel' [13:25, 12:06] +PASS -- TEST 'atmaero_control_p8_intel' [27:09, 03:46](2946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [28:10, 04:24](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [28:34, 04:38](3013 MB) + +PASS -- COMPILE 'atmaq_intel' [36:34, 11:45] + +PASS -- COMPILE 'atmaq_debug_intel' [32:37, 07:22] +PASS -- TEST 'regional_atmaq_debug_intel' [39:42, 22:28](4531 MB) SYNOPSIS: -Starting Date/Time: 20240220 21:47:19 -Ending Date/Time: 20240220 23:47:50 -Total Time: 02h:02m:03s -Compiles Completed: 37/37 -Tests Completed: 170/170 +Starting Date/Time: 20240222 14:58:31 +Ending Date/Time: 20240222 17:18:46 +Total Time: 02h:21m:07s +Compiles Completed: 39/39 +Tests Completed: 175/175 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 49c76eba5f..593a36407a 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,277 +25,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/FV3_RT/rt_35653 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_55800 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:54] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:20, 05:14](3075 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:06] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:08, 13:20](1692 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:03, 14:05](1809 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 06:30](945 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 14:30](1662 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:08, 07:23] -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:07, 24:43](1698 MB) - -PASS -- COMPILE 's2swa_intel' [14:09, 12:34] -PASS -- TEST 'cpld_control_p8_intel' [08:15, 06:01](3098 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:23, 05:58](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:10, 03:33](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:59](3124 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 03:40](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:24](3410 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:56](3098 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:16, 05:02](3022 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:23, 06:00](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:07, 09:54](3271 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:47](3602 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 12:14](4036 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:10, 08:38](4347 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:15, 05:42](3068 MB) - -PASS -- COMPILE 's2sw_intel' [13:09, 11:54] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:23](1688 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:36](1732 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:08, 07:18] -PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:28](3129 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:08, 06:30] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:44](1698 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:09, 10:55] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1731 MB) - -PASS -- COMPILE 's2s_intel' [12:09, 10:53] -PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2659 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:52] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:52](3098 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:39] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:07, 14:41](1702 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:10](1001 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 17:03](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:08, 06:58] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:38](1711 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:09, 10:26] -PASS -- TEST 'control_flake_intel' [07:27, 03:28](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 02:19](617 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:33, 02:20](625 MB) -PASS -- TEST 'control_latlon_intel' [04:24, 02:18](620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:19](620 MB) -PASS -- TEST 'control_c48_intel' [07:35, 05:35](726 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:35](720 MB) -PASS -- TEST 'control_c192_intel' [12:33, 08:31](737 MB) -PASS -- TEST 'control_c384_intel' [19:54, 16:16](1039 MB) -PASS -- TEST 'control_c384gdas_intel' [18:39, 13:58](1182 MB) -PASS -- TEST 'control_stochy_intel' [04:24, 01:37](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:59](428 MB) -PASS -- TEST 'control_lndp_intel' [03:24, 01:31](626 MB) -PASS -- TEST 'control_iovr4_intel' [05:27, 02:20](620 MB) -PASS -- TEST 'control_iovr5_intel' [05:27, 02:19](620 MB) -PASS -- TEST 'control_p8_intel' [06:43, 02:44](1608 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 02:45](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 02:39](1610 MB) -PASS -- TEST 'control_restart_p8_intel' [03:40, 01:34](791 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:44, 02:41](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:32](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:43, 02:48](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:24](1680 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:39, 04:44](1608 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:38](1658 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:44](1614 MB) -PASS -- TEST 'merra2_thompson_intel' [05:44, 03:15](1615 MB) -PASS -- TEST 'regional_control_intel' [06:29, 04:36](619 MB) -PASS -- TEST 'regional_restart_intel' [04:26, 02:29](791 MB) -PASS -- TEST 'regional_decomp_intel' [06:29, 04:49](617 MB) -PASS -- TEST 'regional_2threads_intel' [04:29, 02:50](761 MB) -PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1156 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:36](618 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:39](619 MB) -PASS -- TEST 'regional_wofs_intel' [07:30, 05:59](1593 MB) - -PASS -- COMPILE 'rrfs_intel' [11:09, 09:31] -PASS -- TEST 'rap_control_intel' [08:37, 06:33](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:56](1177 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 06:32](1007 MB) -PASS -- TEST 'rap_2threads_intel' [07:40, 05:55](1093 MB) -PASS -- TEST 'rap_restart_intel' [05:37, 03:27](876 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:26](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:43](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:51](876 MB) -PASS -- TEST 'hrrr_control_intel' [05:38, 03:26](1003 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:29](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:00](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:54](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:27](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:42](1964 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:31](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [11:09, 09:08] -PASS -- TEST 'control_csawmg_intel' [07:30, 05:32](696 MB) -PASS -- TEST 'control_csawmgt_intel' [07:29, 05:28](693 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:07](658 MB) - -PASS -- COMPILE 'wam_intel' [10:09, 08:42] -PASS -- TEST 'control_wam_intel' [04:19, 02:09](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:55] -PASS -- TEST 'control_p8_faster_intel' [04:43, 02:39](1606 MB) -PASS -- TEST 'regional_control_faster_intel' [06:28, 04:24](613 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:30] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:25, 02:43](778 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:43](782 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:03](785 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:21] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:08, 05:13](3072 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:35] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:31](1696 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:19](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:59, 06:35](946 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:05, 14:34](1670 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:07, 07:32] +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:02, 24:05](1699 MB) + +PASS -- COMPILE 's2swa_intel' [14:09, 13:00] +PASS -- TEST 'cpld_control_p8_intel' [08:17, 06:01](3098 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:00](3098 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:09, 03:35](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:04](3122 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 03:38](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:17, 05:28](3411 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:17, 05:54](3097 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:03](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:59](3099 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:54](3271 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:58, 06:50](3599 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 12:11](4038 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 08:32](4346 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:47](3067 MB) + +PASS -- COMPILE 's2sw_intel' [14:09, 12:21] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:23](1691 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:38](1737 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:55] +PASS -- TEST 'cpld_debug_p8_intel' [11:06, 08:13](3130 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:07, 06:42] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:32](1700 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:20] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1727 MB) + +PASS -- COMPILE 's2s_intel' [13:08, 11:11] +PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2660 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:14] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:09, 05:57](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 18:02] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:14, 14:29](1704 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:03, 07:04](1003 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:05, 17:00](1684 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:14] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 26:52](1711 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:23] +PASS -- TEST 'control_flake_intel' [05:24, 03:34](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:19](619 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:26](627 MB) +PASS -- TEST 'control_latlon_intel' [04:24, 02:21](622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:25](623 MB) +PASS -- TEST 'control_c48_intel' [07:34, 05:41](722 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:38](721 MB) +PASS -- TEST 'control_c192_intel' [10:32, 08:40](739 MB) +PASS -- TEST 'control_c384_intel' [18:50, 16:15](1041 MB) +PASS -- TEST 'control_c384gdas_intel' [16:38, 14:03](1185 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:38](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](430 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:34](628 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:21](622 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:22](623 MB) +PASS -- TEST 'control_p8_intel' [04:53, 02:41](1606 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:45](1609 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:41](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [03:42, 01:35](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:53, 02:41](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:34](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:44, 02:43](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:43, 02:25](1679 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:43](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:33](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:47](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [05:45, 03:14](1616 MB) +PASS -- TEST 'regional_control_intel' [06:29, 04:34](615 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:29](789 MB) +PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](615 MB) +PASS -- TEST 'regional_2threads_intel' [04:27, 02:49](757 MB) +PASS -- TEST 'regional_noquilt_intel' [06:31, 04:29](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:33](614 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:33](615 MB) +PASS -- TEST 'regional_wofs_intel' [07:29, 05:54](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [11:08, 09:44] +PASS -- TEST 'rap_control_intel' [08:42, 06:33](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:57](1182 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 06:47](1009 MB) +PASS -- TEST 'rap_2threads_intel' [07:36, 05:52](1099 MB) +PASS -- TEST 'rap_restart_intel' [05:37, 03:28](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:24](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 06:42](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:38, 04:51](879 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 03:29](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:33](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:00](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:55](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:25](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:40](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 07:24](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [11:08, 09:25] +PASS -- TEST 'control_csawmg_intel' [07:28, 05:32](695 MB) +PASS -- TEST 'control_csawmgt_intel' [07:28, 05:29](693 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:08](657 MB) + +PASS -- COMPILE 'wam_intel' [10:08, 09:06] +PASS -- TEST 'control_wam_intel' [04:20, 02:09](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:10] +PASS -- TEST 'control_p8_faster_intel' [04:45, 02:40](1608 MB) +PASS -- TEST 'regional_control_faster_intel' [06:31, 04:25](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:07, 06:58] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:43](779 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:40](781 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:58](785 MB) PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](789 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:26, 04:03](823 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:08](823 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](796 MB) -PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](843 MB) -PASS -- TEST 'control_debug_p8_intel' [04:26, 02:51](1619 MB) -PASS -- TEST 'regional_debug_intel' [17:36, 16:12](632 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:55](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:57](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:53](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:57](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:00](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:06](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:00](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:06](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:01](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1165 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:47](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:55](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:50](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:59](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:25](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:07, 05:04] -PASS -- TEST 'control_wam_debug_intel' [06:20, 05:02](391 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:08, 08:49] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:46](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 05:29](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:57](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:00](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:38](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:05](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:09](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:39](765 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:26] -PASS -- TEST 'conus13km_control_intel' [04:02, 01:57](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:02](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 09:15] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:55](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 05:21] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:52](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:42](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [16:04, 13:31](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 13:44](802 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:07](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:53](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:53](1068 MB) - -PASS -- COMPILE 'hafsw_intel' [12:09, 11:06] -PASS -- TEST 'hafs_regional_atm_intel' [08:09, 05:16](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:27](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:38](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:09, 11:33](787 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:20, 12:56](795 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 05:14](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:16, 06:40](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 02:55](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 07:52](435 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:41](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:27](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:25](567 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:41](404 MB) -PASS -- TEST 'gnv1_nested_intel' [05:52, 03:53](771 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:08, 06:23] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:56, 13:15](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:24] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:40](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:41](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:27] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 06:00](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:42] -PASS -- TEST 'hafs_regional_docn_intel' [08:15, 05:58](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 06:03](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:10, 16:08](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:09, 09:41] +PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:07](825 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:05](826 MB) +PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](795 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:46](844 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 02:44](1619 MB) +PASS -- TEST 'regional_debug_intel' [18:35, 16:49](634 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:51](1167 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:41](1166 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:46](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:48](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:51](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:01](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:02](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:51](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:47](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:48](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:52](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:51](1167 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:45](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:43](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:54](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:14](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:08, 05:28] +PASS -- TEST 'control_wam_debug_intel' [08:22, 04:52](394 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:18] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 03:43](1054 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 05:27](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 02:58](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:44, 05:06](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:38, 02:37](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:08](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:37, 04:11](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:24, 01:44](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:35] +PASS -- TEST 'conus13km_control_intel' [04:03, 01:57](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:43, 01:05](1075 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:43, 01:17](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:11] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:52](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:11] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:48](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:09, 14:01](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:44](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:50, 07:57](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 14:01](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:48](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [13:08, 11:35] +PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:15](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 04:32](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:20, 06:46](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:09, 11:42](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 12:46](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:20](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:19, 06:42](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:54, 03:04](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:10, 07:55](434 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:50, 03:45](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:58, 03:32](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 04:38](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:49](405 MB) +PASS -- TEST 'gnv1_nested_intel' [07:55, 03:59](765 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:07, 06:31] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:01](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 07:37](610 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:45](780 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 12:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 06:02](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:08, 11:04] +PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:06](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:03](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:09, 16:10](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:58] PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:30](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:30](745 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:21](637 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:31](745 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](636 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](636 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:22](637 MB) PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:19](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:53, 05:49](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 05:48](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:38](2014 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:29](755 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:19](636 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 05:49](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 05:45](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:29](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2013 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:38](2015 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:08, 05:36] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:23](739 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:17] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:23](741 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 10:02] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:28](744 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:09, 10:04] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:27](756 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:01] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:16](319 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:07](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:52](456 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:58] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:17](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:08](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:53](456 MB) -PASS -- COMPILE 'atml_intel' [13:08, 11:22] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:04, 06:15](1642 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:16](1642 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:29](837 MB) +PASS -- COMPILE 'atml_intel' [12:09, 10:47] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:08, 06:14](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:06, 06:20](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:27](836 MB) -PASS -- COMPILE 'atmw_intel' [12:08, 10:20] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:43](1648 MB) +PASS -- COMPILE 'atmw_intel' [12:09, 10:15] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:43](1649 MB) -PASS -- COMPILE 'atmwm_intel' [11:08, 10:01] -PASS -- TEST 'control_atmwav_intel' [03:34, 01:39](638 MB) +PASS -- COMPILE 'atmwm_intel' [12:09, 10:20] +PASS -- TEST 'control_atmwav_intel' [03:36, 01:38](640 MB) -PASS -- COMPILE 'atmaero_intel' [11:09, 09:29] -PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:24](2942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:52](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 05:01](3018 MB) +PASS -- COMPILE 'atmaero_intel' [11:09, 09:45] +PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:14](2944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:51](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:09](3019 MB) -PASS -- COMPILE 'atmaq_intel' [11:08, 09:35] +PASS -- COMPILE 'atmaq_intel' [11:08, 09:40] -PASS -- COMPILE 'atmaq_debug_intel' [07:07, 05:51] -PASS -- TEST 'regional_atmaq_debug_intel' [21:11, 18:21](4483 MB) +PASS -- COMPILE 'atmaq_debug_intel' [07:08, 05:38] +PASS -- TEST 'regional_atmaq_debug_intel' [21:13, 18:12](4480 MB) SYNOPSIS: -Starting Date/Time: 20240219 09:48:12 -Ending Date/Time: 20240219 11:12:09 -Total Time: 01h:24m:16s +Starting Date/Time: 20240222 16:32:44 +Ending Date/Time: 20240222 17:55:46 +Total Time: 01h:23m:24s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 646ee765d0..b4ddf7103f 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +ffc1413d43ff54ebdbba9d04e8ab95109225f0b1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,366 +25,366 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_5902 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_29067 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:14](3105 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:39] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 16:10](1756 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 16:55](2008 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:10, 07:35](1086 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:10](1596 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:27] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:59, 22:19](1661 MB) - -PASS -- COMPILE 's2swa_intel' [14:07, 12:17] -PASS -- TEST 'cpld_control_p8_intel' [08:15, 05:38](3187 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:38](3192 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:28, 03:20](3221 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:38](3175 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:28, 03:25](3256 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:26](3498 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:10, 05:40](3150 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:39](3026 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 05:43](3148 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:09, 09:43](3316 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:45, 06:05](3571 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:59](4120 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:57, 06:38](4342 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:28](3114 MB) - -PASS -- COMPILE 's2sw_intel' [13:07, 11:41] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:53, 04:28](1728 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:29](1731 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:35] -PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:04](3171 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:48] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:39](1709 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:07, 10:50] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:31](1716 MB) - -PASS -- COMPILE 's2s_intel' [12:07, 10:38] -PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:18](2816 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:00] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:16](3208 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:03] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:16](1753 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 07:40](1142 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:00, 18:35](1663 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:52] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:56, 24:45](1701 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:33] -PASS -- TEST 'control_flake_intel' [06:21, 03:17](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:23](617 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:29](644 MB) -PASS -- TEST 'control_latlon_intel' [04:21, 02:24](647 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:27, 02:27](650 MB) -PASS -- TEST 'control_c48_intel' [08:22, 06:12](873 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:15](874 MB) -PASS -- TEST 'control_c192_intel' [11:35, 09:00](844 MB) -PASS -- TEST 'control_c384_intel' [12:21, 09:07](1283 MB) -PASS -- TEST 'control_c384gdas_intel' [12:42, 08:03](1368 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:37](652 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:00](496 MB) -PASS -- TEST 'control_lndp_intel' [03:18, 01:33](617 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:25](641 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:27](616 MB) -PASS -- TEST 'control_p8_intel' [05:01, 02:58](1616 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:05, 02:56](1591 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:02, 02:50](1602 MB) -PASS -- TEST 'control_restart_p8_intel' [03:47, 01:36](886 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:55](1586 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:35](895 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:52, 02:57](1597 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:51, 02:46](1707 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:09](1616 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:48](1670 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:00](1605 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:28](1600 MB) -PASS -- TEST 'regional_control_intel' [07:38, 05:03](849 MB) -PASS -- TEST 'regional_restart_intel' [04:33, 02:40](1007 MB) -PASS -- TEST 'regional_decomp_intel' [07:36, 05:24](817 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 03:12](839 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:05](1360 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](845 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:05](847 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 06:37](1905 MB) - -PASS -- COMPILE 'rrfs_intel' [11:07, 09:55] -PASS -- TEST 'rap_control_intel' [09:42, 07:40](1065 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:07](1274 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:02](991 MB) -PASS -- TEST 'rap_2threads_intel' [09:35, 07:11](1176 MB) -PASS -- TEST 'rap_restart_intel' [05:36, 04:00](1076 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:37](1094 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:02](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:46](1111 MB) -PASS -- TEST 'hrrr_control_intel' [05:34, 03:56](1030 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:03](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:36](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:08](1000 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:34](1059 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:00](1991 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:53](2029 MB) - -PASS -- COMPILE 'csawmg_intel' [11:07, 09:24] -PASS -- TEST 'control_csawmg_intel' [07:38, 05:47](709 MB) -PASS -- TEST 'control_csawmgt_intel' [07:37, 05:47](734 MB) -PASS -- TEST 'control_ras_intel' [05:18, 03:15](712 MB) - -PASS -- COMPILE 'wam_intel' [11:07, 09:04] -PASS -- TEST 'control_wam_intel' [04:16, 02:00](656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 10:15] -PASS -- TEST 'control_p8_faster_intel' [04:49, 02:36](1601 MB) -PASS -- TEST 'regional_control_faster_intel' [06:36, 04:37](852 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:38](794 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](802 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:59](788 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:40](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:00](829 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:00](858 MB) -PASS -- TEST 'control_ras_debug_intel' [04:18, 02:42](788 MB) -PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](864 MB) -PASS -- TEST 'control_debug_p8_intel' [04:41, 02:48](1574 MB) -PASS -- TEST 'regional_debug_intel' [18:43, 16:10](837 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:46](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:40](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:41](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:47](1202 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:41](1196 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:05](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:51](1181 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:53](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:48](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:42](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:36](1188 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:47](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:45](1193 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:46](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 06:01](1200 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:47](1196 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:09](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 02:57] -PASS -- TEST 'control_wam_debug_intel' [07:17, 04:43](514 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:13] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 03:53](1127 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:18](1034 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 03:22](978 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:29, 05:59](1084 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:30, 03:05](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:32](900 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 04:47](1010 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:51](927 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:07, 11:22] -PASS -- TEST 'conus13km_control_intel' [04:51, 02:02](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:51](1112 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:11](1068 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:20] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:36, 04:12](954 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:20, 04:39](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:18, 04:38](1071 MB) -PASS -- TEST 'conus13km_debug_intel' [16:45, 13:49](1219 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 13:59](895 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 07:45](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 13:39](1284 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 04:45](1116 MB) - -PASS -- COMPILE 'hafsw_intel' [12:06, 10:47] -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:51](730 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:01](1086 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 06:55](826 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:03](839 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:45](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:22](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:25](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:33](349 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:06, 07:09](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:36](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:29](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:25, 01:11](404 MB) -PASS -- TEST 'gnv1_nested_intel' [07:43, 03:55](796 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:27] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 12:17](545 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:47] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 08:35](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:32](700 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:07, 11:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 06:18](663 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:06, 10:18] -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:17](800 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:18](803 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:11](1205 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:10] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:39](1113 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:39](1073 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:37](997 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:35](1005 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:57](982 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:38](1127 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:37](1122 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:33](1008 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:28](1045 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:39](1040 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1121 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:51](2464 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:54](2480 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:46] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:08](1044 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 05:57] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1116 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:59] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:44](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:44](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:34](312 MB) - -PASS -- COMPILE 'atml_intel' [12:07, 10:54] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:15](1581 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:12](1586 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:16](877 MB) - -PASS -- COMPILE 'atmw_intel' [11:07, 09:58] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:45](1646 MB) - -PASS -- COMPILE 'atmwm_intel' [12:07, 10:04] -PASS -- TEST 'control_atmwav_intel' [03:29, 01:41](628 MB) - -PASS -- COMPILE 'atmaero_intel' [11:06, 09:50] -PASS -- TEST 'atmaero_control_p8_intel' [06:02, 03:56](2976 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:42](3036 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:00](3068 MB) - -PASS -- COMPILE 'atmaq_intel' [11:06, 09:32] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11] -PASS -- TEST 'regional_atmaq_debug_intel' [23:51, 20:27](4341 MB) - -PASS -- COMPILE 'atm_gnu' [05:06, 03:23] -PASS -- TEST 'control_c48_gnu' [13:23, 11:36](792 MB) -PASS -- TEST 'control_stochy_gnu' [05:17, 04:02](552 MB) -PASS -- TEST 'control_ras_gnu' [06:17, 04:53](560 MB) -PASS -- TEST 'control_p8_gnu' [06:56, 04:54](1300 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:40](1304 MB) -PASS -- TEST 'control_flake_gnu' [07:19, 05:51](592 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:06, 03:27] -PASS -- TEST 'rap_control_gnu' [13:30, 11:36](895 MB) -PASS -- TEST 'rap_decomp_gnu' [13:31, 11:39](894 MB) -PASS -- TEST 'rap_2threads_gnu' [12:37, 10:27](974 MB) -PASS -- TEST 'rap_restart_gnu' [08:38, 06:04](623 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:34](894 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:54](894 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:38, 08:56](629 MB) -PASS -- TEST 'hrrr_control_gnu' [07:35, 05:57](889 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:59](878 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:27, 05:14](974 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:28, 05:56](892 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:24, 03:14](609 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:11](706 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:38, 11:15](888 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21] -PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](584 MB) -PASS -- TEST 'regional_debug_gnu' [09:36, 07:37](593 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:28](905 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:32](899 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:16, 02:31](906 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:34](904 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:44](987 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:59](896 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:33](901 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:35](898 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:31](537 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:47](536 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:36](1287 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:33](907 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:46](908 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 04:04](909 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:40] -PASS -- TEST 'control_wam_debug_gnu' [04:15, 02:24](239 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:05, 03:24] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:27, 11:47](754 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:25, 06:05](746 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:36, 10:35](803 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:29, 05:17](805 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:28, 06:01](746 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:34, 08:47](596 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 03:19](579 MB) -PASS -- TEST 'conus13km_control_gnu' [07:52, 04:12](897 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:38, 01:49](936 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:16](595 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:37, 06:54](777 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:19, 02:29](774 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:17, 02:28](768 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:43, 07:11](911 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:42, 07:04](634 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:39, 04:22](956 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:38, 07:07](977 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:19] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:33](789 MB) - -PASS -- COMPILE 's2swa_gnu' [15:07, 14:03] -PASS -- TEST 'cpld_control_p8_gnu' [13:09, 10:59](1505 MB) - -PASS -- COMPILE 's2s_gnu' [15:07, 13:41] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:00, 06:34](1402 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:21] -PASS -- TEST 'cpld_debug_p8_gnu' [09:01, 06:09](1520 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:07, 13:53] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:56, 22:02](1375 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:08] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:52, 13:06](1390 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:26] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:13, 03:03](692 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:07] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:16](3153 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:03] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 16:14](1735 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 16:51](2001 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:05](1092 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:12, 18:23](1630 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:08, 04:18] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:12, 22:24](1689 MB) + +PASS -- COMPILE 's2swa_intel' [14:09, 12:06] +PASS -- TEST 'cpld_control_p8_intel' [08:22, 05:43](3183 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:36, 05:41](3194 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:44, 03:28](3199 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:47](3161 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:43, 03:28](3275 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:19, 05:29](3491 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:39](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:37](3049 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 05:42](3191 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 09:48](3327 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:42, 05:58](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:55, 09:51](4059 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:01, 07:25](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:17](3157 MB) + +PASS -- COMPILE 's2sw_intel' [13:09, 11:23] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:30](1716 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:28](1743 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:08, 04:17] +PASS -- TEST 'cpld_debug_p8_intel' [11:17, 08:13](3209 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:14] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:36](1741 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:43] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:27](1764 MB) + +PASS -- COMPILE 's2s_intel' [13:10, 10:59] +PASS -- TEST 'cpld_control_c48_intel' [11:47, 09:25](2808 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:45] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:23, 05:22](3183 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:08, 14:47] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:16, 16:23](1727 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:17](1152 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:20](1656 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:10] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:36](1703 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:21] +PASS -- TEST 'control_flake_intel' [05:24, 03:20](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](646 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:30](653 MB) +PASS -- TEST 'control_latlon_intel' [04:23, 02:28](619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:28](640 MB) +PASS -- TEST 'control_c48_intel' [08:32, 06:14](874 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 06:17](871 MB) +PASS -- TEST 'control_c192_intel' [11:40, 09:10](820 MB) +PASS -- TEST 'control_c384_intel' [13:43, 09:12](1261 MB) +PASS -- TEST 'control_c384gdas_intel' [14:05, 08:11](1383 MB) +PASS -- TEST 'control_stochy_intel' [03:18, 01:38](650 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:34, 00:59](504 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:36](651 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:27](642 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:27](646 MB) +PASS -- TEST 'control_p8_intel' [07:04, 03:04](1624 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:08, 03:05](1616 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:09, 03:06](1620 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:40](880 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:08, 03:04](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:39](926 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:07, 03:07](1597 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:04, 02:50](1685 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:07, 05:14](1616 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:10, 03:51](1681 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:13, 02:59](1626 MB) +PASS -- TEST 'merra2_thompson_intel' [05:54, 03:27](1633 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:17](846 MB) +PASS -- TEST 'regional_restart_intel' [05:45, 02:44](986 MB) +PASS -- TEST 'regional_decomp_intel' [07:40, 05:31](839 MB) +PASS -- TEST 'regional_2threads_intel' [05:43, 03:18](846 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:13](1338 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:13](848 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:14](846 MB) +PASS -- TEST 'regional_wofs_intel' [08:43, 06:40](1890 MB) + +PASS -- COMPILE 'rrfs_intel' [11:08, 09:54] +PASS -- TEST 'rap_control_intel' [09:47, 07:43](1104 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:12, 04:09](1275 MB) +PASS -- TEST 'rap_decomp_intel' [10:36, 08:03](1024 MB) +PASS -- TEST 'rap_2threads_intel' [09:43, 07:16](1188 MB) +PASS -- TEST 'rap_restart_intel' [05:43, 04:00](1087 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1103 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:03](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 06:21](1098 MB) +PASS -- TEST 'hrrr_control_intel' [06:42, 03:58](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 04:05](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:38, 03:39](1100 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:09](984 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:47, 07:34](1106 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:29, 09:06](1981 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:54, 09:02](2060 MB) + +PASS -- COMPILE 'csawmg_intel' [11:07, 09:37] +PASS -- TEST 'control_csawmg_intel' [08:41, 05:54](733 MB) +PASS -- TEST 'control_csawmgt_intel' [07:41, 05:43](742 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:18](732 MB) + +PASS -- COMPILE 'wam_intel' [11:08, 09:17] +PASS -- TEST 'control_wam_intel' [04:20, 02:03](627 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:08, 09:50] +PASS -- TEST 'control_p8_faster_intel' [05:07, 02:39](1589 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:40](841 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:31] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:40](800 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](809 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:59](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:20, 02:42](790 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 03:59](844 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:38, 03:57](853 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:40](792 MB) +PASS -- TEST 'control_diag_debug_intel' [04:27, 02:49](868 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:50](1638 MB) +PASS -- TEST 'regional_debug_intel' [18:43, 16:31](841 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:46](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:34](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:27](1200 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 05:28](1193 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 05:14](1186 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:03, 05:39](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:01](1194 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:13](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:01](1196 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:55](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:00](1164 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:01](1176 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:58](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:16](1174 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:04](1172 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:09](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:28](1197 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:08, 03:09] +PASS -- TEST 'control_wam_debug_intel' [06:20, 04:52](477 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:12] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:30](1149 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:57](1011 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:59](958 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:36](1075 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:08](953 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:33](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 05:00](1044 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:51](911 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:44] +PASS -- TEST 'conus13km_control_intel' [03:51, 02:02](1180 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:37, 00:54](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](1101 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:24] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:17](954 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:25] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:43](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1073 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 13:56](1216 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 13:45](911 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:48](1143 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:50](1293 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:07] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:49](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 10:55] +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:51](734 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 05:48](1101 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:46](806 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:02](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:24, 14:44](845 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 05:20](473 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:21, 06:30](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:45](351 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:06](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:40](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:26](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:10](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:18](404 MB) +PASS -- TEST 'gnv1_nested_intel' [05:45, 03:59](802 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:08, 04:02] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 12:16](538 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 08:26](647 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:28](696 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 11:20] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:05, 06:17](664 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:09, 10:30] +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:16](819 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:12](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:15](1218 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:08, 06:03] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:41](1134 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:39](1058 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:36](1011 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:30](992 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:36](1002 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:43](1104 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1113 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1001 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 06:55](1055 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:13](1029 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:38](1127 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:54](2421 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2411 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:01] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:58](1046 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:08, 05:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:38](1129 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:09, 01:01] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:44](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:47](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:20, 00:31](316 MB) + +PASS -- COMPILE 'atml_intel' [12:09, 10:53] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 04:15](1584 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 04:08](1606 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 02:14](887 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:08] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:42](1647 MB) + +PASS -- COMPILE 'atmwm_intel' [12:15, 10:06] +PASS -- TEST 'control_atmwav_intel' [06:34, 01:39](638 MB) + +PASS -- COMPILE 'atmaero_intel' [11:09, 09:50] +PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:56](2967 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:57, 04:44](3080 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:44, 05:03](3061 MB) + +PASS -- COMPILE 'atmaq_intel' [11:08, 09:26] + +PASS -- COMPILE 'atmaq_debug_intel' [06:09, 03:34] +PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 19:58](4345 MB) + +PASS -- COMPILE 'atm_gnu' [06:09, 03:30] +PASS -- TEST 'control_c48_gnu' [13:26, 11:41](790 MB) +PASS -- TEST 'control_stochy_gnu' [06:18, 03:54](548 MB) +PASS -- TEST 'control_ras_gnu' [07:18, 04:53](555 MB) +PASS -- TEST 'control_p8_gnu' [06:57, 04:50](1301 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:44](1304 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 05:52](596 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:06, 03:31] +PASS -- TEST 'rap_control_gnu' [13:33, 11:37](900 MB) +PASS -- TEST 'rap_decomp_gnu' [14:34, 12:01](894 MB) +PASS -- TEST 'rap_2threads_gnu' [12:41, 10:30](974 MB) +PASS -- TEST 'rap_restart_gnu' [08:38, 06:03](626 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:36](895 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:34, 11:55](894 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:43](620 MB) +PASS -- TEST 'hrrr_control_gnu' [07:32, 06:00](889 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:56](879 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:33, 05:24](969 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [08:32, 05:58](889 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:22, 03:13](608 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:13](704 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [15:42, 11:28](898 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:07, 03:17] +PASS -- TEST 'control_diag_debug_gnu' [05:26, 01:42](588 MB) +PASS -- TEST 'regional_debug_gnu' [09:38, 07:33](593 MB) +PASS -- TEST 'rap_control_debug_gnu' [05:22, 02:43](907 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:18, 02:38](901 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:18, 02:40](903 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:36](903 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:45](991 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 03:52](904 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:27](904 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:31](900 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](541 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:26, 02:13](528 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:41](1286 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:32](905 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:49](908 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:07](907 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:05, 01:40] +PASS -- TEST 'control_wam_debug_gnu' [05:17, 02:27](238 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 04:00] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:31, 11:42](751 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:31, 06:07](747 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:38, 10:40](803 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:33, 05:20](802 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:31, 06:05](745 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [15:48, 09:17](595 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:23, 03:18](579 MB) +PASS -- TEST 'conus13km_control_gnu' [06:54, 04:10](896 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:52, 01:55](930 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:52, 02:17](597 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:10, 05:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:54](778 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:09, 03:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:32](760 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:31](753 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:45, 07:15](915 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:58, 07:10](634 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:45, 04:19](949 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:59](982 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:33](786 MB) + +PASS -- COMPILE 's2swa_gnu' [15:10, 13:52] +PASS -- TEST 'cpld_control_p8_gnu' [14:16, 11:04](1506 MB) + +PASS -- COMPILE 's2s_gnu' [15:08, 13:51] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:07, 06:30](1405 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:59] +PASS -- TEST 'cpld_debug_p8_gnu' [08:01, 06:03](1513 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 14:03] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:01, 22:28](1376 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:49] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:55, 12:58](1388 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:08, 13:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:57](695 MB) SYNOPSIS: -Starting Date/Time: 20240219 14:20:19 -Ending Date/Time: 20240219 15:59:27 -Total Time: 01h:39m:36s +Starting Date/Time: 20240222 18:39:16 +Ending Date/Time: 20240222 20:22:06 +Total Time: 01h:43m:23s Compiles Completed: 53/53 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 166dd6458a..2520164ea8 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +ffc1413d43ff54ebdbba9d04e8ab95109225f0b1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,357 +25,357 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1846065 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2262511 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:13] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:28](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:06, 17:57] -PASS -- TEST 'cpld_control_gfsv17_intel' [26:06, 13:24](1767 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:19, 14:00](2184 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 06:36](1184 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:45, 15:08](1695 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:35] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:13, 20:12](1734 MB) - -PASS -- COMPILE 's2swa_intel' [14:06, 12:27] -PASS -- TEST 'cpld_control_p8_intel' [09:52, 07:33](2091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 07:41](2060 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:05, 04:18](1971 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:53, 07:37](1985 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:04, 04:16](1744 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:59](2496 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 07:28](2074 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:23](1886 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 07:29](2095 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:32, 15:37](2815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 05:51](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 08:49](3623 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:33, 06:09](3612 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:44, 04:59](2029 MB) - -PASS -- COMPILE 's2sw_intel' [13:05, 11:47] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:42, 07:09](1773 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:53, 03:52](1817 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:05, 06:17] -PASS -- TEST 'cpld_debug_p8_intel' [09:00, 06:49](2064 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:05, 06:05] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:38](1792 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:59] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:57](1825 MB) - -PASS -- COMPILE 's2s_intel' [11:05, 09:56] -PASS -- TEST 'cpld_control_c48_intel' [09:34, 07:13](2839 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:06, 14:01] -PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 07:18](2065 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:07, 15:40] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:52, 14:00](1811 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:42](1296 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:27](1726 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:05] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:53, 21:14](1781 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:31] -PASS -- TEST 'control_flake_intel' [18:17, 02:50](728 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:18, 02:04](674 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:25, 02:18](677 MB) -PASS -- TEST 'control_latlon_intel' [18:17, 02:09](671 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:22, 02:11](667 MB) -PASS -- TEST 'control_c48_intel' [21:22, 05:45](859 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [21:20, 05:46](861 MB) -PASS -- TEST 'control_c192_intel' [21:26, 07:52](972 MB) -PASS -- TEST 'control_c384_intel' [16:11, 08:14](1462 MB) -PASS -- TEST 'control_c384gdas_intel' [21:49, 07:18](1532 MB) -PASS -- TEST 'control_stochy_intel' [15:17, 01:26](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [13:24, 00:58](545 MB) -PASS -- TEST 'control_lndp_intel' [17:20, 01:21](678 MB) -PASS -- TEST 'control_iovr4_intel' [17:19, 02:04](667 MB) -PASS -- TEST 'control_iovr5_intel' [16:21, 02:05](667 MB) -PASS -- TEST 'control_p8_intel' [13:47, 02:35](1635 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:48, 02:33](1644 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:52, 02:25](1652 MB) -PASS -- TEST 'control_restart_p8_intel' [09:44, 01:30](917 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:39, 02:27](1637 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 01:29](980 MB) -PASS -- TEST 'control_decomp_p8_intel' [14:42, 02:32](1628 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:37, 02:20](1738 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:34, 04:22](1648 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [17:55, 03:32](1712 MB) -PASS -- TEST 'control_p8_mynn_intel' [15:51, 02:38](1657 MB) -PASS -- TEST 'merra2_thompson_intel' [14:56, 03:03](1655 MB) -PASS -- TEST 'regional_control_intel' [11:28, 04:27](958 MB) -PASS -- TEST 'regional_restart_intel' [04:23, 02:35](1097 MB) -PASS -- TEST 'regional_decomp_intel' [11:27, 04:42](948 MB) -PASS -- TEST 'regional_2threads_intel' [09:27, 02:50](924 MB) -PASS -- TEST 'regional_noquilt_intel' [10:30, 04:20](1491 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:31, 04:27](959 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:26, 04:28](961 MB) -PASS -- TEST 'regional_wofs_intel' [11:25, 05:31](2096 MB) - -PASS -- COMPILE 'rrfs_intel' [09:05, 07:07] -PASS -- TEST 'rap_control_intel' [15:35, 06:39](1200 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:42, 03:45](1399 MB) -PASS -- TEST 'rap_decomp_intel' [14:33, 07:00](1143 MB) -PASS -- TEST 'rap_2threads_intel' [13:47, 06:20](1359 MB) -PASS -- TEST 'rap_restart_intel' [05:47, 03:26](1146 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:45, 06:43](1197 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:45, 06:57](1144 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:52](1195 MB) -PASS -- TEST 'hrrr_control_intel' [10:30, 03:25](1076 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:29](1058 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:43, 03:04](1120 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:47](1028 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:50, 06:25](1203 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:20, 07:39](2005 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:22](2174 MB) - -PASS -- COMPILE 'csawmg_intel' [08:05, 06:54] -PASS -- TEST 'control_csawmg_intel' [07:22, 05:06](808 MB) -PASS -- TEST 'control_csawmgt_intel' [07:24, 05:05](824 MB) -PASS -- TEST 'control_ras_intel' [04:12, 02:54](802 MB) - -PASS -- COMPILE 'wam_intel' [07:05, 05:58] -PASS -- TEST 'control_wam_intel' [03:18, 01:50](789 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:07, 09:20] -PASS -- TEST 'control_p8_faster_intel' [04:49, 02:17](1634 MB) -PASS -- TEST 'regional_control_faster_intel' [06:25, 04:10](956 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:34] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:18](834 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:15](828 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](837 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:16](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:28, 03:22](879 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:27, 03:18](873 MB) -PASS -- TEST 'control_ras_debug_intel' [04:15, 02:15](836 MB) -PASS -- TEST 'control_diag_debug_intel' [04:20, 02:16](885 MB) -PASS -- TEST 'control_debug_p8_intel' [04:28, 02:20](1657 MB) -PASS -- TEST 'regional_debug_intel' [16:24, 14:03](898 MB) -PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:58](1226 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:58](1221 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 04:01](1220 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:08](1304 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:03](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:02](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:15, 04:03](1224 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:00](1222 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:50](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:58](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:35](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:57](1210 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:11](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:59](1211 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:48](1214 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 02:46] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 06:58] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 03:14](1305 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:25](1142 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 02:53](1025 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:05](1289 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:37](1042 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:01](998 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 04:03](1098 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:33](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 09:28] -PASS -- TEST 'conus13km_control_intel' [03:45, 01:42](1302 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:44](1201 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:04](1156 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 07:06] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 03:40](1075 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:09] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:53](1107 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:52](1093 MB) -PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1342 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:44](1023 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:39](1244 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:26, 11:34](1397 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:03] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 04:02](1147 MB) - -PASS -- COMPILE 'hafsw_intel' [12:05, 10:00] -PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:15](874 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1278 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:06, 06:18](968 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:59, 13:41](983 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 14:51](1012 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:23](605 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:46](616 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:47](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:57, 07:40](581 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:48](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:36](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:46](677 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:25](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:05, 03:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:17](638 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:06, 10:42] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:47, 17:00](761 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:49, 17:18](852 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:52, 10:33](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:06, 10:02] -PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:23](950 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:59, 05:21](945 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:26](1349 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:06, 06:00] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:05](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:21](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1024 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:05](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:05](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:09](1143 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 04:53](1161 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:55, 04:48](1151 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:58](2434 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 02:59](2378 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:06, 03:39] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:05](1066 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 06:11] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:51] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:49](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:47](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:33](558 MB) - -PASS -- COMPILE 'atml_intel' [09:06, 07:46] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:02, 05:52](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 05:40](1641 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:50](956 MB) - -PASS -- COMPILE 'atmw_intel' [15:06, 09:02] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:29](1700 MB) - -PASS -- COMPILE 'atmwm_intel' [14:05, 08:57] -PASS -- TEST 'control_atmwav_intel' [03:39, 01:27](699 MB) - -PASS -- COMPILE 'atmaero_intel' [11:05, 06:47] -PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:34](1790 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:16](1809 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:29](1830 MB) - -PASS -- COMPILE 'atmaq_intel' [08:06, 06:52] - -PASS -- COMPILE 'atmaq_debug_intel' [07:05, 02:40] -PASS -- TEST 'regional_atmaq_debug_intel' [19:18, 16:33](4570 MB) - -PASS -- COMPILE 'atm_gnu' [08:06, 03:40] -PASS -- TEST 'control_c48_gnu' [11:27, 09:30](859 MB) -PASS -- TEST 'control_stochy_gnu' [04:18, 02:13](726 MB) -PASS -- TEST 'control_ras_gnu' [05:15, 03:41](732 MB) -PASS -- TEST 'control_p8_gnu' [05:46, 03:38](1512 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:27](1508 MB) -PASS -- TEST 'control_flake_gnu' [06:14, 04:27](791 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:06, 03:41] -PASS -- TEST 'rap_control_gnu' [09:41, 07:38](1088 MB) -PASS -- TEST 'rap_decomp_gnu' [09:37, 07:48](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [09:29, 07:11](1128 MB) -PASS -- TEST 'rap_restart_gnu' [05:34, 03:51](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 07:59](1096 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:46, 05:40](884 MB) -PASS -- TEST 'hrrr_control_gnu' [06:32, 04:09](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 04:05](1143 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 03:39](1026 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:45, 03:59](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:01](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:16, 02:00](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:38](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:06, 03:45] -PASS -- TEST 'control_diag_debug_gnu' [03:19, 01:11](771 MB) -PASS -- TEST 'regional_debug_gnu' [08:27, 06:32](922 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:55](1095 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:55](1087 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:01](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:58](1092 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:04](1269 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:09](1094 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:59](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:57](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:11](722 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:20](720 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:15](1505 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:14, 01:57](1099 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:45, 03:17](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [12:05, 03:24] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:05, 04:27] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:10](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:46](953 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:39, 06:36](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:34](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:50](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:36, 05:23](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:14, 01:57](856 MB) -PASS -- TEST 'conus13km_control_gnu' [04:37, 02:29](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:22, 01:09](1173 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:24, 01:25](926 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:06, 06:17] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:27, 04:20](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:05, 05:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:03](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:54](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:23](1281 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:27](954 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:14](1196 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:21](1348 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:04](1000 MB) - -PASS -- COMPILE 's2swa_gnu' [17:06, 15:29] - -PASS -- COMPILE 's2s_gnu' [16:05, 14:56] - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 04:42] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 14:15] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:40] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20] +PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:17] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 07:44](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 17:55] +PASS -- TEST 'cpld_control_gfsv17_intel' [49:15, 13:38](1764 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:27, 14:12](2184 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:27](1172 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:01, 15:19](1689 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 04:50] +PASS -- TEST 'cpld_debug_gfsv17_intel' [11:13, 20:21](1724 MB) + +PASS -- COMPILE 's2swa_intel' [12:06, 09:54] +PASS -- TEST 'cpld_control_p8_intel' [39:05, 07:36](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:15, 07:45](2058 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:19](1973 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [39:05, 07:40](1969 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:10, 04:24](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:09, 08:56](2488 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:58, 07:45](2078 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:31](1878 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:09, 07:31](2065 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [03:50, 15:44](2803 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:07, 05:46](2918 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [58:33, 08:47](3698 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:32, 06:06](3619 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [37:07, 04:58](2034 MB) + +PASS -- COMPILE 's2sw_intel' [12:06, 10:24] +PASS -- TEST 'cpld_control_noaero_p8_intel' [37:58, 07:17](1781 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:03, 04:00](1821 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:16] +PASS -- TEST 'cpld_debug_p8_intel' [52:04, 06:59](2053 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 04:56] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [44:55, 04:41](1793 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:06, 08:26] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:56, 03:59](1816 MB) + +PASS -- COMPILE 's2s_intel' [11:06, 09:06] +PASS -- TEST 'cpld_control_c48_intel' [13:33, 07:14](2835 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:06, 12:40] +PASS -- TEST 'cpld_control_p8_faster_intel' [15:21, 07:22](2068 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 15:04] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 13:56](1803 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:00, 06:57](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:21](1725 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:06, 03:57] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 21:37](1773 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:06, 07:32] +PASS -- TEST 'control_flake_intel' [43:28, 02:53](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [30:21, 02:05](662 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:39, 02:12](671 MB) +PASS -- TEST 'control_latlon_intel' [30:26, 02:08](660 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:27, 02:06](675 MB) +PASS -- TEST 'control_c48_intel' [09:20, 05:50](857 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:26, 05:43](861 MB) +PASS -- TEST 'control_c192_intel' [48:39, 07:55](999 MB) +PASS -- TEST 'control_c384_intel' [49:16, 08:18](1439 MB) +PASS -- TEST 'control_c384gdas_intel' [49:03, 07:24](1515 MB) +PASS -- TEST 'control_stochy_intel' [12:26, 01:30](667 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:55](534 MB) +PASS -- TEST 'control_lndp_intel' [09:21, 01:26](668 MB) +PASS -- TEST 'control_iovr4_intel' [07:22, 02:11](659 MB) +PASS -- TEST 'control_iovr5_intel' [06:24, 02:12](665 MB) +PASS -- TEST 'control_p8_intel' [03:49, 02:35](1644 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:02, 02:35](1637 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [43:57, 02:29](1656 MB) +PASS -- TEST 'control_restart_p8_intel' [03:43, 01:24](917 MB) +PASS -- TEST 'control_noqr_p8_intel' [37:53, 02:29](1619 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:45, 01:23](989 MB) +PASS -- TEST 'control_decomp_p8_intel' [27:46, 02:36](1634 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:38, 02:22](1732 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:40, 04:28](1637 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:53, 03:36](1729 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:01, 02:43](1659 MB) +PASS -- TEST 'merra2_thompson_intel' [13:06, 02:59](1653 MB) +PASS -- TEST 'regional_control_intel' [08:24, 04:33](954 MB) +PASS -- TEST 'regional_restart_intel' [18:23, 02:32](1105 MB) +PASS -- TEST 'regional_decomp_intel' [12:30, 05:05](946 MB) +PASS -- TEST 'regional_2threads_intel' [24:25, 02:55](912 MB) +PASS -- TEST 'regional_noquilt_intel' [24:24, 04:18](1487 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:24, 04:36](957 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:21, 04:30](955 MB) +PASS -- TEST 'regional_wofs_intel' [12:24, 05:35](2072 MB) + +PASS -- COMPILE 'rrfs_intel' [09:05, 07:20] +PASS -- TEST 'rap_control_intel' [12:49, 06:30](1209 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:43, 03:37](1401 MB) +PASS -- TEST 'rap_decomp_intel' [12:30, 06:49](1177 MB) +PASS -- TEST 'rap_2threads_intel' [08:31, 06:08](1381 MB) +PASS -- TEST 'rap_restart_intel' [09:50, 03:24](1125 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:29](1185 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:48](1160 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:50, 04:55](1200 MB) +PASS -- TEST 'hrrr_control_intel' [05:31, 03:28](1083 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 03:27](1043 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:04](1121 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:29, 01:52](1019 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:14](1187 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:35](2020 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:40](2157 MB) + +PASS -- COMPILE 'csawmg_intel' [13:05, 06:54] +PASS -- TEST 'control_csawmg_intel' [07:25, 05:07](810 MB) +PASS -- TEST 'control_csawmgt_intel' [07:23, 05:01](814 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:48](820 MB) + +PASS -- COMPILE 'wam_intel' [11:05, 06:29] +PASS -- TEST 'control_wam_intel' [03:19, 01:53](787 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:05, 09:10] +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:21](1649 MB) +PASS -- TEST 'regional_control_faster_intel' [06:26, 04:05](962 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 03:42] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 02:14](819 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:13](828 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:33](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:17](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:21](880 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [11:30, 03:21](874 MB) +PASS -- TEST 'control_ras_debug_intel' [06:14, 02:21](834 MB) +PASS -- TEST 'control_diag_debug_intel' [09:25, 02:23](880 MB) +PASS -- TEST 'control_debug_p8_intel' [09:32, 02:27](1648 MB) +PASS -- TEST 'regional_debug_intel' [21:28, 14:08](890 MB) +PASS -- TEST 'rap_control_debug_intel' [11:18, 04:01](1211 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:14, 03:59](1216 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:15, 04:02](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:15, 04:04](1223 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 04:04](1216 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:14](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:16, 04:05](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:13, 04:06](1214 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:15, 04:04](1215 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:14, 04:03](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:17, 03:55](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:17, 03:59](1223 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:15, 06:26](1223 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:15, 04:01](1216 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 04:59](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:01](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 06:50](1234 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:05, 06:20] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:19](1307 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:21](1161 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:51](1031 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:34, 05:07](1288 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:39, 02:38](1041 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:39, 03:07](978 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:46, 04:06](1097 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:31, 01:38](952 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:05, 08:51] +PASS -- TEST 'conus13km_control_intel' [13:39, 01:52](1309 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:50](1209 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:25, 01:04](1142 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:05, 06:35] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:35, 03:43](1059 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 02:57] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:15, 04:01](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:13, 03:55](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [23:37, 11:48](1339 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:35, 12:04](1003 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 06:39](1244 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:28, 11:56](1410 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:06, 02:34] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:16, 04:02](1166 MB) + +PASS -- COMPILE 'hafsw_intel' [20:05, 09:41] +PASS -- TEST 'hafs_regional_atm_intel' [16:00, 05:42](868 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:20, 05:21](1281 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:06, 06:32](956 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:59, 14:01](992 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:08, 14:58](994 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:52, 05:21](607 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:22, 06:55](639 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:43, 02:48](436 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:01, 07:50](542 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:44, 03:55](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:50, 03:40](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:44, 04:55](671 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:22, 01:17](449 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:05, 03:06] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:40, 11:24](635 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:05, 10:38] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:50, 16:54](750 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:48, 17:54](812 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:05, 09:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:52, 10:17](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [24:05, 09:24] +PASS -- TEST 'hafs_regional_docn_intel' [11:02, 05:36](937 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:07, 05:47](948 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:22](1337 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [20:05, 06:02] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:11, 02:07](1142 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:17](1093 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:04](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:10, 02:05](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:09, 02:05](1009 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:10, 02:07](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:11, 02:08](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:03](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:41, 04:59](1157 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:42, 04:50](1139 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:02](2432 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:02](2384 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [19:05, 02:37] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:07](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [24:05, 05:45] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [18:05, 00:45] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:53](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:49](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:36](562 MB) + +PASS -- COMPILE 'atml_intel' [23:05, 07:43] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:12, 05:53](1632 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:08, 05:51](1644 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 02:54](953 MB) + +PASS -- COMPILE 'atmw_intel' [21:05, 09:32] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:40](1687 MB) + +PASS -- COMPILE 'atmwm_intel' [25:06, 09:39] +PASS -- TEST 'control_atmwav_intel' [03:40, 01:30](700 MB) + +PASS -- COMPILE 'atmaero_intel' [23:05, 07:09] +PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:37](1789 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:11](1794 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 04:25](1817 MB) + +PASS -- COMPILE 'atmaq_intel' [22:05, 06:57] + +PASS -- COMPILE 'atmaq_debug_intel' [16:06, 02:40] +PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 16:27](4570 MB) + +PASS -- COMPILE 'atm_gnu' [22:06, 03:57] +PASS -- TEST 'control_c48_gnu' [11:28, 09:33](864 MB) +PASS -- TEST 'control_stochy_gnu' [04:20, 02:17](730 MB) +PASS -- TEST 'control_ras_gnu' [05:14, 03:42](731 MB) +PASS -- TEST 'control_p8_gnu' [07:51, 03:42](1514 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:40, 03:34](1518 MB) +PASS -- TEST 'control_flake_gnu' [08:15, 04:28](808 MB) + +PASS -- COMPILE 'rrfs_gnu' [20:05, 03:57] +PASS -- TEST 'rap_control_gnu' [12:30, 07:49](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [12:29, 07:41](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [11:45, 07:05](1151 MB) +PASS -- TEST 'rap_restart_gnu' [05:35, 03:53](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 07:40](1089 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 07:42](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:43](884 MB) +PASS -- TEST 'hrrr_control_gnu' [08:30, 03:54](1073 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:31, 03:58](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:40, 03:34](1027 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 03:59](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:03](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:48, 07:34](1080 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [25:06, 05:05] +PASS -- TEST 'control_diag_debug_gnu' [05:21, 01:27](775 MB) +PASS -- TEST 'regional_debug_gnu' [08:26, 06:15](930 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:15, 01:58](1101 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:15, 01:55](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:57](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:03](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:09](1271 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:04](1096 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:00](1104 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:15, 01:55](1090 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:12](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:15](724 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:17](1505 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:16, 01:58](1098 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:09](1107 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:13](1099 MB) + +PASS -- COMPILE 'wam_debug_gnu' [17:05, 02:48] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [17:05, 04:19] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:06](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:52, 03:42](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:37](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:27](891 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:48](953 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 05:26](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 01:58](859 MB) +PASS -- TEST 'conus13km_control_gnu' [04:38, 02:27](1265 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:20, 01:03](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:25](949 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [19:05, 08:41] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:20](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [17:05, 04:52] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 01:58](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:50](966 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:24](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:39](971 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:13](1194 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:24, 05:25](1351 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:05, 04:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:55](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [29:07, 16:19] + +PASS -- COMPILE 's2s_gnu' [29:06, 16:03] + +PASS -- COMPILE 's2swa_debug_gnu' [15:06, 04:37] + +PASS -- COMPILE 's2sw_pdlib_gnu' [26:06, 15:59] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [15:06, 02:51] + +PASS -- COMPILE 'datm_cdeps_gnu' [30:06, 14:15] SYNOPSIS: -Starting Date/Time: 20240219 08:33:37 -Ending Date/Time: 20240219 10:09:34 -Total Time: 01h:36m:17s +Starting Date/Time: 20240222 15:42:59 +Ending Date/Time: 20240222 20:52:32 +Total Time: 05h:10m:04s Compiles Completed: 53/53 Tests Completed: 234/234 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 11a58e0fe6..aba1035824 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,300 +25,246 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_75827 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_249843 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [37:20, 36:01] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 07:11](1756 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [53:26, 51:44] -PASS -- TEST 'cpld_control_gfsv17_intel' [25:36, 21:15](1639 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:00, 22:13](1874 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:07](977 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:06, 24:43](1611 MB) - -PASS -- COMPILE 's2swa_intel' [39:21, 37:53] -PASS -- TEST 'cpld_control_p8_intel' [10:27, 07:30](1800 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 07:31](1792 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:18](1693 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:28, 07:35](1823 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:01, 04:26](1715 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:35, 23:04](2182 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:24, 07:31](1792 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:51, 06:24](1753 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:53, 07:34](1801 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:09](1765 MB) - -PASS -- COMPILE 's2sw_intel' [36:19, 34:19] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 06:15](1643 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:03, 06:09](1695 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:37] -PASS -- TEST 'cpld_debug_p8_intel' [14:47, 10:28](1821 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:08, 05:09] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:37, 10:34](1648 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:17, 31:52] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:41](1693 MB) - -PASS -- COMPILE 's2s_intel' [32:17, 31:06] -PASS -- TEST 'cpld_control_c48_intel' [15:24, 12:53](2787 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:40, 32:19] -PASS -- TEST 'cpld_control_p8_faster_intel' [11:03, 07:05](1792 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:23, 45:56] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 21:05](1661 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:02, 09:52](1023 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:00, 23:56](1655 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:51] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:49, 32:27](1666 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [34:18, 32:51] -PASS -- TEST 'control_flake_intel' [06:33, 04:47](638 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:23](594 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:40, 03:54](595 MB) -PASS -- TEST 'control_latlon_intel' [05:28, 03:17](595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:26](594 MB) -PASS -- TEST 'control_c48_intel' [11:36, 10:07](842 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:36, 10:10](846 MB) -PASS -- TEST 'control_c192_intel' [16:59, 12:41](724 MB) -PASS -- TEST 'control_c384_intel' [21:02, 17:25](899 MB) -PASS -- TEST 'control_c384gdas_intel' [22:09, 16:34](1031 MB) -PASS -- TEST 'control_stochy_intel' [04:28, 02:15](597 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](432 MB) -PASS -- TEST 'control_lndp_intel' [04:29, 02:11](594 MB) -PASS -- TEST 'control_iovr4_intel' [05:30, 03:26](597 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 03:22](593 MB) -PASS -- TEST 'control_p8_intel' [07:52, 04:08](1567 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 03:49](1568 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:47](1559 MB) -PASS -- TEST 'control_restart_p8_intel' [07:25, 02:08](804 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:45](1546 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:03](827 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:04](1545 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:13, 03:44](1647 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:56, 06:59](1561 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:41, 05:07](1618 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:32, 03:57](1565 MB) -PASS -- TEST 'merra2_thompson_intel' [07:57, 04:32](1566 MB) -PASS -- TEST 'regional_control_intel' [10:45, 09:04](752 MB) -PASS -- TEST 'regional_restart_intel' [05:43, 03:46](935 MB) -PASS -- TEST 'regional_decomp_intel' [10:44, 08:45](756 MB) -PASS -- TEST 'regional_2threads_intel' [06:43, 04:18](745 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:46, 08:57](758 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:44, 08:41](756 MB) - -PASS -- COMPILE 'rrfs_intel' [33:20, 31:23] -PASS -- TEST 'rap_control_intel' [13:40, 10:14](973 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 05:55](1211 MB) -PASS -- TEST 'rap_decomp_intel' [13:03, 10:53](963 MB) -PASS -- TEST 'rap_2threads_intel' [12:39, 10:02](1063 MB) -PASS -- TEST 'rap_restart_intel' [08:15, 05:12](975 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:37, 10:29](973 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 11:11](968 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:52, 08:24](982 MB) -PASS -- TEST 'hrrr_control_intel' [08:11, 05:36](962 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:10, 05:46](962 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:11, 05:14](1050 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:30, 02:49](907 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:40, 10:19](964 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:43](1929 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 12:11](1920 MB) - -PASS -- COMPILE 'csawmg_intel' [32:17, 30:19] -PASS -- TEST 'control_csawmg_intel' [10:46, 08:41](678 MB) -PASS -- TEST 'control_csawmgt_intel' [11:50, 09:53](682 MB) -PASS -- TEST 'control_ras_intel' [07:27, 05:13](652 MB) - -PASS -- COMPILE 'wam_intel' [31:18, 29:22] -PASS -- TEST 'control_wam_intel' [04:25, 02:40](494 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 30:53] -PASS -- TEST 'control_p8_faster_intel' [06:55, 03:31](1556 MB) -PASS -- TEST 'regional_control_faster_intel' [08:55, 06:29](749 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:08] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:29, 05:14](749 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 05:08](750 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:21, 04:49](755 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:21, 04:43](757 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](802 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [08:43, 06:18](798 MB) -PASS -- TEST 'control_ras_debug_intel' [06:22, 04:10](760 MB) -PASS -- TEST 'control_diag_debug_intel' [06:37, 04:29](809 MB) -PASS -- TEST 'control_debug_p8_intel' [07:56, 05:27](1573 MB) -PASS -- TEST 'regional_debug_intel' [25:53, 22:41](769 MB) -PASS -- TEST 'rap_control_debug_intel' [09:32, 07:38](1139 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:00, 06:22](1134 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:54, 06:32](1137 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:03](1138 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:02](1141 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:25](1221 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:12](1138 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:09](1143 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:09](1143 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:01](1132 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:55](1138 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:29, 06:00](1139 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:34, 09:50](1146 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1134 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:25](1131 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:30, 06:05](1149 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:39](1146 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:08, 04:14] -PASS -- TEST 'control_wam_debug_intel' [07:24, 06:05](453 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:17, 29:12] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:19, 05:23](1070 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 08:17](897 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 04:24](856 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 07:47](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:13, 04:04](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 04:37](851 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:24, 06:08](884 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:29](840 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 44:27] -PASS -- TEST 'conus13km_control_intel' [05:14, 02:45](1092 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:15](1045 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:37](1009 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 29:40] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:06, 05:32](892 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 04:30] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:57](1009 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:54](1010 MB) -PASS -- TEST 'conus13km_debug_intel' [20:14, 18:11](1123 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:15, 20:51](834 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:02, 10:31](1077 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:07, 18:12](1188 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:09, 04:28] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 06:07](1051 MB) - -PASS -- COMPILE 'hafsw_intel' [34:23, 32:59] -PASS -- TEST 'hafs_regional_atm_intel' [12:41, 09:37](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:49, 11:19](1076 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:35, 10:58](762 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:47, 17:03](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:40, 19:35](813 MB) -PASS -- TEST 'gnv1_nested_intel' [12:01, 08:38](771 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:17, 30:53] -PASS -- TEST 'hafs_regional_docn_intel' [14:05, 09:44](767 MB) -FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:09, 08:15] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:32](1040 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:11](1002 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:21, 03:27](916 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 03:28](914 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:30](911 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:32](1038 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:34](1034 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:26](918 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:56](869 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:52](843 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:32](1047 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:54](2387 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:58](2391 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:24] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:56](985 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1037 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:47] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:23](225 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:12](246 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:35, 01:03](243 MB) - -PASS -- COMPILE 'atml_intel' [34:19, 32:27] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:03, 12:11](1585 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [15:04, 11:18](1578 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 06:20](856 MB) - -PASS -- COMPILE 'atmw_intel' [32:20, 31:08] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:53, 02:24](1580 MB) - -PASS -- COMPILE 'atmwm_intel' [32:17, 30:40] -PASS -- TEST 'control_atmwav_intel' [05:26, 02:13](604 MB) - -PASS -- COMPILE 'atmaero_intel' [32:18, 31:08] -PASS -- TEST 'atmaero_control_p8_intel' [08:44, 05:12](1672 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:39, 06:26](1694 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 06:42](1704 MB) +PASS -- COMPILE 's2swa_32bit_intel' [29:17, 27:42] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:57, 05:23](1764 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:23, 41:38] +PASS -- TEST 'cpld_control_gfsv17_intel' [22:11, 15:44](1642 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 17:09](1866 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:55, 09:21](985 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:35, 18:08](1603 MB) + +PASS -- COMPILE 's2swa_intel' [30:17, 28:56] +PASS -- TEST 'cpld_control_p8_intel' [17:37, 06:24](1801 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 06:12](1796 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:05, 03:27](1690 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:38, 06:12](1826 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 03:29](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 05:46](2195 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:26, 05:58](1797 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:47, 05:02](1758 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:55, 06:06](1804 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:49, 05:57](1772 MB) + +PASS -- COMPILE 's2sw_intel' [28:17, 27:03] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:29, 04:30](1639 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:46, 04:37](1686 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:31] +PASS -- TEST 'cpld_debug_p8_intel' [12:10, 08:20](1837 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:12] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:31, 05:35](1650 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [28:16, 24:26] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:56, 04:40](1689 MB) + +PASS -- COMPILE 's2s_intel' [26:15, 24:32] +PASS -- TEST 'cpld_control_c48_intel' [14:22, 09:17](2798 MB) + +PASS -- COMPILE 's2swa_faster_intel' [05:31, 03:39] +PASS -- TEST 'cpld_control_p8_faster_intel' [25:59, 05:43](1801 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [41:21, 39:29] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:35, 16:26](1662 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:46, 08:08](1019 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:39, 19:17](1654 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:15] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:41, 24:57](1671 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [28:15, 25:56] +PASS -- TEST 'control_flake_intel' [22:46, 03:27](639 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:48, 02:26](589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:03, 02:32](595 MB) +PASS -- TEST 'control_latlon_intel' [21:50, 02:29](594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:51, 02:29](589 MB) +PASS -- TEST 'control_c48_intel' [12:58, 07:38](846 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:56, 07:20](841 MB) +PASS -- TEST 'control_c192_intel' [21:07, 09:11](721 MB) +PASS -- TEST 'control_c384_intel' [20:19, 12:02](901 MB) +PASS -- TEST 'control_c384gdas_intel' [39:19, 10:48](1018 MB) +PASS -- TEST 'control_stochy_intel' [20:46, 01:38](598 MB) +PASS -- TEST 'control_stochy_restart_intel' [20:39, 00:59](427 MB) +PASS -- TEST 'control_lndp_intel' [20:46, 01:37](593 MB) +PASS -- TEST 'control_iovr4_intel' [16:47, 02:30](592 MB) +PASS -- TEST 'control_iovr5_intel' [18:50, 02:28](590 MB) +PASS -- TEST 'control_p8_intel' [24:16, 03:07](1554 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [27:18, 03:00](1573 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:27, 03:02](1569 MB) +PASS -- TEST 'control_restart_p8_intel' [21:33, 01:35](819 MB) +PASS -- TEST 'control_noqr_p8_intel' [25:08, 02:59](1556 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [21:29, 01:33](836 MB) +PASS -- TEST 'control_decomp_p8_intel' [27:00, 03:04](1560 MB) +PASS -- TEST 'control_2threads_p8_intel' [25:04, 02:57](1646 MB) +PASS -- TEST 'control_p8_lndp_intel' [30:45, 05:20](1559 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [26:36, 04:00](1620 MB) +PASS -- TEST 'control_p8_mynn_intel' [27:25, 03:06](1585 MB) +PASS -- TEST 'merra2_thompson_intel' [23:46, 03:30](1581 MB) +PASS -- TEST 'regional_control_intel' [11:23, 05:30](757 MB) +PASS -- TEST 'regional_restart_intel' [25:59, 02:50](931 MB) +PASS -- TEST 'regional_decomp_intel' [10:25, 07:17](755 MB) +PASS -- TEST 'regional_2threads_intel' [23:14, 03:18](746 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:59, 05:30](758 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:52, 05:20](758 MB) + +PASS -- COMPILE 'rrfs_intel' [26:15, 24:32] +PASS -- TEST 'rap_control_intel' [27:55, 07:42](982 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 04:23](1217 MB) +PASS -- TEST 'rap_decomp_intel' [28:30, 08:02](967 MB) +PASS -- TEST 'rap_2threads_intel' [25:15, 07:15](1071 MB) +PASS -- TEST 'rap_restart_intel' [14:34, 03:57](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [28:45, 07:39](969 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:12, 08:01](963 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [15:29, 05:52](987 MB) +PASS -- TEST 'hrrr_control_intel' [23:13, 04:01](964 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:42, 04:06](971 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:28, 03:36](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [12:27, 02:07](902 MB) +PASS -- TEST 'rrfs_v1beta_intel' [28:58, 07:32](964 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [28:40, 09:15](1927 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:45, 08:57](1924 MB) + +PASS -- COMPILE 'csawmg_intel' [25:15, 23:14] +PASS -- TEST 'control_csawmg_intel' [24:56, 06:05](689 MB) +PASS -- TEST 'control_csawmgt_intel' [24:49, 06:01](688 MB) +PASS -- TEST 'control_ras_intel' [22:34, 03:23](656 MB) + +PASS -- COMPILE 'wam_intel' [23:14, 21:42] +PASS -- TEST 'control_wam_intel' [21:31, 02:05](493 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:22, 22:49] +PASS -- TEST 'control_p8_faster_intel' [13:50, 02:38](1562 MB) +PASS -- TEST 'regional_control_faster_intel' [13:51, 04:48](751 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [26:17, 05:03] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:31, 02:37](750 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:41, 02:36](749 MB) +PASS -- TEST 'control_stochy_debug_intel' [22:31, 02:55](763 MB) +PASS -- TEST 'control_lndp_debug_intel' [22:33, 02:37](759 MB) +PASS -- TEST 'control_csawmg_debug_intel' [22:53, 04:01](803 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [21:58, 04:01](801 MB) +PASS -- TEST 'control_ras_debug_intel' [20:34, 02:40](771 MB) +PASS -- TEST 'control_diag_debug_intel' [16:43, 02:47](808 MB) +PASS -- TEST 'control_debug_p8_intel' [16:06, 02:47](1576 MB) +PASS -- TEST 'regional_debug_intel' [28:06, 17:22](767 MB) +PASS -- TEST 'rap_control_debug_intel' [14:38, 04:48](1143 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:31, 04:45](1139 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:28, 04:48](1135 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:33, 04:51](1136 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:32, 04:50](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [18:50, 05:07](1230 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 05:01](1133 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:31, 04:54](1143 MB) +PASS -- TEST 'rap_lndp_debug_intel' [17:32, 05:00](1146 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:32, 04:49](1144 MB) +PASS -- TEST 'rap_noah_debug_intel' [19:36, 04:41](1143 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [20:33, 04:48](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:33, 07:48](1137 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [20:32, 04:41](1140 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [22:43, 05:56](1143 MB) +PASS -- TEST 'rap_flake_debug_intel' [21:41, 04:50](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:53, 08:14](1144 MB) + +PASS -- COMPILE 'wam_debug_intel' [24:17, 03:21] +PASS -- TEST 'control_wam_debug_intel' [22:33, 04:47](434 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:19, 21:28] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:40, 03:59](1076 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:50, 06:25](894 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:11, 03:24](859 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:18, 06:03](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:25, 03:08](906 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:34, 03:34](841 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [41:11, 05:48](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [37:46, 02:43](831 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 30:19] +PASS -- TEST 'conus13km_control_intel' [23:18, 02:15](1097 MB) +PASS -- TEST 'conus13km_2threads_intel' [30:39, 01:22](1047 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [31:37, 01:12](1017 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:18, 22:38] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:10, 04:23](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 03:36] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:39, 04:43](1023 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:35, 04:37](1022 MB) +PASS -- TEST 'conus13km_debug_intel' [32:18, 14:04](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [32:03, 14:19](838 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:51, 08:12](1085 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:58, 14:16](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:11] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:38, 04:48](1050 MB) + +PASS -- COMPILE 'hafsw_intel' [36:22, 25:12] +PASS -- TEST 'hafs_regional_atm_intel' [23:32, 05:47](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:44, 05:55](1078 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [42:28, 07:56](766 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [38:27, 13:32](797 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:10, 15:52](819 MB) +PASS -- TEST 'gnv1_nested_intel' [31:50, 04:27](772 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:28, 23:46] +PASS -- TEST 'hafs_regional_docn_intel' [26:41, 06:39](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:45, 06:39](752 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:09, 06:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:29, 02:41](1034 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [28:32, 02:19](1010 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:29, 02:32](914 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:32, 02:34](919 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:29, 02:35](919 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:28, 02:39](1040 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:27, 02:41](1043 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:26, 02:37](913 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:29, 06:35](875 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:20, 06:23](835 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [26:28, 02:43](1045 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:23, 03:55](2391 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 04:01](2396 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:03] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [20:32, 06:18](995 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 06:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:23, 02:41](1044 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [13:11, 01:23] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:51, 01:56](225 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:37, 01:01](245 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](248 MB) + +PASS -- COMPILE 'atml_intel' [40:22, 25:17] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 08:48](1581 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [22:47, 07:59](1596 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:50, 04:10](853 MB) + +PASS -- COMPILE 'atmw_intel' [42:26, 22:57] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 01:43](1576 MB) + +PASS -- COMPILE 'atmwm_intel' [40:25, 23:03] +PASS -- TEST 'control_atmwav_intel' [05:22, 01:38](597 MB) + +PASS -- COMPILE 'atmaero_intel' [43:37, 22:10] +PASS -- TEST 'atmaero_control_p8_intel' [06:33, 04:04](1670 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:30, 04:55](1709 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:23, 05:12](1711 MB) SYNOPSIS: -Starting Date/Time: 20240219 14:40:09 -Ending Date/Time: 20240219 18:32:24 -Total Time: 03h:52m:41s +Starting Date/Time: 20240223 07:51:38 +Ending Date/Time: 20240223 11:22:41 +Total Time: 03h:31m:27s Compiles Completed: 33/33 -Tests Completed: 160/161 -Failed Tests: -* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE --- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2061/tests/logs/log_jet/rt_hafs_regional_docn_oisst_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_299389 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'hafs_all_intel' [25:14, 23:54] -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:48, 07:05](749 MB) - -SYNOPSIS: -Starting Date/Time: 20240221 17:29:27 -Ending Date/Time: 20240221 18:09:29 -Total Time: 00h:40m:09s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 161/161 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 685e0a2ad6..bca26a96f8 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,277 +25,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_403308 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85130 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:18] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:44, 05:13](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 20:01] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:45, 16:24](1738 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:54, 17:38](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:57, 08:07](1111 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:39, 18:29](1644 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:56] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 23:01](1681 MB) - -PASS -- COMPILE 's2swa_intel' [17:07, 15:18] -PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:37](3217 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:40](3206 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:51, 03:17](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:44](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:49, 03:29](3276 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 06:08](3551 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:42](3198 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:43](3070 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:40](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:40, 10:01](3335 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:23, 06:09](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:06, 11:07](4121 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:43, 06:47](4374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 05:26](3175 MB) - -PASS -- COMPILE 's2sw_intel' [16:07, 14:53] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:29](1735 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:14, 04:26](1779 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:51] -PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:31](3249 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:43] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:58](1749 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:59] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:17, 04:17](1790 MB) - -PASS -- COMPILE 's2s_intel' [15:07, 13:16] -PASS -- TEST 'cpld_control_c48_intel' [10:52, 08:05](2828 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:20] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:17](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:24] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 16:29](1776 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 08:01](1177 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:04, 18:27](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:55] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:18](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:15] -PASS -- TEST 'control_flake_intel' [05:20, 03:31](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:29](649 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:36](650 MB) -PASS -- TEST 'control_latlon_intel' [04:20, 02:30](646 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](650 MB) -PASS -- TEST 'control_c48_intel' [07:24, 06:01](871 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:57](870 MB) -PASS -- TEST 'control_c192_intel' [11:34, 09:07](858 MB) -PASS -- TEST 'control_c384_intel' [13:41, 10:02](1245 MB) -PASS -- TEST 'control_c384gdas_intel' [13:47, 09:05](1348 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:45](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](497 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:40](656 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](646 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:25](652 MB) -PASS -- TEST 'control_p8_intel' [05:14, 02:59](1633 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:54](1632 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 02:50](1638 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 01:38](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:54](1612 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:39](929 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:59](1615 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:02](1715 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:52, 05:11](1621 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:32, 04:03](1687 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:22, 02:59](1627 MB) -PASS -- TEST 'merra2_thompson_intel' [06:38, 03:32](1640 MB) -PASS -- TEST 'regional_control_intel' [07:34, 05:14](855 MB) -PASS -- TEST 'regional_restart_intel' [04:42, 02:42](1020 MB) -PASS -- TEST 'regional_decomp_intel' [07:30, 05:29](852 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 03:42](844 MB) -PASS -- TEST 'regional_noquilt_intel' [06:35, 05:01](1368 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:04](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:04](857 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 06:33](1919 MB) - -PASS -- COMPILE 'rrfs_intel' [14:06, 12:43] -PASS -- TEST 'rap_control_intel' [10:28, 07:47](1106 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:48](1295 MB) -PASS -- TEST 'rap_decomp_intel' [11:15, 08:07](1028 MB) -PASS -- TEST 'rap_2threads_intel' [10:26, 07:57](1177 MB) -PASS -- TEST 'rap_restart_intel' [06:18, 04:03](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:44](1108 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:07](1025 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:24, 05:47](1134 MB) -PASS -- TEST 'hrrr_control_intel' [06:52, 04:11](1033 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:06](1019 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:18, 03:23](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:11](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:34](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 09:08](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:51](2080 MB) - -PASS -- COMPILE 'csawmg_intel' [13:07, 12:00] -PASS -- TEST 'control_csawmg_intel' [07:41, 05:54](746 MB) -PASS -- TEST 'control_csawmgt_intel' [07:44, 05:45](745 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:17](742 MB) - -PASS -- COMPILE 'wam_intel' [12:07, 10:18] -PASS -- TEST 'control_wam_intel' [04:17, 02:03](657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:32] -PASS -- TEST 'control_p8_faster_intel' [05:29, 02:40](1636 MB) -PASS -- TEST 'regional_control_faster_intel' [06:40, 04:38](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:32] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:45](815 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:45](813 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:58](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:50](816 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:10](862 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 04:06](864 MB) -PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](825 MB) -PASS -- TEST 'control_diag_debug_intel' [04:23, 02:59](873 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 02:55](1643 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 17:42](843 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:48](1193 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:51](1201 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1202 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:55](1204 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1282 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 05:02](1199 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1202 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:52](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:53](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:51](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:02](1200 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:05](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:47](1197 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 06:05](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:54](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:11](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:06, 02:51] -PASS -- TEST 'control_wam_debug_intel' [07:18, 05:04](517 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 11:18] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:54, 04:23](1169 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:14, 06:25](1046 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:06, 03:25](985 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:48, 06:42](1092 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 03:03](960 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](942 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:50](1028 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](935 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:39] -PASS -- TEST 'conus13km_control_intel' [12:56, 02:05](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:40, 01:03](1125 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:15](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 11:24] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:13](990 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:04](1078 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:48](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [16:46, 14:29](1223 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 14:50](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:33, 08:17](1157 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:50](1293 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:54](1130 MB) - -PASS -- COMPILE 'hafsw_intel' [15:07, 13:44] -PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:31](748 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:22, 05:58](1125 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:48](828 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:11, 12:49](858 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:34](886 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 06:12](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:19, 07:34](525 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:09](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:10](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 04:08](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:23](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:25](403 MB) -PASS -- TEST 'gnv1_nested_intel' [06:56, 04:32](798 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:49] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:44, 13:10](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:06, 12:34] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:37](669 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:04, 09:37](707 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:17] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:59](724 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:07, 12:27] -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:16](831 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 06:27](816 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:14](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:06, 08:03] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:42](1143 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:43](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1012 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:00](1125 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:42](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:35](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:57](1055 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 05:50](1039 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:33](1128 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:39](2439 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:36](2493 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 03:00] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:57](1058 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:16] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:40](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:12] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:47](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:49](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:33](317 MB) - -PASS -- COMPILE 'atml_intel' [13:06, 11:46] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:14](1612 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 04:14](1607 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:37, 02:21](896 MB) - -PASS -- COMPILE 'atmw_intel' [14:06, 12:22] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:47](1673 MB) - -PASS -- COMPILE 'atmwm_intel' [13:06, 11:52] -PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB) - -PASS -- COMPILE 'atmaero_intel' [13:06, 11:27] -PASS -- TEST 'atmaero_control_p8_intel' [06:08, 03:58](3017 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:48](3091 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:05](3105 MB) - -PASS -- COMPILE 'atmaq_intel' [12:06, 10:25] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55] -PASS -- TEST 'regional_atmaq_debug_intel' [23:46, 21:02](4576 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:09] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:09, 05:09](3184 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:09, 19:36] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:57, 16:25](1743 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 17:22](2023 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 08:06](1114 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 18:27](1641 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:38] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:52, 23:07](1687 MB) + +PASS -- COMPILE 's2swa_intel' [16:07, 14:20] +PASS -- TEST 'cpld_control_p8_intel' [13:08, 05:41](3207 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:17, 05:57](3133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:18](3249 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:08, 05:45](3239 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 03:28](3203 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:43, 06:06](3557 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:08, 05:47](3207 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:07, 04:41](3063 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:21, 05:45](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:18](3267 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 06:42](3544 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:19, 11:13](4110 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:11, 07:03](4365 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:08, 05:29](3178 MB) + +PASS -- COMPILE 's2sw_intel' [16:07, 14:19] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:42, 04:28](1737 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:07, 04:22](1775 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:36] +PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:24](3251 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:54](1758 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:07, 13:00] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:42](1709 MB) + +PASS -- COMPILE 's2s_intel' [14:07, 12:32] +PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:04](2833 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:09, 19:41] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:00, 05:23](3208 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:20] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:27](1775 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 08:30](1177 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:49](1684 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:28] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:11, 24:28](1707 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:54] +PASS -- TEST 'control_flake_intel' [05:20, 03:32](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:34](653 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:45](622 MB) +PASS -- TEST 'control_latlon_intel' [04:18, 02:40](656 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:41](655 MB) +PASS -- TEST 'control_c48_intel' [07:29, 06:00](879 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 05:57](866 MB) +PASS -- TEST 'control_c192_intel' [11:35, 09:06](851 MB) +PASS -- TEST 'control_c384_intel' [14:41, 11:07](1244 MB) +PASS -- TEST 'control_c384gdas_intel' [13:53, 08:51](1352 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:45](662 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:02](502 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:47](649 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:34](654 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](651 MB) +PASS -- TEST 'control_p8_intel' [05:21, 03:01](1585 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 02:56](1631 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:53](1639 MB) +PASS -- TEST 'control_restart_p8_intel' [04:24, 01:39](893 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 02:51](1616 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 01:43](930 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:13, 03:01](1620 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:04](1727 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:18](1639 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:28, 03:56](1695 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:31, 02:59](1639 MB) +PASS -- TEST 'merra2_thompson_intel' [06:52, 03:24](1642 MB) +PASS -- TEST 'regional_control_intel' [07:46, 05:06](855 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 02:42](1022 MB) +PASS -- TEST 'regional_decomp_intel' [07:41, 05:28](849 MB) +PASS -- TEST 'regional_2threads_intel' [05:44, 03:45](841 MB) +PASS -- TEST 'regional_noquilt_intel' [06:46, 05:05](1365 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:53, 05:08](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 05:06](862 MB) +PASS -- TEST 'regional_wofs_intel' [08:44, 06:34](1923 MB) + +PASS -- COMPILE 'rrfs_intel' [13:07, 11:45] +PASS -- TEST 'rap_control_intel' [10:24, 07:42](1107 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:39](1291 MB) +PASS -- TEST 'rap_decomp_intel' [11:16, 08:04](985 MB) +PASS -- TEST 'rap_2threads_intel' [11:13, 07:52](1184 MB) +PASS -- TEST 'rap_restart_intel' [07:19, 04:12](1103 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:35, 07:47](1112 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:24, 08:11](1035 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:21, 05:55](1131 MB) +PASS -- TEST 'hrrr_control_intel' [06:55, 04:05](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:06](1021 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:07, 03:21](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:37](1052 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:15](1988 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:07](2019 MB) + +PASS -- COMPILE 'csawmg_intel' [13:06, 11:16] +PASS -- TEST 'control_csawmg_intel' [08:47, 05:51](751 MB) +PASS -- TEST 'control_csawmgt_intel' [08:47, 05:46](751 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:18](742 MB) + +PASS -- COMPILE 'wam_intel' [12:07, 10:53] +PASS -- TEST 'control_wam_intel' [04:16, 02:05](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:17] +PASS -- TEST 'control_p8_faster_intel' [06:35, 02:36](1623 MB) +PASS -- TEST 'regional_control_faster_intel' [06:43, 04:32](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 02:44](814 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:37](813 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:05](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:50](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:04](866 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:41, 04:02](863 MB) +PASS -- TEST 'control_ras_debug_intel' [05:18, 02:46](823 MB) +PASS -- TEST 'control_diag_debug_intel' [05:22, 03:00](838 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:58](1639 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:45](846 MB) +PASS -- TEST 'rap_control_debug_intel' [07:25, 05:06](1150 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:38](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:52](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:09](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:12](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:24](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:13](1207 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 05:11](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:41](1199 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:08](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:05](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:51](1198 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:46](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:49](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:18](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:06, 03:40] +PASS -- TEST 'control_wam_debug_intel' [07:17, 05:06](510 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:28] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:51, 04:25](1173 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:25](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 03:23](945 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:13, 06:42](1093 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:05](965 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:43](926 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:22, 04:50](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:18, 01:57](940 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:49] +PASS -- TEST 'conus13km_control_intel' [05:05, 02:07](1200 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:45, 00:58](1124 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:40, 01:17](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 10:45] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:14](1003 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:59](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1080 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 13:55](1187 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:45](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:41](1108 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:19](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:21] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:59](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [14:07, 12:33] +PASS -- TEST 'hafs_regional_atm_intel' [08:15, 05:35](745 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:47](1122 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:47](828 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 12:57](863 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 14:29](881 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 06:07](505 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:23, 07:39](485 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:51, 03:09](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:27, 08:08](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:46, 04:10](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:01, 03:54](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:59, 05:19](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 01:22](402 MB) +PASS -- TEST 'gnv1_nested_intel' [06:52, 04:28](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:50, 12:56](568 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:37] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 09:31](667 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:59, 09:45](657 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:08, 14:50] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:01, 07:10](684 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:08, 13:26] +PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:26](829 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:31](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:01](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:43](1095 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:34](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:39](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:29](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:41](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:34](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:34](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:16, 05:52](1059 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:58](1050 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:46](1136 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:38](2433 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:45](2487 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:15] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1057 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1128 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:45] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:52](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:54](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:38](320 MB) + +PASS -- COMPILE 'atml_intel' [15:07, 13:36] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:23](1608 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:33, 04:20](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 02:28](897 MB) + +PASS -- COMPILE 'atmw_intel' [16:08, 14:07] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 01:47](1670 MB) + +PASS -- COMPILE 'atmwm_intel' [13:11, 12:03] +PASS -- TEST 'control_atmwav_intel' [04:09, 01:48](672 MB) + +PASS -- COMPILE 'atmaero_intel' [13:06, 11:32] +PASS -- TEST 'atmaero_control_p8_intel' [06:25, 04:00](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:45](3087 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:14](3036 MB) + +PASS -- COMPILE 'atmaq_intel' [12:11, 10:32] + +PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:28] +PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 21:02](4576 MB) SYNOPSIS: -Starting Date/Time: 20240219 08:28:47 -Ending Date/Time: 20240219 09:57:21 -Total Time: 01h:28m:54s +Starting Date/Time: 20240222 15:39:11 +Ending Date/Time: 20240222 17:12:31 +Total Time: 01h:33m:46s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 12934ee963..907da481a6 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -681a70733ad51929905514527b6d5a497cd17776 +b675ab09f5d50068fdcc833fcce348b9df550362 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/HEAD-16-g8e642bb) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,235 +25,235 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22069 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170835 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:59, 22:35] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:45, 01:38](2972 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:46] -PASS -- TEST 'cpld_control_gfsv17_intel' [51:27, 01:59](1597 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:26, 01:45](1716 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:21, 01:48](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:28, 01:15](1571 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:19, 10:17] -PASS -- TEST 'cpld_debug_gfsv17_intel' [52:34, 02:01](1603 MB) - -PASS -- COMPILE 's2swa_intel' [25:07, 24:31] -PASS -- TEST 'cpld_control_p8_intel' [38:46, 01:46](3002 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:46, 01:55](3003 MB) -PASS -- TEST 'cpld_restart_p8_intel' [29:59, 01:26](3060 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [38:45, 01:44](3030 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [29:59, 01:22](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [38:41, 01:22](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [38:39, 01:46](2999 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [38:03, 01:38](2924 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:49, 02:14](3001 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [37:56, 04:39](3950 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:43, 04:09](4252 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [37:22, 01:13](2969 MB) - -PASS -- COMPILE 's2sw_intel' [33:51, 32:36] -PASS -- TEST 'cpld_control_noaero_p8_intel' [29:59, 01:36](1587 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:53, 01:43](1633 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:18, 09:53] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [53:35, 01:10](1630 MB) - -PASS -- COMPILE 's2s_intel' [14:31, 13:48] -PASS -- TEST 'cpld_control_c48_intel' [49:20, 01:08](2642 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:42, 16:34] -PASS -- TEST 'cpld_control_p8_faster_intel' [46:10, 01:18](3005 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 15:33] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:15, 01:17](1603 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:34, 01:55](900 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:20, 01:58](1573 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:37, 15:48] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:16, 01:07](1617 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:04, 10:43] -PASS -- TEST 'control_flake_intel' [42:30, 00:23](577 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [42:30, 00:54](522 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:30, 00:46](528 MB) -PASS -- TEST 'control_latlon_intel' [42:30, 00:47](522 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:30, 00:55](526 MB) -PASS -- TEST 'control_c48_intel' [42:29, 01:07](715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [42:29, 01:03](715 MB) -PASS -- TEST 'control_c192_intel' [42:30, 00:46](642 MB) -PASS -- TEST 'control_c384_intel' [42:34, 01:15](952 MB) -PASS -- TEST 'control_c384gdas_intel' [42:34, 02:03](1092 MB) -PASS -- TEST 'control_stochy_intel' [42:30, 00:25](528 MB) -PASS -- TEST 'control_stochy_restart_intel' [39:57, 01:04](333 MB) -PASS -- TEST 'control_lndp_intel' [42:30, 00:30](529 MB) -PASS -- TEST 'control_iovr4_intel' [42:30, 00:51](522 MB) -PASS -- TEST 'control_iovr5_intel' [42:30, 00:53](524 MB) -PASS -- TEST 'control_p8_intel' [42:30, 01:48](1511 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [42:30, 02:05](1504 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [42:30, 02:05](1510 MB) -PASS -- TEST 'control_restart_p8_intel' [36:57, 01:13](690 MB) -PASS -- TEST 'control_noqr_p8_intel' [42:30, 01:43](1487 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:57, 01:11](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [42:30, 01:41](1497 MB) -PASS -- TEST 'control_2threads_p8_intel' [42:30, 01:12](1594 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:30, 01:25](1498 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:30, 01:14](1570 MB) -PASS -- TEST 'control_p8_mynn_intel' [42:30, 02:01](1511 MB) -PASS -- TEST 'merra2_thompson_intel' [39:56, 01:43](1516 MB) -PASS -- TEST 'regional_control_intel' [38:50, 00:25](605 MB) -PASS -- TEST 'regional_restart_intel' [32:52, 00:37](779 MB) -PASS -- TEST 'regional_decomp_intel' [36:56, 01:12](605 MB) -PASS -- TEST 'regional_2threads_intel' [36:41, 01:01](664 MB) -PASS -- TEST 'regional_noquilt_intel' [36:39, 00:33](1138 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [36:38, 00:31](606 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [36:37, 00:25](608 MB) -PASS -- TEST 'regional_wofs_intel' [35:25, 00:26](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [30:49, 30:04] -PASS -- TEST 'rap_control_intel' [21:38, 01:33](918 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:39, 01:33](1092 MB) -PASS -- TEST 'rap_decomp_intel' [21:29, 01:25](919 MB) -PASS -- TEST 'rap_2threads_intel' [21:19, 01:36](1007 MB) -PASS -- TEST 'rap_restart_intel' [12:41, 01:44](784 MB) -PASS -- TEST 'rap_sfcdiff_intel' [20:31, 02:05](916 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:31, 01:52](916 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:02, 02:11](787 MB) -PASS -- TEST 'hrrr_control_intel' [20:23, 01:37](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:07, 01:03](909 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [19:02, 01:49](994 MB) -PASS -- TEST 'hrrr_control_restart_intel' [14:47, 01:16](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:00, 02:08](911 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:00, 01:02](1876 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:43, 01:10](1863 MB) - -PASS -- COMPILE 'csawmg_intel' [18:29, 17:07] -PASS -- TEST 'control_csawmg_intel' [32:42, 00:46](598 MB) -PASS -- TEST 'control_csawmgt_intel' [32:15, 00:54](599 MB) -PASS -- TEST 'control_ras_intel' [31:48, 00:22](562 MB) - -PASS -- COMPILE 'wam_intel' [19:48, 18:43] -PASS -- TEST 'control_wam_intel' [29:07, 01:09](269 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:02, 09:42] -PASS -- TEST 'control_p8_faster_intel' [35:25, 01:08](1501 MB) -PASS -- TEST 'regional_control_faster_intel' [35:07, 00:48](612 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:41, 04:41] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:04, 01:43](684 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:21, 01:35](690 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:34, 01:18](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [30:57, 00:20](693 MB) -PASS -- TEST 'control_csawmg_debug_intel' [30:45, 01:34](731 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [30:42, 01:38](729 MB) -PASS -- TEST 'control_ras_debug_intel' [30:39, 00:38](705 MB) -PASS -- TEST 'control_diag_debug_intel' [30:38, 00:41](744 MB) -PASS -- TEST 'control_debug_p8_intel' [30:32, 01:14](1518 MB) -PASS -- TEST 'regional_debug_intel' [30:21, 00:21](630 MB) -PASS -- TEST 'rap_control_debug_intel' [30:13, 00:34](1073 MB) -PASS -- TEST 'hrrr_control_debug_intel' [29:48, 01:23](1066 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [28:49, 01:10](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [28:47, 01:11](1070 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [28:32, 01:20](1073 MB) -PASS -- TEST 'rap_diag_debug_intel' [28:28, 01:10](1157 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:05, 00:23](1072 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:44, 01:24](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [27:07, 01:14](1081 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [26:32, 01:51](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [26:31, 00:26](1072 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [26:25, 01:44](1078 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [25:28, 00:33](1068 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [25:27, 00:55](1066 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [25:19, 00:42](1074 MB) -PASS -- TEST 'rap_flake_debug_intel' [24:58, 00:34](1073 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:31, 02:03](1082 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:19, 16:17] -PASS -- TEST 'control_wam_debug_intel' [23:55, 01:18](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:49, 09:17] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [23:56, 01:47](952 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:48, 01:42](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:20, 02:29](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:20, 01:42](854 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [22:34, 02:06](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:31, 02:31](784 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:46, 02:32](689 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:16, 00:51](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:26, 21:13] -PASS -- TEST 'conus13km_control_intel' [18:32, 01:36](1003 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:56, 00:58](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [13:50, 00:54](888 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:59] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:28, 01:53](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:50] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:19, 00:28](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:49, 00:35](954 MB) -PASS -- TEST 'conus13km_debug_intel' [18:09, 00:49](1034 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:16, 00:45](712 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:16, 00:39](1035 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 00:49](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:21, 12:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:21, 01:34](981 MB) - -PASS -- COMPILE 'hafsw_intel' [11:13, 09:54] -PASS -- TEST 'hafs_regional_atm_intel' [16:24, 01:40](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:11, 01:10](970 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:05, 02:12](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:50, 01:47](695 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:48, 02:23](706 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:58, 01:23](387 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:48, 01:33](411 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:59, 01:58](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:15, 02:27](370 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:54, 01:50](413 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 01:07](420 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:30, 00:55](490 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:36, 00:26](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:12, 15:07] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:05, 00:52](502 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:50, 11:51] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:51, 01:19](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:50, 00:58](707 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:39, 15:30] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:29, 01:22](715 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:38, 12:17] -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 01:15](659 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 01:37](645 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:01, 00:47](880 MB) - -PASS -- COMPILE 'atml_intel' [17:14, 16:48] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:01, 01:23](1536 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 01:32](1549 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [01:03, 00:51](739 MB) - -PASS -- COMPILE 'atmaero_intel' [12:41, 12:06] -PASS -- TEST 'atmaero_control_p8_intel' [08:24, 01:52](2854 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:19, 01:23](2908 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 01:15](2925 MB) - -PASS -- COMPILE 'atmaq_intel' [16:00, 14:39] - -PASS -- COMPILE 'atmaq_debug_intel' [08:13, 06:55] -PASS -- TEST 'regional_atmaq_debug_intel' [08:09, 01:14](4443 MB) +PASS -- COMPILE 's2swa_32bit_intel' [33:31, 32:47] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:23, 01:16](2972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:49, 16:01] +PASS -- TEST 'cpld_control_gfsv17_intel' [41:11, 02:27](1592 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:44, 02:08](1709 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [21:28, 01:22](845 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:12, 01:28](1569 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:47] +PASS -- TEST 'cpld_debug_gfsv17_intel' [52:41, 02:12](1601 MB) + +PASS -- COMPILE 's2swa_intel' [11:33, 11:04] +PASS -- TEST 'cpld_control_p8_intel' [46:27, 01:25](3003 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [46:27, 01:39](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [38:05, 01:45](3059 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [46:27, 01:20](3027 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [38:05, 01:31](3080 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [46:27, 01:12](3316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [46:27, 01:26](3000 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [46:28, 01:33](2924 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:27, 01:34](3004 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [46:36, 03:46](3951 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:22, 03:58](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [46:27, 01:54](2970 MB) + +PASS -- COMPILE 's2sw_intel' [24:04, 23:24] +PASS -- TEST 'cpld_control_noaero_p8_intel' [33:57, 01:51](1585 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:57, 02:02](1636 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:31, 09:54] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:29, 00:58](1633 MB) + +PASS -- COMPILE 's2s_intel' [24:04, 23:45] +PASS -- TEST 'cpld_control_c48_intel' [33:56, 00:47](2651 MB) + +PASS -- COMPILE 's2swa_faster_intel' [38:44, 37:27] +PASS -- TEST 'cpld_control_p8_faster_intel' [19:15, 01:56](3003 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [11:33, 11:16] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:27, 01:43](1598 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:28, 00:55](900 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 01:00](1581 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:29, 09:13] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:31, 01:14](1617 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:38, 34:06] +PASS -- TEST 'control_flake_intel' [18:01, 00:37](576 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:01, 00:54](521 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:58, 00:56](529 MB) +PASS -- TEST 'control_latlon_intel' [17:56, 00:53](522 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:49, 01:04](528 MB) +PASS -- TEST 'control_c48_intel' [17:46, 01:10](718 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [17:08, 00:58](714 MB) +PASS -- TEST 'control_c192_intel' [17:08, 00:28](641 MB) +PASS -- TEST 'control_c384_intel' [16:52, 02:03](952 MB) +PASS -- TEST 'control_c384gdas_intel' [15:28, 01:55](1089 MB) +PASS -- TEST 'control_stochy_intel' [14:54, 00:28](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [12:19, 01:03](331 MB) +PASS -- TEST 'control_lndp_intel' [14:23, 00:32](527 MB) +PASS -- TEST 'control_iovr4_intel' [14:21, 00:46](525 MB) +PASS -- TEST 'control_iovr5_intel' [14:16, 00:44](525 MB) +PASS -- TEST 'control_p8_intel' [14:11, 01:38](1498 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:09, 02:01](1511 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [14:01, 02:01](1504 MB) +PASS -- TEST 'control_restart_p8_intel' [09:00, 01:03](692 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:46, 01:38](1495 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 00:41](699 MB) +PASS -- TEST 'control_decomp_p8_intel' [13:42, 01:33](1497 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:30, 01:09](1594 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:29, 01:11](1510 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:22, 01:01](1558 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:29, 01:49](1511 MB) +PASS -- TEST 'merra2_thompson_intel' [12:27, 01:32](1513 MB) +PASS -- TEST 'regional_control_intel' [12:21, 00:22](610 MB) +PASS -- TEST 'regional_restart_intel' [06:36, 00:30](779 MB) +PASS -- TEST 'regional_decomp_intel' [12:17, 01:07](607 MB) +PASS -- TEST 'regional_2threads_intel' [12:04, 01:01](666 MB) +PASS -- TEST 'regional_noquilt_intel' [11:57, 00:29](1141 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:24, 00:30](608 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:13, 00:23](609 MB) +PASS -- TEST 'regional_wofs_intel' [11:07, 01:04](1583 MB) + +PASS -- COMPILE 'rrfs_intel' [18:54, 17:44] +PASS -- TEST 'rap_control_intel' [29:35, 01:45](914 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:36, 01:22](1089 MB) +PASS -- TEST 'rap_decomp_intel' [29:35, 01:31](917 MB) +PASS -- TEST 'rap_2threads_intel' [29:35, 01:42](1009 MB) +PASS -- TEST 'rap_restart_intel' [20:21, 01:25](786 MB) +PASS -- TEST 'rap_sfcdiff_intel' [29:35, 02:03](912 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:35, 01:49](916 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:01, 01:52](785 MB) +PASS -- TEST 'hrrr_control_intel' [29:35, 00:59](913 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [29:35, 00:55](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [29:36, 01:22](996 MB) +PASS -- TEST 'hrrr_control_restart_intel' [24:23, 01:04](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [29:35, 01:15](906 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [29:35, 00:58](1878 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:35, 01:18](1862 MB) + +PASS -- COMPILE 'csawmg_intel' [09:29, 08:59] +PASS -- TEST 'control_csawmg_intel' [37:59, 00:30](600 MB) +PASS -- TEST 'control_csawmgt_intel' [37:59, 00:35](599 MB) +PASS -- TEST 'control_ras_intel' [37:59, 01:03](560 MB) + +PASS -- COMPILE 'wam_intel' [11:36, 10:31] +PASS -- TEST 'control_wam_intel' [34:51, 01:00](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 22:13] +PASS -- TEST 'control_p8_faster_intel' [23:10, 01:59](1508 MB) +PASS -- TEST 'regional_control_faster_intel' [21:10, 00:34](610 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:39, 11:08] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [29:31, 01:17](691 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [29:31, 01:22](692 MB) +PASS -- TEST 'control_stochy_debug_intel' [29:31, 00:52](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [29:31, 01:12](698 MB) +PASS -- TEST 'control_csawmg_debug_intel' [29:31, 00:33](732 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [29:31, 00:47](730 MB) +PASS -- TEST 'control_ras_debug_intel' [29:31, 01:10](704 MB) +PASS -- TEST 'control_diag_debug_intel' [29:31, 01:13](747 MB) +PASS -- TEST 'control_debug_p8_intel' [29:31, 01:05](1518 MB) +PASS -- TEST 'regional_debug_intel' [26:25, 01:08](631 MB) +PASS -- TEST 'rap_control_debug_intel' [26:02, 01:06](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [25:37, 01:03](1070 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [24:59, 00:58](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [24:57, 01:01](1074 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [24:57, 01:00](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [24:54, 00:56](1158 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:52, 00:45](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:51, 00:58](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [24:44, 01:04](1075 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [24:23, 00:57](1072 MB) +PASS -- TEST 'rap_noah_debug_intel' [23:42, 01:05](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [23:41, 01:00](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:59, 01:03](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [20:59, 01:15](1067 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [20:54, 00:19](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [20:21, 01:01](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:01, 01:25](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [21:08, 20:19] +PASS -- TEST 'control_wam_debug_intel' [10:53, 01:06](300 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:50, 12:35] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:48, 01:22](952 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:47, 01:23](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [18:55, 01:59](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:48, 01:59](849 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [18:14, 01:32](839 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:12, 02:09](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:52, 01:27](690 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:48, 00:23](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:08, 20:12] +PASS -- TEST 'conus13km_control_intel' [10:24, 01:06](1004 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:34, 00:56](1005 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 00:50](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:51, 12:43] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [18:11, 01:29](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:39, 12:54] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:23, 01:09](951 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:51, 00:21](950 MB) +PASS -- TEST 'conus13km_debug_intel' [09:19, 00:49](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [09:08, 00:44](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 00:46](1036 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:39, 00:44](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:53, 18:55] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 01:05](978 MB) + +PASS -- COMPILE 'hafsw_intel' [12:44, 11:41] +PASS -- TEST 'hafs_regional_atm_intel' [08:20, 02:13](616 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:59, 00:43](963 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:22, 01:57](665 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [07:21, 02:06](699 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:11, 02:07](705 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 01:24](383 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:49, 01:29](401 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:47, 01:41](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:40, 02:27](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:34, 01:40](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 01:03](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:36, 00:54](488 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:34, 00:22](320 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:24, 05:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:35, 01:04](510 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:54, 17:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:08, 00:58](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:08, 00:53](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:40, 11:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [04:43, 01:02](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:51, 16:09] +PASS -- TEST 'hafs_regional_docn_intel' [02:26, 01:42](666 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [02:26, 01:46](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:24, 00:38](880 MB) + +PASS -- COMPILE 'atml_intel' [21:02, 19:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:59, 01:18](1549 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [56:59, 01:16](1540 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [50:18, 00:18](740 MB) + +PASS -- COMPILE 'atmaero_intel' [13:47, 12:34] +PASS -- TEST 'atmaero_control_p8_intel' [03:03, 01:31](2855 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [03:03, 00:55](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:03, 01:47](2921 MB) + +PASS -- COMPILE 'atmaq_intel' [13:45, 12:50] + +PASS -- COMPILE 'atmaq_debug_intel' [08:43, 08:28] +PASS -- TEST 'regional_atmaq_debug_intel' [04:14, 01:46](4434 MB) SYNOPSIS: -Starting Date/Time: 20240220 12:55:51 -Ending Date/Time: 20240220 14:18:54 -Total Time: 01h:23m:34s +Starting Date/Time: 20240223 15:01:47 +Ending Date/Time: 20240223 16:22:18 +Total Time: 01h:20m:56s Compiles Completed: 31/31 Tests Completed: 157/157 diff --git a/tests/rt.conf b/tests/rt.conf index f8abbc4158..854c935c7a 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -46,8 +46,8 @@ RUN | cpld_mpi_p8 | - noaacloud RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 jet derecho acorn noaacloud | baseline | -RUN | cpld_restart_bmark_p8 | - s4 jet derecho acorn noaacloud | | cpld_bmark_p8 +RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | @@ -71,8 +71,8 @@ RUN | cpld_control_c48 | #RUN | cpld_warmstart_c48 | - noaacloud | baseline | #RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 -COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - derecho noaacloud | fv3 | -RUN | cpld_control_p8_faster | - derecho noaacloud | baseline | +COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | +RUN | cpld_control_p8_faster | - noaacloud | baseline | # Unstructured WW3 mesh COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | @@ -216,7 +216,7 @@ COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_H RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | RUN | conus13km_debug | - noaacloud | baseline | -RUN | conus13km_debug_qr | - derecho noaacloud | | +RUN | conus13km_debug_qr | - noaacloud | | RUN | conus13km_debug_2threads | - derecho noaacloud | | RUN | conus13km_radar_tten_debug | - noaacloud | baseline | @@ -314,8 +314,8 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | #RUN | regional_atmaq | - jet s4 | baseline | -COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud derecho s4 | fv3 | -RUN | regional_atmaq_debug | - jet derecho s4 noaacloud | baseline | +COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | +RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | ### GNU TESTS ### ### CCPP PROD tests ### diff --git a/tests/rt.sh b/tests/rt.sh index 8571bac483..62f49d459f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -9,7 +9,7 @@ die() { echo "$@" >&2; exit 1; } usage() { set +x echo - echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -r | -w" + echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -w" echo echo " -a to use on for HPC queue" echo " -b create new baselines only for tests listed in " @@ -21,6 +21,7 @@ usage() { echo " -l runs test specified in " echo " -m compare against new baseline results" echo " -n run single test " + echo " -o compile only, skip tests" echo " -r use Rocoto workflow manager" echo " -w for weekly_test, skip comparing baseline results" echo @@ -180,6 +181,7 @@ EOF [[ $DEFINE_CONF_FILE == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}" [[ $RTPWD_NEW_BASELINE == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}" [[ $RUN_SINGLE_TEST == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}" + [[ $COMPILE_ONLY == true ]]&& echo "* 9 (-o) COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}" [[ $delete_rundir == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" [[ $skip_check_results == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}" [[ $KEEP_RUNDIR == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" @@ -258,7 +260,11 @@ EOF fi elif [[ $line =~ RUN ]]; then - + + if [[ $COMPILE_ONLY == true ]]; then + continue + fi + RMACHINES=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') TEST_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') GEN_BASELINE=$(echo "$line" | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') @@ -497,6 +503,7 @@ TEST_35D=false export skip_check_results=false export delete_rundir=false SKIP_ORDER=false +COMPILE_ONLY=false RTPWD_NEW_BASELINE=false TESTS_FILE='rt.conf' NEW_BASELINES_FILE='' @@ -504,7 +511,7 @@ DEFINE_CONF_FILE=false RUN_SINGLE_TEST=false ACCNR=${ACCNR:-""} -while getopts ":a:b:cl:mn:dwkreh" opt; do +while getopts ":a:b:cl:mn:dwkreoh" opt; do case $opt in a) ACCNR=$OPTARG @@ -520,6 +527,9 @@ while getopts ":a:b:cl:mn:dwkreh" opt; do TESTS_FILE=$OPTARG grep -q '[^[:space:]]' < "$TESTS_FILE" || die "${TESTS_FILE} empty, exiting..." ;; + o) + COMPILE_ONLY=true + ;; m) # redefine RTPWD to point to newly created baseline outputs RTPWD_NEW_BASELINE=true @@ -1064,6 +1074,10 @@ while read -r line || [ "$line" ]; do elif [[ $line == RUN* ]] ; then + if [[ $COMPILE_ONLY == true ]]; then + continue + fi + TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') MACHINES=$( echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') CB=$( echo $line | cut -d'|' -f4) From 8518c2c59fd92ec8a5982997d66612992b577dda Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 1 Mar 2024 11:43:59 -0500 Subject: [PATCH 09/10] tisfc bugfix (#2137) Changes to physics code such that the ice model is used to determine the ice temperature over both sea ice and lake ice --- FV3 | 2 +- cmake/GNU.cmake | 5 +- modulefiles/ufs_gaea.intel.lua | 2 +- tests/bl_date.conf | 2 +- tests/fv3_conf/fv3_slurm.IN_gaea | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_derecho.log | 518 ++++++------- tests/logs/RegressionTests_gaea.log | 523 +++++++------ tests/logs/RegressionTests_hera.log | 712 +++++++++--------- tests/logs/RegressionTests_hercules.log | 694 ++++++++--------- tests/logs/RegressionTests_jet.log | 466 ++++++------ tests/logs/RegressionTests_orion.log | 534 ++++++------- tests/logs/RegressionTests_wcoss2.log | 604 +++++++++------ tests/rt.sh | 65 +- tests/test_changes.list | 193 +++++ 17 files changed, 2387 insertions(+), 2031 deletions(-) mode change 100644 => 100755 tests/logs/RegressionTests_gaea.log diff --git a/FV3 b/FV3 index 2d34223122..4941026c58 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2d342231225b6d00875d164cb86e09ea335fe6b1 +Subproject commit 4941026c5881ed623b39934905d2e4ecd9907b8a diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 939e25bfa7..a427e8f053 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -10,7 +10,10 @@ endif() if(DEBUG) add_definitions(-DDEBUG) - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -mcmodel=medium") + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check") + if(CMAKE_Platform STREQUAL "hercules.gnu") + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -mcmodel=medium") + endif() set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0") else() set(CMAKE_Fortran_FLAGS_RELEASE "-O2") diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index 746bbef471..b6f7ae2f67 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -31,4 +31,4 @@ unload("cray-libsci") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea-c5.intel") +setenv("CMAKE_Platform","gaea.intel") diff --git a/tests/bl_date.conf b/tests/bl_date.conf index dc476e9359..4462101f2c 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240213 +export BL_DATE=20240227 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 1d703cb712..8545e689e6 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -14,7 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x -MACHINE_ID=gaea-c5 +MACHINE_ID=gaea source ./module-setup.sh module use --prepend $PWD/modulefiles module load modules.fv3 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 5ab7c2b923..3fc2ff7201 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Feb 22 20:53:25 UTC 2024 +Wed Feb 28 15:14:11 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 280.439468 - 0: The maximum resident set size (KB) = 1305520 + 0: The total amount of wall time = 281.461889 + 0: The maximum resident set size (KB) = 1300600 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 909.185427 - 0: The maximum resident set size (KB) = 1287316 + 0: The total amount of wall time = 901.527002 + 0: The maximum resident set size (KB) = 1282896 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 248.211050 - 0: The maximum resident set size (KB) = 1280512 + 0: The total amount of wall time = 249.770627 + 0: The maximum resident set size (KB) = 1280800 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 251.581934 - 0: The maximum resident set size (KB) = 1264336 + 0: The total amount of wall time = 252.183005 + 0: The maximum resident set size (KB) = 1280256 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.725287 - 0: The maximum resident set size (KB) = 1280612 + 0: The total amount of wall time = 249.439187 + 0: The maximum resident set size (KB) = 1279912 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.617565 - 0: The maximum resident set size (KB) = 1277316 + 0: The total amount of wall time = 255.032590 + 0: The maximum resident set size (KB) = 1278480 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_165959/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 248.771012 - 0: The maximum resident set size (KB) = 1279892 + 0: The total amount of wall time = 251.992809 + 0: The maximum resident set size (KB) = 1280792 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Feb 22 22:13:07 UTC 2024 -Elapsed time: 01h:19m:42s. Have a nice day! +Wed Feb 28 16:27:22 UTC 2024 +Elapsed time: 01h:13m:11s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 92f9a7c5d4..27ff848110 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Feb 23 14:47:29 UTC 2024 +Wed Feb 28 18:25:43 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1267.233553 - 0: The maximum resident set size (KB) = 1405904 + 0: The total amount of wall time = 1260.280333 + 0: The maximum resident set size (KB) = 1412828 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 391.689198 - 0: The maximum resident set size (KB) = 1402796 + 0: The total amount of wall time = 384.587401 + 0: The maximum resident set size (KB) = 1391428 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_114547/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 387.349272 - 0: The maximum resident set size (KB) = 1402180 + 0: The total amount of wall time = 383.528966 + 0: The maximum resident set size (KB) = 1394880 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 23 16:15:36 UTC 2024 -Elapsed time: 01h:28m:07s. Have a nice day! +Wed Feb 28 21:03:16 UTC 2024 +Elapsed time: 02h:37m:33s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index b1caca193e..b38e4a5e4d 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Feb 23 14:04:50 UTC 2024 +Wed Feb 28 17:31:35 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 524.440233 - 0: The maximum resident set size (KB) = 589460 + 0: The total amount of wall time = 516.796008 + 0: The maximum resident set size (KB) = 590124 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 512.660107 - 0: The maximum resident set size (KB) = 590144 + 0: The total amount of wall time = 512.332064 + 0: The maximum resident set size (KB) = 590524 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_90229/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +51,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 516.695763 - 0: The maximum resident set size (KB) = 591548 + 0: The total amount of wall time = 517.910868 + 0: The maximum resident set size (KB) = 586524 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Feb 23 14:41:20 UTC 2024 -Elapsed time: 00h:36m:30s. Have a nice day! +Wed Feb 28 18:13:30 UTC 2024 +Elapsed time: 00h:41m:55s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 92b2f84a32..f10138dcac 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -9904889c8c39959060b801e0cb5965f869d2a0ee +3951b805f6c6071a13b4686f8fd00e93840f5040 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -24,271 +24,271 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2497 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_106920 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [40:32, 22:08] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 05:04](3076 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:32, 22:31] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:40, 13:55](1688 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:25](1825 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:37](953 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 15:51](1656 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:38, 12:02] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:15, 21:47](1694 MB) - -PASS -- COMPILE 's2swa_intel' [40:42, 21:36] -PASS -- TEST 'cpld_control_p8_intel' [09:30, 05:44](3089 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 05:43](3090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:31](3146 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 05:44](3120 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 03:31](3176 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3088 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 04:47](3383 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:42](3102 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:28, 09:11](3632 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:35, 06:28](3612 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:52, 10:03](4342 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:48, 07:08](4646 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:53, 05:24](3062 MB) - -PASS -- COMPILE 's2sw_intel' [39:38, 20:47] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:16](1677 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:11, 04:21](1728 MB) - -PASS -- COMPILE 's2swa_debug_intel' [29:36, 11:36] -PASS -- TEST 'cpld_debug_p8_intel' [10:05, 07:45](3151 MB) - -PASS -- COMPILE 's2sw_debug_intel' [29:37, 11:01] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:54, 05:23](1696 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [34:39, 16:13] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:31, 04:25](1721 MB) - -PASS -- COMPILE 's2s_intel' [34:37, 15:58] -PASS -- TEST 'cpld_control_c48_intel' [08:25, 06:39](2663 MB) - -PASS -- COMPILE 's2swa_faster_intel' [43:47, 24:57] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:55, 05:44](3097 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:32, 21:20] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:17, 14:11](1697 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:45, 07:26](1012 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 16:11](1663 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:29, 10:38] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:48](1712 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:28, 13:56] -PASS -- TEST 'control_flake_intel' [04:50, 03:29](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:11](616 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:08, 02:20](625 MB) -PASS -- TEST 'control_latlon_intel' [03:49, 02:11](622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:16](618 MB) -PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:56, 05:16](740 MB) -PASS -- TEST 'control_c192_intel' [11:04, 08:09](737 MB) -PASS -- TEST 'control_c384_intel' [15:41, 08:37](1064 MB) -PASS -- TEST 'control_c384gdas_intel' [18:32, 07:39](1198 MB) -PASS -- TEST 'control_stochy_intel' [02:44, 01:31](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:44, 00:58](436 MB) -PASS -- TEST 'control_lndp_intel' [02:45, 01:26](625 MB) -PASS -- TEST 'control_iovr4_intel' [03:56, 02:11](621 MB) -PASS -- TEST 'control_iovr5_intel' [03:47, 02:10](618 MB) -PASS -- TEST 'control_p8_intel' [04:51, 02:34](1602 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:38](1592 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:35](1602 MB) -PASS -- TEST 'control_restart_p8_intel' [03:49, 01:32](801 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:02, 02:41](1595 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:27](805 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:42](1597 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:46, 04:30](1600 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:58, 03:28](1658 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:37](1603 MB) -PASS -- TEST 'merra2_thompson_intel' [06:19, 03:07](1602 MB) -PASS -- TEST 'regional_control_intel' [06:36, 04:35](631 MB) -PASS -- TEST 'regional_restart_intel' [04:26, 02:35](798 MB) -PASS -- TEST 'regional_decomp_intel' [06:35, 04:46](631 MB) -PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1157 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:26, 04:35](627 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:37](631 MB) -PASS -- TEST 'regional_wofs_intel' [07:22, 05:42](1600 MB) - -PASS -- COMPILE 'rrfs_intel' [13:28, 12:11] -PASS -- TEST 'rap_control_intel' [08:39, 06:08](999 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:27, 03:59](1188 MB) -PASS -- TEST 'rap_decomp_intel' [09:00, 06:33](1003 MB) -PASS -- TEST 'rap_restart_intel' [05:38, 03:18](876 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:57, 06:13](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:30](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:39](878 MB) -PASS -- TEST 'hrrr_control_intel' [05:51, 03:20](995 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:22](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:53, 02:53](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:59](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:05](996 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:30](1957 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:12](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [12:28, 11:17] -PASS -- TEST 'control_csawmg_intel' [07:40, 05:20](691 MB) -PASS -- TEST 'control_csawmgt_intel' [07:36, 05:13](689 MB) -PASS -- TEST 'control_ras_intel' [04:48, 02:59](658 MB) - -PASS -- COMPILE 'wam_intel' [11:21, 10:39] -PASS -- TEST 'control_wam_intel' [03:37, 01:56](380 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:25, 13:43] -PASS -- TEST 'control_p8_faster_intel' [05:05, 02:29](1598 MB) -PASS -- TEST 'regional_control_faster_intel' [06:24, 04:20](628 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:30, 09:53] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:38](792 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:37](796 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](802 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:43](801 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:26, 03:57](838 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:32, 03:59](836 MB) -PASS -- TEST 'control_ras_debug_intel' [03:49, 02:44](803 MB) -PASS -- TEST 'control_diag_debug_intel' [05:12, 02:47](855 MB) -PASS -- TEST 'control_debug_p8_intel' [04:31, 02:39](1624 MB) -PASS -- TEST 'regional_debug_intel' [17:27, 15:54](664 MB) -PASS -- TEST 'rap_control_debug_intel' [05:51, 04:51](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:50, 04:39](1402 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:50, 04:41](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:47](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:43, 04:43](1178 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:04, 05:00](1265 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:45, 04:49](1176 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:43, 04:53](1180 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:53, 04:48](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:52](1178 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:53, 04:43](1174 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 04:41](1179 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:46, 07:47](1179 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:38](1171 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:55, 05:28](1182 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:41](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:27, 07:55](1179 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:25, 06:11] -PASS -- TEST 'control_wam_debug_intel' [15:41, 04:38](423 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 10:39] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:47](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:16, 05:11](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:05, 02:51](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:24, 02:57](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 03:53](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:44, 01:34](775 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 12:46] -PASS -- TEST 'conus13km_control_intel' [12:26, 01:55](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:31, 01:03](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:02, 01:11](972 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:30, 10:57] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:14, 03:41](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:29, 07:05] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:57, 04:36](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:46, 04:26](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [23:36, 13:24](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [22:38, 13:31](820 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:25, 13:40](1385 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:25, 07:12] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:47, 04:41](1081 MB) - -PASS -- COMPILE 'hafsw_intel' [18:24, 17:43] -PASS -- TEST 'hafs_regional_atm_intel' [13:08, 04:48](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:21, 05:23](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:26, 06:31](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:43, 11:00](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:02, 12:12](809 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:44, 04:45](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 05:54](492 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:29, 02:27](389 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:12, 06:26](460 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:14, 03:25](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:59, 03:12](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:43, 03:56](586 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:53, 01:19](428 MB) -PASS -- TEST 'gnv1_nested_intel' [12:33, 03:30](787 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:13] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:36, 12:02](610 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:32, 21:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:02, 07:18](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:17, 07:20](687 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:26, 18:27] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:20, 05:30](675 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:29, 15:50] -PASS -- TEST 'hafs_regional_docn_intel' [13:53, 05:46](750 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:53, 05:45](736 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 16:11](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:29, 09:04] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:08, 02:30](761 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [24:47, 01:35](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:36, 02:21](642 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:48, 02:23](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:40, 02:24](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:42, 02:31](1405 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:02, 02:30](1215 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:39, 02:20](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:19, 05:42](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:46, 05:42](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:07, 03:53](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 03:54](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:25, 06:17] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:06](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 08:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:31](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:23, 02:54] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:17](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:43, 01:12](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [21:57, 00:52](451 MB) - -PASS -- COMPILE 'atml_intel' [15:28, 14:18] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:47, 07:28](1624 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [32:45, 07:46](1628 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 04:50](853 MB) - -PASS -- COMPILE 'atmw_intel' [14:26, 14:00] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:19, 01:37](1635 MB) - -PASS -- COMPILE 'atmwm_intel' [14:26, 13:38] -PASS -- TEST 'control_atmwav_intel' [03:06, 01:33](635 MB) - -PASS -- COMPILE 'atmaero_intel' [13:25, 12:06] -PASS -- TEST 'atmaero_control_p8_intel' [27:09, 03:46](2946 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [28:10, 04:24](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [28:34, 04:38](3013 MB) - -PASS -- COMPILE 'atmaq_intel' [36:34, 11:45] - -PASS -- COMPILE 'atmaq_debug_intel' [32:37, 07:22] -PASS -- TEST 'regional_atmaq_debug_intel' [39:42, 22:28](4531 MB) +PASS -- COMPILE 's2swa_32bit_intel' [28:21, 21:34] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:08, 05:12](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:21, 22:11] +PASS -- TEST 'cpld_control_gfsv17_intel' [21:55, 14:03](1685 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:26, 15:21](1820 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:30, 07:31](958 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:15, 16:01](1655 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:17, 11:20] +PASS -- TEST 'cpld_debug_gfsv17_intel' [34:08, 21:57](1706 MB) + +PASS -- COMPILE 's2swa_intel' [26:17, 21:09] +PASS -- TEST 'cpld_control_p8_intel' [10:56, 05:52](3091 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:03, 05:52](3088 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:23, 03:25](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:56, 05:52](3120 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [25:23, 03:28](3175 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:44, 05:45](3088 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:40, 04:50](3382 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:05, 05:46](3097 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:07, 09:05](3634 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [26:26, 06:18](3615 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:30, 10:12](4342 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [37:35, 07:44](4650 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:28, 05:30](3065 MB) + +PASS -- COMPILE 's2sw_intel' [26:17, 20:38] +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:23, 04:24](1681 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:38, 04:26](1729 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:17, 11:20] +PASS -- TEST 'cpld_debug_p8_intel' [20:18, 08:06](3150 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:03, 10:47] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [18:32, 05:56](1705 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:19, 15:54] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:13, 04:29](1723 MB) + +PASS -- COMPILE 's2s_intel' [21:19, 16:09] +PASS -- TEST 'cpld_control_c48_intel' [13:21, 06:40](2675 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:17, 24:49] +PASS -- TEST 'cpld_control_p8_faster_intel' [13:05, 05:44](3102 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [34:22, 22:26] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:32, 14:10](1701 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:54, 07:37](1010 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:01, 16:08](1664 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:03, 11:35] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:09, 22:45](1712 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [25:10, 14:23] +PASS -- TEST 'control_flake_intel' [19:06, 03:29](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:14, 02:11](616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:15, 02:14](622 MB) +PASS -- TEST 'control_latlon_intel' [05:24, 02:06](617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:30, 02:11](617 MB) +PASS -- TEST 'control_c48_intel' [08:26, 05:15](735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 05:16](734 MB) +PASS -- TEST 'control_c192_intel' [10:38, 07:54](737 MB) +PASS -- TEST 'control_c384_intel' [16:34, 08:29](1059 MB) +PASS -- TEST 'control_c384gdas_intel' [19:33, 07:36](1199 MB) +PASS -- TEST 'control_stochy_intel' [03:19, 01:28](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:16, 00:58](439 MB) +PASS -- TEST 'control_lndp_intel' [03:42, 01:24](623 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:10](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:12](617 MB) +PASS -- TEST 'control_p8_intel' [06:11, 02:35](1592 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:10, 02:32](1592 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 02:31](1604 MB) +PASS -- TEST 'control_restart_p8_intel' [04:41, 01:36](796 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:38, 02:36](1580 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:19, 01:35](802 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:36, 02:41](1585 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:22, 04:33](1601 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:47, 03:29](1650 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:42, 02:38](1605 MB) +PASS -- TEST 'merra2_thompson_intel' [06:46, 03:06](1603 MB) +PASS -- TEST 'regional_control_intel' [07:05, 04:34](629 MB) +PASS -- TEST 'regional_restart_intel' [04:58, 02:30](799 MB) +PASS -- TEST 'regional_decomp_intel' [07:05, 04:47](631 MB) +PASS -- TEST 'regional_noquilt_intel' [07:21, 04:26](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:20, 04:29](628 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:10, 04:28](630 MB) +PASS -- TEST 'regional_wofs_intel' [07:59, 05:39](1599 MB) + +PASS -- COMPILE 'rrfs_intel' [20:09, 13:06] +PASS -- TEST 'rap_control_intel' [09:02, 06:10](1005 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:07, 04:04](1191 MB) +PASS -- TEST 'rap_decomp_intel' [09:23, 06:30](1004 MB) +PASS -- TEST 'rap_restart_intel' [06:09, 03:22](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:09, 06:13](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:22, 06:29](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:19, 04:40](879 MB) +PASS -- TEST 'hrrr_control_intel' [06:12, 03:18](995 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:22, 03:22](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 02:52](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:49](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:02, 06:04](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 07:29](1953 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:22, 07:18](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [19:01, 11:57] +PASS -- TEST 'control_csawmg_intel' [07:59, 05:18](691 MB) +PASS -- TEST 'control_csawmgt_intel' [07:59, 05:16](691 MB) +PASS -- TEST 'control_ras_intel' [04:19, 02:57](654 MB) + +PASS -- COMPILE 'wam_intel' [12:19, 10:28] +PASS -- TEST 'control_wam_intel' [20:11, 02:00](381 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:27, 13:57] +PASS -- TEST 'control_p8_faster_intel' [05:25, 02:26](1593 MB) +PASS -- TEST 'regional_control_faster_intel' [06:53, 04:19](628 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:56, 10:04] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [20:55, 02:36](793 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [20:59, 02:34](796 MB) +PASS -- TEST 'control_stochy_debug_intel' [20:49, 02:53](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [20:52, 02:40](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [22:21, 04:01](839 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [22:25, 04:00](835 MB) +PASS -- TEST 'control_ras_debug_intel' [20:49, 02:37](804 MB) +PASS -- TEST 'control_diag_debug_intel' [22:20, 02:44](857 MB) +PASS -- TEST 'control_debug_p8_intel' [20:18, 02:45](1628 MB) +PASS -- TEST 'regional_debug_intel' [33:31, 16:03](666 MB) +PASS -- TEST 'rap_control_debug_intel' [23:18, 04:43](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:18, 04:38](1174 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [23:18, 04:44](1181 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [23:17, 04:39](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:18, 04:44](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [24:57, 04:57](1265 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:19, 04:48](1180 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:18, 04:48](1180 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:45](1215 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:35, 04:49](1178 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:19, 04:38](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:45](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:37](1178 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:30, 04:38](1176 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:14, 05:51](1185 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:33, 04:46](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:09, 08:10](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:58, 06:29] +PASS -- TEST 'control_wam_debug_intel' [27:04, 04:48](432 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:09, 11:00] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:19, 03:49](1056 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 05:14](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:10, 02:59](882 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:45, 03:02](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:29, 03:56](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:35](776 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:17, 12:56] +PASS -- TEST 'conus13km_control_intel' [07:14, 01:58](1083 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:53, 01:06](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:05, 01:12](973 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:01, 10:53] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:46, 03:40](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [24:03, 06:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:36, 04:37](1053 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:29](1215 MB) +PASS -- TEST 'conus13km_debug_intel' [17:19, 13:28](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:18, 13:45](818 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:12, 14:03](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [24:18, 06:33] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:44](1079 MB) + +PASS -- COMPILE 'hafsw_intel' [35:18, 17:13] +PASS -- TEST 'hafs_regional_atm_intel' [07:47, 04:54](713 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:29, 05:25](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:15, 06:45](778 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:29, 11:03](794 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:46, 12:05](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 04:50](1255 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:44, 05:59](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:12, 02:28](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 06:39](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:00, 03:29](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:17, 03:14](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:32, 04:04](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:22](423 MB) +PASS -- TEST 'gnv1_nested_intel' [06:56, 03:35](786 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [25:13, 08:25] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:58, 12:13](613 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [36:11, 21:08] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:30, 07:22](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:59, 07:24](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [32:07, 18:26] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:11, 05:31](673 MB) + +PASS -- COMPILE 'hafs_all_intel' [27:12, 15:29] +PASS -- TEST 'hafs_regional_docn_intel' [09:40, 05:48](1215 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:42, 05:50](1255 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:40, 16:15](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:59, 08:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:30, 02:33](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:09, 01:34](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:31, 02:27](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 02:26](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:31](747 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:10, 02:31](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:26](637 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:33, 05:47](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:14, 05:44](670 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:32](762 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:45, 04:04](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:24, 04:00](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:46, 06:19] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:05](733 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:02, 08:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:21, 02:29](750 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:13, 03:04] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:43, 01:19](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:46, 01:21](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:52](455 MB) + +PASS -- COMPILE 'atml_intel' [15:56, 14:06] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 08:20](1639 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:01, 08:16](1636 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:15, 04:10](847 MB) + +PASS -- COMPILE 'atmw_intel' [15:48, 14:08] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:56, 01:39](1633 MB) + +PASS -- COMPILE 'atmwm_intel' [14:59, 13:29] +PASS -- TEST 'control_atmwav_intel' [03:59, 01:36](635 MB) + +PASS -- COMPILE 'atmaero_intel' [13:59, 12:27] +PASS -- TEST 'atmaero_control_p8_intel' [07:36, 03:41](2944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:33, 04:21](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:30, 04:33](3012 MB) + +PASS -- COMPILE 'atmaq_intel' [13:58, 12:03] + +PASS -- COMPILE 'atmaq_debug_intel' [08:57, 07:35] +PASS -- TEST 'regional_atmaq_debug_intel' [29:19, 22:25](4531 MB) SYNOPSIS: -Starting Date/Time: 20240222 14:58:31 -Ending Date/Time: 20240222 17:18:46 -Total Time: 02h:21m:07s +Starting Date/Time: 20240228 10:13:25 +Ending Date/Time: 20240228 12:18:57 +Total Time: 02h:06m:38s Compiles Completed: 39/39 Tests Completed: 175/175 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log old mode 100644 new mode 100755 index 593a36407a..77b60b1745 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -9904889c8c39959060b801e0cb5965f869d2a0ee +ee6612850685d9e2b9b0858845eeb3df2dd44e49 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -24,278 +24,277 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_55800 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/FV3_RT/rt_218944 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:21] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:08, 05:13](3072 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:35] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:31](1696 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:19](1808 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:59, 06:35](946 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:05, 14:34](1670 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:07, 07:32] -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:02, 24:05](1699 MB) - -PASS -- COMPILE 's2swa_intel' [14:09, 13:00] -PASS -- TEST 'cpld_control_p8_intel' [08:17, 06:01](3098 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:00](3098 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:09, 03:35](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:04](3122 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 03:38](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:17, 05:28](3411 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:17, 05:54](3097 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:03](3021 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:59](3099 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:54](3271 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:58, 06:50](3599 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 12:11](4038 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 08:32](4346 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:47](3067 MB) - -PASS -- COMPILE 's2sw_intel' [14:09, 12:21] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:23](1691 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:38](1737 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:55] -PASS -- TEST 'cpld_debug_p8_intel' [11:06, 08:13](3130 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:07, 06:42] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:32](1700 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:20] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1727 MB) - -PASS -- COMPILE 's2s_intel' [13:08, 11:11] -PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2660 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:14] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:09, 05:57](3099 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 18:02] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:14, 14:29](1704 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:03, 07:04](1003 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:05, 17:00](1684 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:14] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 26:52](1711 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:23] -PASS -- TEST 'control_flake_intel' [05:24, 03:34](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:19](619 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:26](627 MB) -PASS -- TEST 'control_latlon_intel' [04:24, 02:21](622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:25](623 MB) -PASS -- TEST 'control_c48_intel' [07:34, 05:41](722 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:38](721 MB) -PASS -- TEST 'control_c192_intel' [10:32, 08:40](739 MB) -PASS -- TEST 'control_c384_intel' [18:50, 16:15](1041 MB) -PASS -- TEST 'control_c384gdas_intel' [16:38, 14:03](1185 MB) -PASS -- TEST 'control_stochy_intel' [03:24, 01:38](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](430 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:34](628 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:21](622 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:22](623 MB) -PASS -- TEST 'control_p8_intel' [04:53, 02:41](1606 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:45](1609 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:41](1609 MB) -PASS -- TEST 'control_restart_p8_intel' [03:42, 01:35](790 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:53, 02:41](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:34](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:44, 02:43](1594 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:43, 02:25](1679 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:43](1606 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:33](1657 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:10] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:02, 05:13](3071 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 19:47] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:04, 13:33](1697 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:08, 14:19](1813 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:07, 06:26](950 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:58, 14:33](1665 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:08, 07:31] +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:05, 25:48](1698 MB) + +PASS -- COMPILE 's2swa_intel' [16:09, 13:24] +PASS -- TEST 'cpld_control_p8_intel' [08:12, 06:00](3097 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:20, 06:02](3096 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:00, 03:34](3155 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:04](3123 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:55, 03:39](3176 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:06, 05:26](3412 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:07, 05:53](3097 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:13, 05:05](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 06:02](3097 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 09:50](3270 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:50, 06:49](3599 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:25, 12:14](4035 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:53, 08:31](4343 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:46](3066 MB) + +PASS -- COMPILE 's2sw_intel' [14:09, 12:13] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:29](1682 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:37](1730 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:08, 07:22] +PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:19](3127 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:08, 07:02] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:59, 05:31](1694 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:13] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:37](1731 MB) + +PASS -- COMPILE 's2s_intel' [13:08, 10:55] +PASS -- TEST 'cpld_control_c48_intel' [08:46, 06:55](2662 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:01] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:04, 05:54](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:10, 18:07] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:09, 14:30](1703 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:09, 07:09](1001 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 16:52](1679 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:06] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:50](1711 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:08, 11:19] +PASS -- TEST 'control_flake_intel' [05:24, 03:29](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:20](619 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:24](627 MB) +PASS -- TEST 'control_latlon_intel' [04:23, 02:20](622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:21](623 MB) +PASS -- TEST 'control_c48_intel' [07:34, 05:39](727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:36](728 MB) +PASS -- TEST 'control_c192_intel' [10:30, 08:38](738 MB) +PASS -- TEST 'control_c384_intel' [18:48, 16:22](1042 MB) +PASS -- TEST 'control_c384gdas_intel' [17:40, 14:04](1185 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:39](629 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](429 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:33](627 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:19](623 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:21](623 MB) +PASS -- TEST 'control_p8_intel' [04:51, 02:42](1606 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:57, 02:47](1609 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:46, 02:40](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [03:38, 01:34](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:42, 02:42](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:39, 01:34](792 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:42, 02:49](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:41, 02:26](1685 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:36, 04:44](1607 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:43, 03:37](1657 MB) PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:47](1615 MB) -PASS -- TEST 'merra2_thompson_intel' [05:45, 03:14](1616 MB) -PASS -- TEST 'regional_control_intel' [06:29, 04:34](615 MB) +PASS -- TEST 'merra2_thompson_intel' [05:44, 03:17](1615 MB) +PASS -- TEST 'regional_control_intel' [06:31, 04:35](615 MB) PASS -- TEST 'regional_restart_intel' [04:26, 02:29](789 MB) -PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](615 MB) -PASS -- TEST 'regional_2threads_intel' [04:27, 02:49](757 MB) -PASS -- TEST 'regional_noquilt_intel' [06:31, 04:29](1153 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:33](614 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:33](615 MB) +PASS -- TEST 'regional_decomp_intel' [06:30, 04:46](615 MB) +PASS -- TEST 'regional_2threads_intel' [04:30, 02:49](758 MB) +PASS -- TEST 'regional_noquilt_intel' [06:33, 04:29](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:37, 04:36](615 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:36](615 MB) PASS -- TEST 'regional_wofs_intel' [07:29, 05:54](1591 MB) -PASS -- COMPILE 'rrfs_intel' [11:08, 09:44] -PASS -- TEST 'rap_control_intel' [08:42, 06:33](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:57](1182 MB) -PASS -- TEST 'rap_decomp_intel' [08:38, 06:47](1009 MB) -PASS -- TEST 'rap_2threads_intel' [07:36, 05:52](1099 MB) -PASS -- TEST 'rap_restart_intel' [05:37, 03:28](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:24](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 06:42](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:38, 04:51](879 MB) -PASS -- TEST 'hrrr_control_intel' [05:40, 03:29](1005 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:33](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:00](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:55](837 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:25](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:40](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 07:24](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [11:08, 09:25] -PASS -- TEST 'control_csawmg_intel' [07:28, 05:32](695 MB) -PASS -- TEST 'control_csawmgt_intel' [07:28, 05:29](693 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:08](657 MB) - -PASS -- COMPILE 'wam_intel' [10:08, 09:06] -PASS -- TEST 'control_wam_intel' [04:20, 02:09](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:10] -PASS -- TEST 'control_p8_faster_intel' [04:45, 02:40](1608 MB) -PASS -- TEST 'regional_control_faster_intel' [06:31, 04:25](614 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:07, 06:58] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:43](779 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:40](781 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:58](785 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](789 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:07](825 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:05](826 MB) -PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](795 MB) -PASS -- TEST 'control_diag_debug_intel' [04:24, 02:46](844 MB) -PASS -- TEST 'control_debug_p8_intel' [04:28, 02:44](1619 MB) -PASS -- TEST 'regional_debug_intel' [18:35, 16:49](634 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:51](1167 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:41](1166 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:46](1168 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:48](1168 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:51](1167 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:01](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:02](1167 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:51](1169 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:47](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:48](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:52](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:51](1167 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:45](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:43](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:54](1167 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:14](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:08, 05:28] -PASS -- TEST 'control_wam_debug_intel' [08:22, 04:52](394 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:18] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 03:43](1054 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 05:27](888 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 02:58](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:44, 05:06](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:38, 02:37](936 MB) +PASS -- COMPILE 'rrfs_intel' [12:08, 09:47] +PASS -- TEST 'rap_control_intel' [08:37, 06:35](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:50, 03:57](1183 MB) +PASS -- TEST 'rap_decomp_intel' [08:41, 06:49](1009 MB) +PASS -- TEST 'rap_2threads_intel' [07:40, 06:01](1093 MB) +PASS -- TEST 'rap_restart_intel' [05:36, 03:24](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:23](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 06:39](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:55](879 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 03:28](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:33](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 02:59](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:55](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:44, 06:25](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:53](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:32](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [11:08, 09:22] +PASS -- TEST 'control_csawmg_intel' [07:28, 05:34](695 MB) +PASS -- TEST 'control_csawmgt_intel' [07:27, 05:34](693 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:10](657 MB) + +PASS -- COMPILE 'wam_intel' [11:08, 09:07] +PASS -- TEST 'control_wam_intel' [04:20, 02:08](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:05] +PASS -- TEST 'control_p8_faster_intel' [04:46, 02:36](1607 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:26](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:07, 07:02] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:46](780 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:29, 02:43](784 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:03](788 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:28, 04:03](827 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:07](828 MB) +PASS -- TEST 'control_ras_debug_intel' [04:20, 02:45](798 MB) +PASS -- TEST 'control_diag_debug_intel' [04:25, 02:50](846 MB) +PASS -- TEST 'control_debug_p8_intel' [04:36, 02:48](1622 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 16:14](638 MB) +PASS -- TEST 'rap_control_debug_intel' [06:25, 04:58](1169 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:43](1168 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:25, 04:59](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:53](1170 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:53](1169 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:08](1254 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:02](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 04:59](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:24, 04:59](1171 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 04:55](1169 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:28](1169 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 04:55](1168 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:01](1169 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:52](1166 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1171 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:55](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:40, 08:23](1174 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:07, 05:22] +PASS -- TEST 'control_wam_debug_intel' [06:19, 04:53](396 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:07] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:48](1053 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 05:27](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:38, 03:01](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:04](948 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:38](936 MB) PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:08](886 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:37, 04:11](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:24, 01:44](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:35] -PASS -- TEST 'conus13km_control_intel' [04:03, 01:57](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:43, 01:05](1075 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:43, 01:17](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:11] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:52](904 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:11] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:48](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [16:09, 14:01](1129 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:44](804 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:50, 07:57](1111 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 14:01](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:31] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:48](1066 MB) - -PASS -- COMPILE 'hafsw_intel' [13:08, 11:35] -PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:15](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 04:32](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:20, 06:46](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:09, 11:42](791 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 12:46](800 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:20](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:19, 06:42](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:54, 03:04](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:10, 07:55](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:50, 03:45](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:58, 03:32](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 04:38](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:49](405 MB) -PASS -- TEST 'gnv1_nested_intel' [07:55, 03:59](765 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:07, 06:31] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:01](582 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:44] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 07:37](610 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:45](780 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 12:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 06:02](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:08, 11:04] -PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:06](748 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:03](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:09, 16:10](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:58] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:30](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:31](745 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](636 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](636 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:22](637 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:29](755 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:19](636 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 05:49](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 05:45](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:29](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2013 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:38](2015 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:17] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:23](741 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:09, 10:04] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:27](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:58] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:17](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:08](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:53](456 MB) - -PASS -- COMPILE 'atml_intel' [12:09, 10:47] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:08, 06:14](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:06, 06:20](1640 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:27](836 MB) - -PASS -- COMPILE 'atmw_intel' [12:09, 10:15] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:43](1649 MB) - -PASS -- COMPILE 'atmwm_intel' [12:09, 10:20] -PASS -- TEST 'control_atmwav_intel' [03:36, 01:38](640 MB) - -PASS -- COMPILE 'atmaero_intel' [11:09, 09:45] -PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:14](2944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:51](3013 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:09](3019 MB) - -PASS -- COMPILE 'atmaq_intel' [11:08, 09:40] - -PASS -- COMPILE 'atmaq_debug_intel' [07:08, 05:38] -PASS -- TEST 'regional_atmaq_debug_intel' [21:13, 18:12](4480 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:06](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:42](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:27] +PASS -- TEST 'conus13km_control_intel' [03:41, 01:57](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:32, 01:03](1074 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:28, 01:16](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:18] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 03:53](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:53](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:39](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [15:43, 13:37](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:42, 13:56](803 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:36, 08:02](1110 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 13:57](1196 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:30] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:24, 05:21](1067 MB) + +PASS -- COMPILE 'hafsw_intel' [13:08, 11:15] +PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:18](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:25, 04:26](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:17, 07:31](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:43](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:18, 12:48](791 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:58, 05:16](473 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:19, 06:43](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 02:55](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:00](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:47, 03:44](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 03:30](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:41](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:45](401 MB) +PASS -- TEST 'gnv1_nested_intel' [05:55, 03:59](762 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:08, 06:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:54, 13:06](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:24] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:56, 07:41](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:58, 07:44](784 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:09, 12:02] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:55, 06:01](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:09, 11:08] +PASS -- TEST 'hafs_regional_docn_intel' [08:09, 05:58](746 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:02](730 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:04, 20:06](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:07] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:33](745 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:33](747 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:24](639 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:24](639 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:26](635 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:31](758 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:32](759 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:43, 05:55](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:42, 05:51](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:33](758 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:33](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:33](2013 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:18] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:17](741 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:08, 10:05] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:31](758 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:06, 02:03] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:22](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:32, 01:09](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:56](456 MB) + +PASS -- COMPILE 'atml_intel' [13:09, 11:22] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:05, 06:17](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:02, 06:15](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:24](835 MB) + +PASS -- COMPILE 'atmw_intel' [12:09, 10:26] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:43, 01:45](1647 MB) + +PASS -- COMPILE 'atmwm_intel' [12:09, 10:26] +PASS -- TEST 'control_atmwav_intel' [03:35, 01:39](640 MB) + +PASS -- COMPILE 'atmaero_intel' [11:08, 09:47] +PASS -- TEST 'atmaero_control_p8_intel' [05:47, 04:02](2946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:35](3012 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 04:52](3019 MB) + +PASS -- COMPILE 'atmaq_intel' [11:08, 09:48] + +PASS -- COMPILE 'atmaq_debug_intel' [08:08, 06:07] +PASS -- TEST 'regional_atmaq_debug_intel' [20:16, 18:11](4485 MB) SYNOPSIS: -Starting Date/Time: 20240222 16:32:44 -Ending Date/Time: 20240222 17:55:46 -Total Time: 01h:23m:24s +Starting Date/Time: 20240229 11:15:07 +Ending Date/Time: 20240229 12:38:47 +Total Time: 01h:24m:02s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index b4ddf7103f..9525d1721d 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffc1413d43ff54ebdbba9d04e8ab95109225f0b1 +42ce413c756e127649d5c07d8f89535343390d6f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -24,367 +24,367 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_29067 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_26211 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:07] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:16](3153 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:03] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 16:14](1735 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 16:51](2001 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:05](1092 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:12, 18:23](1630 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:08, 04:18] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:12, 22:24](1689 MB) - -PASS -- COMPILE 's2swa_intel' [14:09, 12:06] -PASS -- TEST 'cpld_control_p8_intel' [08:22, 05:43](3183 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:36, 05:41](3194 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:44, 03:28](3199 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:47](3161 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:43, 03:28](3275 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:19, 05:29](3491 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:39](3126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:37](3049 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 05:42](3191 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 09:48](3327 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:42, 05:58](3605 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:55, 09:51](4059 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:01, 07:25](4344 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:17](3157 MB) - -PASS -- COMPILE 's2sw_intel' [13:09, 11:23] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:30](1716 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:28](1743 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:08, 04:17] -PASS -- TEST 'cpld_debug_p8_intel' [11:17, 08:13](3209 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:14] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:36](1741 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:43] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:27](1764 MB) - -PASS -- COMPILE 's2s_intel' [13:10, 10:59] -PASS -- TEST 'cpld_control_c48_intel' [11:47, 09:25](2808 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:45] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:23, 05:22](3183 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:08, 14:47] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:16, 16:23](1727 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:17](1152 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:20](1656 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:10] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:36](1703 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:21] -PASS -- TEST 'control_flake_intel' [05:24, 03:20](696 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](646 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:30](653 MB) -PASS -- TEST 'control_latlon_intel' [04:23, 02:28](619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:28](640 MB) -PASS -- TEST 'control_c48_intel' [08:32, 06:14](874 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 06:17](871 MB) -PASS -- TEST 'control_c192_intel' [11:40, 09:10](820 MB) -PASS -- TEST 'control_c384_intel' [13:43, 09:12](1261 MB) -PASS -- TEST 'control_c384gdas_intel' [14:05, 08:11](1383 MB) -PASS -- TEST 'control_stochy_intel' [03:18, 01:38](650 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:34, 00:59](504 MB) -PASS -- TEST 'control_lndp_intel' [03:19, 01:36](651 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:27](642 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:27](646 MB) -PASS -- TEST 'control_p8_intel' [07:04, 03:04](1624 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:08, 03:05](1616 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:09, 03:06](1620 MB) -PASS -- TEST 'control_restart_p8_intel' [03:46, 01:40](880 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:08, 03:04](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:39](926 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:07, 03:07](1597 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:04, 02:50](1685 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:07, 05:14](1616 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:10, 03:51](1681 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:13, 02:59](1626 MB) -PASS -- TEST 'merra2_thompson_intel' [05:54, 03:27](1633 MB) -PASS -- TEST 'regional_control_intel' [07:36, 05:17](846 MB) -PASS -- TEST 'regional_restart_intel' [05:45, 02:44](986 MB) -PASS -- TEST 'regional_decomp_intel' [07:40, 05:31](839 MB) -PASS -- TEST 'regional_2threads_intel' [05:43, 03:18](846 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:13](1338 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:13](848 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:14](846 MB) -PASS -- TEST 'regional_wofs_intel' [08:43, 06:40](1890 MB) - -PASS -- COMPILE 'rrfs_intel' [11:08, 09:54] -PASS -- TEST 'rap_control_intel' [09:47, 07:43](1104 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:12, 04:09](1275 MB) -PASS -- TEST 'rap_decomp_intel' [10:36, 08:03](1024 MB) -PASS -- TEST 'rap_2threads_intel' [09:43, 07:16](1188 MB) -PASS -- TEST 'rap_restart_intel' [05:43, 04:00](1087 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1103 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:03](1017 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 06:21](1098 MB) -PASS -- TEST 'hrrr_control_intel' [06:42, 03:58](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 04:05](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:38, 03:39](1100 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:09](984 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:47, 07:34](1106 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:29, 09:06](1981 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:54, 09:02](2060 MB) - -PASS -- COMPILE 'csawmg_intel' [11:07, 09:37] -PASS -- TEST 'control_csawmg_intel' [08:41, 05:54](733 MB) -PASS -- TEST 'control_csawmgt_intel' [07:41, 05:43](742 MB) -PASS -- TEST 'control_ras_intel' [05:22, 03:18](732 MB) - -PASS -- COMPILE 'wam_intel' [11:08, 09:17] -PASS -- TEST 'control_wam_intel' [04:20, 02:03](627 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:08, 09:50] -PASS -- TEST 'control_p8_faster_intel' [05:07, 02:39](1589 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 04:40](841 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:31] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:40](800 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](809 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:59](807 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:20, 02:42](790 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 03:59](844 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:38, 03:57](853 MB) -PASS -- TEST 'control_ras_debug_intel' [04:18, 02:40](792 MB) -PASS -- TEST 'control_diag_debug_intel' [04:27, 02:49](868 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 02:50](1638 MB) -PASS -- TEST 'regional_debug_intel' [18:43, 16:31](841 MB) -PASS -- TEST 'rap_control_debug_intel' [06:21, 04:46](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:34](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:27](1200 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 05:28](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 05:14](1186 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:03, 05:39](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:01](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:13](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:01](1196 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:55](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:00](1164 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:01](1176 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:58](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:16](1174 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:04](1172 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:09](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:28](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:08, 03:09] -PASS -- TEST 'control_wam_debug_intel' [06:20, 04:52](477 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:12] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:30](1149 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:57](1011 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:59](958 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:36](1075 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:08](953 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:33](918 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 05:00](1044 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:51](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:44] -PASS -- TEST 'conus13km_control_intel' [03:51, 02:02](1180 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:37, 00:54](1113 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:24] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:17](954 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:25] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:43](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1073 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 13:56](1216 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 13:45](911 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:48](1143 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:50](1293 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:07] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:49](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 10:55] -PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:51](734 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 05:48](1101 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:46](806 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:02](844 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:24, 14:44](845 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 05:20](473 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:21, 06:30](492 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:45](351 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:06](484 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:40](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:26](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:10](584 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:18](404 MB) -PASS -- TEST 'gnv1_nested_intel' [05:45, 03:59](802 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:08, 04:02] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 12:16](538 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:01] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 08:26](647 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:28](696 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 11:20] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:05, 06:17](664 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:09, 10:30] -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:16](819 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:12](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:15](1218 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:08, 06:03] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:41](1134 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:39](1058 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:36](1011 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:30](992 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:36](1002 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:43](1104 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1113 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1001 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 06:55](1055 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:13](1029 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:38](1127 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:54](2421 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2411 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:01] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:58](1046 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:08, 05:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:38](1129 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:09, 01:01] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:44](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:47](318 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:20, 00:31](316 MB) - -PASS -- COMPILE 'atml_intel' [12:09, 10:53] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 04:15](1584 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 04:08](1606 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 02:14](887 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:08] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:42](1647 MB) - -PASS -- COMPILE 'atmwm_intel' [12:15, 10:06] -PASS -- TEST 'control_atmwav_intel' [06:34, 01:39](638 MB) - -PASS -- COMPILE 'atmaero_intel' [11:09, 09:50] -PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:56](2967 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:57, 04:44](3080 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:44, 05:03](3061 MB) - -PASS -- COMPILE 'atmaq_intel' [11:08, 09:26] - -PASS -- COMPILE 'atmaq_debug_intel' [06:09, 03:34] -PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 19:58](4345 MB) - -PASS -- COMPILE 'atm_gnu' [06:09, 03:30] -PASS -- TEST 'control_c48_gnu' [13:26, 11:41](790 MB) -PASS -- TEST 'control_stochy_gnu' [06:18, 03:54](548 MB) -PASS -- TEST 'control_ras_gnu' [07:18, 04:53](555 MB) -PASS -- TEST 'control_p8_gnu' [06:57, 04:50](1301 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:44](1304 MB) -PASS -- TEST 'control_flake_gnu' [07:21, 05:52](596 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:06, 03:31] -PASS -- TEST 'rap_control_gnu' [13:33, 11:37](900 MB) -PASS -- TEST 'rap_decomp_gnu' [14:34, 12:01](894 MB) -PASS -- TEST 'rap_2threads_gnu' [12:41, 10:30](974 MB) -PASS -- TEST 'rap_restart_gnu' [08:38, 06:03](626 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:36](895 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:34, 11:55](894 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:43](620 MB) -PASS -- TEST 'hrrr_control_gnu' [07:32, 06:00](889 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:56](879 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:33, 05:24](969 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [08:32, 05:58](889 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:22, 03:13](608 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:13](704 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [15:42, 11:28](898 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:07, 03:17] -PASS -- TEST 'control_diag_debug_gnu' [05:26, 01:42](588 MB) -PASS -- TEST 'regional_debug_gnu' [09:38, 07:33](593 MB) -PASS -- TEST 'rap_control_debug_gnu' [05:22, 02:43](907 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [05:18, 02:38](901 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [05:18, 02:40](903 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:36](903 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:45](991 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 03:52](904 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:27](904 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:31](900 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](541 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:26, 02:13](528 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:41](1286 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:32](905 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:49](908 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:07](907 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:05, 01:40] -PASS -- TEST 'control_wam_debug_gnu' [05:17, 02:27](238 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 04:00] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:31, 11:42](751 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:31, 06:07](747 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:38, 10:40](803 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:33, 05:20](802 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:31, 06:05](745 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [15:48, 09:17](595 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:23, 03:18](579 MB) -PASS -- TEST 'conus13km_control_gnu' [06:54, 04:10](896 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:52, 01:55](930 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:52, 02:17](597 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:10, 05:24] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:54](778 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:09, 03:35] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:32](760 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:31](753 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:45, 07:15](915 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:58, 07:10](634 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:45, 04:19](949 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:59](982 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:53] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:33](786 MB) - -PASS -- COMPILE 's2swa_gnu' [15:10, 13:52] -PASS -- TEST 'cpld_control_p8_gnu' [14:16, 11:04](1506 MB) - -PASS -- COMPILE 's2s_gnu' [15:08, 13:51] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:07, 06:30](1405 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:59] -PASS -- TEST 'cpld_debug_p8_gnu' [08:01, 06:03](1513 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 14:03] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:01, 22:28](1376 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:49] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:55, 12:58](1388 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:08, 13:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:57](695 MB) +PASS -- COMPILE 's2swa_32bit_intel' [29:59, 12:17] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:22, 05:15](3132 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:59, 15:47] +PASS -- TEST 'cpld_control_gfsv17_intel' [20:02, 16:14](1702 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:23, 16:54](1970 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [04:15, 07:44](1114 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:56, 18:13](1626 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:58, 04:53] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:00, 22:10](1672 MB) + +PASS -- COMPILE 's2swa_intel' [29:59, 12:14] +PASS -- TEST 'cpld_control_p8_intel' [09:22, 05:38](3164 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 05:47](3162 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:24, 03:27](3223 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:22, 05:44](3181 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 03:28](3254 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:16, 05:30](3498 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:15, 05:42](3160 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:17, 04:39](3014 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:28, 05:42](3163 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:17, 09:45](3320 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:59, 06:07](3616 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:50, 10:05](4103 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:47, 07:02](4345 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:20](3159 MB) + +PASS -- COMPILE 's2sw_intel' [28:59, 11:35] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:02, 04:29](1735 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:09, 04:22](1763 MB) + +PASS -- COMPILE 's2swa_debug_intel' [22:58, 04:49] +PASS -- TEST 'cpld_debug_p8_intel' [11:09, 08:09](3203 MB) + +PASS -- COMPILE 's2sw_debug_intel' [21:58, 04:18] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:30](1744 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [28:58, 10:50] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:27](1740 MB) + +PASS -- COMPILE 's2s_intel' [28:58, 10:48] +PASS -- TEST 'cpld_control_c48_intel' [11:50, 09:23](2819 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:59, 16:43] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:17, 05:16](3165 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:06, 15:08] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:04, 16:20](1727 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:18, 07:41](1137 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:08, 18:46](1636 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:05, 04:01] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:07, 24:32](1698 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:35] +PASS -- TEST 'control_flake_intel' [07:23, 03:17](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:25, 02:22](627 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:31, 02:31](623 MB) +PASS -- TEST 'control_latlon_intel' [05:20, 02:25](620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:28, 02:27](629 MB) +PASS -- TEST 'control_c48_intel' [09:23, 06:12](873 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:24, 06:14](874 MB) +PASS -- TEST 'control_c192_intel' [12:36, 09:01](824 MB) +PASS -- TEST 'control_c384_intel' [14:28, 09:03](1277 MB) +PASS -- TEST 'control_c384gdas_intel' [16:01, 08:11](1357 MB) +PASS -- TEST 'control_stochy_intel' [04:20, 01:40](646 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:24, 01:03](500 MB) +PASS -- TEST 'control_lndp_intel' [04:19, 01:33](621 MB) +PASS -- TEST 'control_iovr4_intel' [05:27, 02:26](626 MB) +PASS -- TEST 'control_iovr5_intel' [04:21, 02:26](654 MB) +PASS -- TEST 'control_p8_intel' [04:59, 03:02](1612 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:00, 03:00](1616 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:57, 02:52](1595 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:37](881 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:00, 02:55](1595 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:04, 01:36](912 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:51, 03:10](1582 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:48, 02:50](1702 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:17](1598 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:55, 03:53](1682 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:57, 02:59](1608 MB) +PASS -- TEST 'merra2_thompson_intel' [05:59, 03:27](1638 MB) +PASS -- TEST 'regional_control_intel' [07:43, 05:06](848 MB) +PASS -- TEST 'regional_restart_intel' [58:48, 02:49](1013 MB) +PASS -- TEST 'regional_decomp_intel' [07:43, 05:26](843 MB) +PASS -- TEST 'regional_2threads_intel' [05:40, 03:20](813 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 05:06](1331 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 05:04](817 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:40, 05:02](847 MB) +PASS -- TEST 'regional_wofs_intel' [08:43, 06:35](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [11:06, 09:47] +PASS -- TEST 'rap_control_intel' [09:41, 07:42](1069 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [01:12, 04:11](1278 MB) +PASS -- TEST 'rap_decomp_intel' [10:33, 08:03](1036 MB) +PASS -- TEST 'rap_2threads_intel' [10:31, 07:14](1184 MB) +PASS -- TEST 'rap_restart_intel' [59:48, 04:04](1084 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:42, 07:37](1108 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:34, 08:01](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [59:59, 05:51](1104 MB) +PASS -- TEST 'hrrr_control_intel' [06:37, 04:03](1013 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:36, 04:06](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [01:37, 03:38](1097 MB) +PASS -- TEST 'hrrr_control_restart_intel' [58:30, 02:11](970 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:41, 07:34](1087 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [05:31, 09:09](1985 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [06:29, 08:54](2075 MB) + +PASS -- COMPILE 'csawmg_intel' [11:06, 09:31] +PASS -- TEST 'control_csawmg_intel' [03:45, 05:52](705 MB) +PASS -- TEST 'control_csawmgt_intel' [02:50, 05:50](708 MB) +PASS -- TEST 'control_ras_intel' [00:25, 03:20](725 MB) + +PASS -- COMPILE 'wam_intel' [11:06, 09:04] +PASS -- TEST 'control_wam_intel' [58:26, 02:04](650 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:06, 09:46] +PASS -- TEST 'control_p8_faster_intel' [59:05, 02:40](1588 MB) +PASS -- TEST 'regional_control_faster_intel' [01:07, 04:45](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [58:29, 02:39](805 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [58:34, 02:42](780 MB) +PASS -- TEST 'control_stochy_debug_intel' [58:25, 03:01](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [57:22, 02:43](811 MB) +PASS -- TEST 'control_csawmg_debug_intel' [59:43, 04:06](831 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [59:44, 04:03](837 MB) +PASS -- TEST 'control_ras_debug_intel' [58:26, 02:45](807 MB) +PASS -- TEST 'control_diag_debug_intel' [58:33, 02:49](856 MB) +PASS -- TEST 'control_debug_p8_intel' [58:45, 02:56](1611 MB) +PASS -- TEST 'regional_debug_intel' [10:45, 16:47](815 MB) +PASS -- TEST 'rap_control_debug_intel' [58:27, 04:55](1200 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:22, 04:43](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:20, 04:47](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:00](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:20, 05:01](1175 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:07](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 04:54](1210 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 04:57](1198 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:49](1201 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:45](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 04:45](1206 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 04:40](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:24, 07:46](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:22, 04:47](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:24, 05:47](1201 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:23, 04:41](1201 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:36, 08:09](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:06, 03:18] +PASS -- TEST 'control_wam_debug_intel' [08:17, 04:48](513 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 09:15] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:01, 03:59](1158 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:39, 06:22](1048 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:34, 03:24](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:40, 06:09](1068 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:30, 03:09](947 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:34](912 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:52, 04:56](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [21:28, 01:55](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:07, 11:23] +PASS -- TEST 'conus13km_control_intel' [06:59, 02:04](1193 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:49, 00:57](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [22:50, 01:19](1071 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:07, 09:19] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:42, 04:13](961 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:06, 03:09] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:24, 04:45](1073 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:24, 04:41](1044 MB) +PASS -- TEST 'conus13km_debug_intel' [17:55, 13:48](1214 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:54, 13:57](910 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 07:53](1135 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 13:39](1283 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:07, 03:04] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:28, 04:48](1113 MB) + +PASS -- COMPILE 'hafsw_intel' [12:07, 10:33] +PASS -- TEST 'hafs_regional_atm_intel' [09:16, 05:05](739 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:29, 06:52](1109 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:22, 06:56](825 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:13, 13:04](858 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [34:35, 15:02](874 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [26:14, 05:40](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [28:28, 06:59](518 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [22:51, 02:48](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:07, 07:59](475 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [26:54, 04:05](527 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:03, 03:36](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:59, 04:27](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [21:29, 01:19](404 MB) +PASS -- TEST 'gnv1_nested_intel' [26:09, 04:32](796 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:45] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:57, 12:38](548 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:08, 11:17] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [25:11, 08:56](645 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:18, 08:59](703 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:06, 10:52] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:16, 06:52](711 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:07, 10:28] +PASS -- TEST 'hafs_regional_docn_intel' [26:18, 06:37](803 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [27:25, 06:37](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:01, 16:34](1206 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:21] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [25:18, 02:45](1117 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:40](1064 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [24:18, 02:35](1007 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:17, 02:38](1009 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:15, 02:36](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [21:16, 02:40](1124 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [18:16, 02:37](1125 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [18:16, 02:31](1003 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:27, 06:47](1052 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:24, 06:26](1017 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [10:13, 02:43](1129 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:57](2434 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:16, 04:01](2491 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:57] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:16, 06:00](1041 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 06:00] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:15, 02:41](1113 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:58] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:31, 00:52](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:28, 00:52](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:36](314 MB) + +PASS -- COMPILE 'atml_intel' [12:07, 10:48] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:16, 04:28](1591 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:04, 04:23](1578 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [38:05, 02:17](885 MB) + +PASS -- COMPILE 'atmw_intel' [12:07, 10:06] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 01:49](1623 MB) + +PASS -- COMPILE 'atmwm_intel' [04:12, 10:26] +PASS -- TEST 'control_atmwav_intel' [04:34, 01:42](641 MB) + +PASS -- COMPILE 'atmaero_intel' [04:10, 10:30] +PASS -- TEST 'atmaero_control_p8_intel' [07:08, 04:03](3019 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:18, 04:54](3084 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:48, 05:03](3043 MB) + +PASS -- COMPILE 'atmaq_intel' [04:12, 09:43] + +PASS -- COMPILE 'atmaq_debug_intel' [58:10, 03:32] +PASS -- TEST 'regional_atmaq_debug_intel' [24:20, 20:31](4417 MB) + +PASS -- COMPILE 'atm_gnu' [58:10, 03:43] +PASS -- TEST 'control_c48_gnu' [14:25, 11:36](790 MB) +PASS -- TEST 'control_stochy_gnu' [07:23, 04:02](545 MB) +PASS -- TEST 'control_ras_gnu' [07:22, 04:56](524 MB) +PASS -- TEST 'control_p8_gnu' [07:08, 04:54](1304 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:03, 04:46](1309 MB) +PASS -- TEST 'control_flake_gnu' [08:21, 05:54](593 MB) + +PASS -- COMPILE 'rrfs_gnu' [57:10, 03:33] +PASS -- TEST 'rap_control_gnu' [14:33, 11:34](894 MB) +PASS -- TEST 'rap_decomp_gnu' [14:35, 11:47](896 MB) +PASS -- TEST 'rap_2threads_gnu' [13:47, 10:31](992 MB) +PASS -- TEST 'rap_restart_gnu' [30:54, 05:58](621 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [14:43, 11:46](894 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:41, 11:54](897 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [36:48, 08:46](627 MB) +PASS -- TEST 'hrrr_control_gnu' [08:35, 06:04](889 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:34, 06:07](879 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:37, 05:17](973 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [09:33, 05:59](895 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [32:32, 03:12](608 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [32:32, 03:15](701 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [48:46, 11:21](889 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [59:10, 03:27] +PASS -- TEST 'control_diag_debug_gnu' [38:32, 01:38](592 MB) +PASS -- TEST 'regional_debug_gnu' [44:46, 07:50](606 MB) +PASS -- TEST 'rap_control_debug_gnu' [39:25, 02:30](910 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [37:26, 02:31](905 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [37:27, 02:33](909 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [37:24, 02:34](909 MB) +PASS -- TEST 'rap_diag_debug_gnu' [37:41, 02:45](996 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [38:25, 03:52](914 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [36:24, 02:33](912 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [35:27, 02:32](908 MB) +PASS -- TEST 'control_ras_debug_gnu' [34:20, 01:32](543 MB) +PASS -- TEST 'control_stochy_debug_gnu' [35:22, 02:14](541 MB) +PASS -- TEST 'control_debug_p8_gnu' [33:51, 01:41](1295 MB) +PASS -- TEST 'rap_flake_debug_gnu' [34:29, 02:33](911 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [33:27, 02:49](911 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [34:39, 04:09](915 MB) + +PASS -- COMPILE 'wam_debug_gnu' [57:10, 01:41] +PASS -- TEST 'control_wam_debug_gnu' [32:26, 02:28](238 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [55:10, 03:35] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [39:34, 11:55](748 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [32:40, 06:05](744 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [35:40, 10:41](801 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [30:41, 05:18](799 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [30:38, 06:07](741 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [35:43, 09:04](596 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:26, 03:15](580 MB) +PASS -- TEST 'conus13km_control_gnu' [32:02, 04:11](897 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:53](933 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:20](599 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [57:10, 05:07] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [28:50, 07:03](780 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:24, 02:34](770 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [06:20, 02:32](758 MB) +PASS -- TEST 'conus13km_debug_gnu' [12:52, 07:12](914 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [13:44, 07:24](631 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:46, 04:26](950 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [13:45, 07:05](981 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [09:22, 02:41](786 MB) + +PASS -- COMPILE 's2swa_gnu' [15:07, 13:49] +PASS -- TEST 'cpld_control_p8_gnu' [16:23, 10:55](1503 MB) + +PASS -- COMPILE 's2s_gnu' [16:08, 13:50] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:10, 06:47](1394 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:06, 02:24] +PASS -- TEST 'cpld_debug_p8_gnu' [13:10, 06:19](1511 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 14:11] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:11, 21:58](1379 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [09:07, 02:05] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:59, 12:53](1385 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [24:08, 13:54] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [40:59, 03:03](694 MB) SYNOPSIS: -Starting Date/Time: 20240222 18:39:16 -Ending Date/Time: 20240222 20:22:06 -Total Time: 01h:43m:23s +Starting Date/Time: 20240228 05:59:41 +Ending Date/Time: 20240229 07:59:24 +Total Time: 02h:00m:18s Compiles Completed: 53/53 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 2520164ea8..98d94e2a3e 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -ffc1413d43ff54ebdbba9d04e8ab95109225f0b1 +3951b805f6c6071a13b4686f8fd00e93840f5040 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -24,358 +24,358 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2262511 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_4072729 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:17] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 07:44](1893 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 17:55] -PASS -- TEST 'cpld_control_gfsv17_intel' [49:15, 13:38](1764 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:27, 14:12](2184 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:27](1172 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:01, 15:19](1689 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 04:50] -PASS -- TEST 'cpld_debug_gfsv17_intel' [11:13, 20:21](1724 MB) - -PASS -- COMPILE 's2swa_intel' [12:06, 09:54] -PASS -- TEST 'cpld_control_p8_intel' [39:05, 07:36](2065 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:15, 07:45](2058 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:19](1973 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [39:05, 07:40](1969 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:10, 04:24](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:09, 08:56](2488 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:58, 07:45](2078 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:31](1878 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:09, 07:31](2065 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [03:50, 15:44](2803 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:07, 05:46](2918 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [58:33, 08:47](3698 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:32, 06:06](3619 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [37:07, 04:58](2034 MB) - -PASS -- COMPILE 's2sw_intel' [12:06, 10:24] -PASS -- TEST 'cpld_control_noaero_p8_intel' [37:58, 07:17](1781 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:03, 04:00](1821 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:16] -PASS -- TEST 'cpld_debug_p8_intel' [52:04, 06:59](2053 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:06, 04:56] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [44:55, 04:41](1793 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:06, 08:26] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:56, 03:59](1816 MB) - -PASS -- COMPILE 's2s_intel' [11:06, 09:06] -PASS -- TEST 'cpld_control_c48_intel' [13:33, 07:14](2835 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:06, 12:40] -PASS -- TEST 'cpld_control_p8_faster_intel' [15:21, 07:22](2068 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 15:04] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 13:56](1803 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:00, 06:57](1274 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:21](1725 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:06, 03:57] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 21:37](1773 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:06, 07:32] -PASS -- TEST 'control_flake_intel' [43:28, 02:53](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [30:21, 02:05](662 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:39, 02:12](671 MB) -PASS -- TEST 'control_latlon_intel' [30:26, 02:08](660 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:27, 02:06](675 MB) -PASS -- TEST 'control_c48_intel' [09:20, 05:50](857 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [48:26, 05:43](861 MB) -PASS -- TEST 'control_c192_intel' [48:39, 07:55](999 MB) -PASS -- TEST 'control_c384_intel' [49:16, 08:18](1439 MB) -PASS -- TEST 'control_c384gdas_intel' [49:03, 07:24](1515 MB) -PASS -- TEST 'control_stochy_intel' [12:26, 01:30](667 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:55](534 MB) -PASS -- TEST 'control_lndp_intel' [09:21, 01:26](668 MB) -PASS -- TEST 'control_iovr4_intel' [07:22, 02:11](659 MB) -PASS -- TEST 'control_iovr5_intel' [06:24, 02:12](665 MB) -PASS -- TEST 'control_p8_intel' [03:49, 02:35](1644 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [56:02, 02:35](1637 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [43:57, 02:29](1656 MB) -PASS -- TEST 'control_restart_p8_intel' [03:43, 01:24](917 MB) -PASS -- TEST 'control_noqr_p8_intel' [37:53, 02:29](1619 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:45, 01:23](989 MB) -PASS -- TEST 'control_decomp_p8_intel' [27:46, 02:36](1634 MB) -PASS -- TEST 'control_2threads_p8_intel' [16:38, 02:22](1732 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:40, 04:28](1637 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [14:53, 03:36](1729 MB) -PASS -- TEST 'control_p8_mynn_intel' [13:01, 02:43](1659 MB) -PASS -- TEST 'merra2_thompson_intel' [13:06, 02:59](1653 MB) -PASS -- TEST 'regional_control_intel' [08:24, 04:33](954 MB) -PASS -- TEST 'regional_restart_intel' [18:23, 02:32](1105 MB) -PASS -- TEST 'regional_decomp_intel' [12:30, 05:05](946 MB) -PASS -- TEST 'regional_2threads_intel' [24:25, 02:55](912 MB) -PASS -- TEST 'regional_noquilt_intel' [24:24, 04:18](1487 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:24, 04:36](957 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:21, 04:30](955 MB) -PASS -- TEST 'regional_wofs_intel' [12:24, 05:35](2072 MB) - -PASS -- COMPILE 'rrfs_intel' [09:05, 07:20] -PASS -- TEST 'rap_control_intel' [12:49, 06:30](1209 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:43, 03:37](1401 MB) -PASS -- TEST 'rap_decomp_intel' [12:30, 06:49](1177 MB) -PASS -- TEST 'rap_2threads_intel' [08:31, 06:08](1381 MB) -PASS -- TEST 'rap_restart_intel' [09:50, 03:24](1125 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:29](1185 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:48](1160 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:50, 04:55](1200 MB) -PASS -- TEST 'hrrr_control_intel' [05:31, 03:28](1083 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 03:27](1043 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:04](1121 MB) -PASS -- TEST 'hrrr_control_restart_intel' [09:29, 01:52](1019 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:14](1187 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:35](2020 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:40](2157 MB) - -PASS -- COMPILE 'csawmg_intel' [13:05, 06:54] -PASS -- TEST 'control_csawmg_intel' [07:25, 05:07](810 MB) -PASS -- TEST 'control_csawmgt_intel' [07:23, 05:01](814 MB) -PASS -- TEST 'control_ras_intel' [04:15, 02:48](820 MB) - -PASS -- COMPILE 'wam_intel' [11:05, 06:29] -PASS -- TEST 'control_wam_intel' [03:19, 01:53](787 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:05, 09:10] -PASS -- TEST 'control_p8_faster_intel' [04:52, 02:21](1649 MB) -PASS -- TEST 'regional_control_faster_intel' [06:26, 04:05](962 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 03:42] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 02:14](819 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:13](828 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:33](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:17](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:21](880 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [11:30, 03:21](874 MB) -PASS -- TEST 'control_ras_debug_intel' [06:14, 02:21](834 MB) -PASS -- TEST 'control_diag_debug_intel' [09:25, 02:23](880 MB) -PASS -- TEST 'control_debug_p8_intel' [09:32, 02:27](1648 MB) -PASS -- TEST 'regional_debug_intel' [21:28, 14:08](890 MB) -PASS -- TEST 'rap_control_debug_intel' [11:18, 04:01](1211 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:14, 03:59](1216 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:15, 04:02](1217 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:15, 04:04](1223 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 04:04](1216 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:14](1293 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:16, 04:05](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:13, 04:06](1214 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:15, 04:04](1215 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:14, 04:03](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:17, 03:55](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:17, 03:59](1223 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:15, 06:26](1223 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:15, 04:01](1216 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 04:59](1219 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:01](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 06:50](1234 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 02:35] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:05, 06:20] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:19](1307 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:21](1161 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:51](1031 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:34, 05:07](1288 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:39, 02:38](1041 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:39, 03:07](978 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:46, 04:06](1097 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:31, 01:38](952 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:05, 08:51] -PASS -- TEST 'conus13km_control_intel' [13:39, 01:52](1309 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:50](1209 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:25, 01:04](1142 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:05, 06:35] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:35, 03:43](1059 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 02:57] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:15, 04:01](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:13, 03:55](1089 MB) -PASS -- TEST 'conus13km_debug_intel' [23:37, 11:48](1339 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:35, 12:04](1003 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 06:39](1244 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:28, 11:56](1410 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:06, 02:34] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:16, 04:02](1166 MB) - -PASS -- COMPILE 'hafsw_intel' [20:05, 09:41] -PASS -- TEST 'hafs_regional_atm_intel' [16:00, 05:42](868 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:20, 05:21](1281 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:06, 06:32](956 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:59, 14:01](992 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:08, 14:58](994 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:52, 05:21](607 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:22, 06:55](639 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [12:43, 02:48](436 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:01, 07:50](542 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:44, 03:55](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:50, 03:40](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:44, 04:55](671 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:22, 01:17](449 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:05, 03:06] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:40, 11:24](635 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:05, 10:38] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:50, 16:54](750 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:48, 17:54](812 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:05, 09:42] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:52, 10:17](830 MB) - -PASS -- COMPILE 'hafs_all_intel' [24:05, 09:24] -PASS -- TEST 'hafs_regional_docn_intel' [11:02, 05:36](937 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:07, 05:47](948 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:22](1337 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:05, 06:02] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:11, 02:07](1142 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:17](1093 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:04](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:10, 02:05](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:09, 02:05](1009 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:10, 02:07](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:11, 02:08](1154 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:03](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:41, 04:59](1157 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:42, 04:50](1139 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:02](2432 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:02](2384 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [19:05, 02:37] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:07](1079 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [24:05, 05:45] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [18:05, 00:45] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:53](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:49](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:36](562 MB) - -PASS -- COMPILE 'atml_intel' [23:05, 07:43] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:12, 05:53](1632 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:08, 05:51](1644 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 02:54](953 MB) - -PASS -- COMPILE 'atmw_intel' [21:05, 09:32] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:40](1687 MB) - -PASS -- COMPILE 'atmwm_intel' [25:06, 09:39] -PASS -- TEST 'control_atmwav_intel' [03:40, 01:30](700 MB) - -PASS -- COMPILE 'atmaero_intel' [23:05, 07:09] -PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:37](1789 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:11](1794 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 04:25](1817 MB) - -PASS -- COMPILE 'atmaq_intel' [22:05, 06:57] - -PASS -- COMPILE 'atmaq_debug_intel' [16:06, 02:40] -PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 16:27](4570 MB) - -PASS -- COMPILE 'atm_gnu' [22:06, 03:57] -PASS -- TEST 'control_c48_gnu' [11:28, 09:33](864 MB) -PASS -- TEST 'control_stochy_gnu' [04:20, 02:17](730 MB) -PASS -- TEST 'control_ras_gnu' [05:14, 03:42](731 MB) -PASS -- TEST 'control_p8_gnu' [07:51, 03:42](1514 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [08:40, 03:34](1518 MB) -PASS -- TEST 'control_flake_gnu' [08:15, 04:28](808 MB) - -PASS -- COMPILE 'rrfs_gnu' [20:05, 03:57] -PASS -- TEST 'rap_control_gnu' [12:30, 07:49](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [12:29, 07:41](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [11:45, 07:05](1151 MB) -PASS -- TEST 'rap_restart_gnu' [05:35, 03:53](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 07:40](1089 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 07:42](1085 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:43](884 MB) -PASS -- TEST 'hrrr_control_gnu' [08:30, 03:54](1073 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [08:31, 03:58](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:40, 03:34](1027 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 03:59](1072 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:03](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:48, 07:34](1080 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [25:06, 05:05] -PASS -- TEST 'control_diag_debug_gnu' [05:21, 01:27](775 MB) -PASS -- TEST 'regional_debug_gnu' [08:26, 06:15](930 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:15, 01:58](1101 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:15, 01:55](1090 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:57](1098 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:03](1096 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:09](1271 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:04](1096 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:00](1104 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:15, 01:55](1090 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:12](726 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:15](724 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:17](1505 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:16, 01:58](1098 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:09](1107 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:13](1099 MB) - -PASS -- COMPILE 'wam_debug_gnu' [17:05, 02:48] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [17:05, 04:19] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:06](964 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:52, 03:42](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:37](970 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:27](891 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:48](953 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 05:26](861 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 01:58](859 MB) -PASS -- TEST 'conus13km_control_gnu' [04:38, 02:27](1265 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:20, 01:03](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:25](949 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [19:05, 08:41] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:20](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [17:05, 04:52] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 01:58](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:50](966 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:24](1280 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:39](971 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:13](1194 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:24, 05:25](1351 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:05, 04:53] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:55](1001 MB) - -PASS -- COMPILE 's2swa_gnu' [29:07, 16:19] - -PASS -- COMPILE 's2s_gnu' [29:06, 16:03] - -PASS -- COMPILE 's2swa_debug_gnu' [15:06, 04:37] - -PASS -- COMPILE 's2sw_pdlib_gnu' [26:06, 15:59] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [15:06, 02:51] - -PASS -- COMPILE 'datm_cdeps_gnu' [30:06, 14:15] +PASS -- COMPILE 's2swa_32bit_intel' [13:07, 11:21] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:08, 07:37](1904 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:11] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:02, 13:49](1777 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:25, 14:05](2193 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:22, 06:38](1175 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:03, 15:12](1693 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:06, 04:54] +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:09, 20:29](1734 MB) + +PASS -- COMPILE 's2swa_intel' [13:06, 11:12] +PASS -- TEST 'cpld_control_p8_intel' [09:58, 07:38](2079 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:10, 07:28](2076 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:12, 04:15](1972 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:57, 07:32](1974 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:21](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:46](2487 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:51, 07:38](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:01, 06:24](1894 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:04, 07:40](2076 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:50, 15:17](2808 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:04, 05:38](2921 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:34, 08:59](3632 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:58, 05:45](3615 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:56, 04:57](2060 MB) + +PASS -- COMPILE 's2sw_intel' [13:08, 11:17] +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:54, 07:06](1771 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:03, 03:58](1819 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:52] +PASS -- TEST 'cpld_debug_p8_intel' [09:10, 06:57](2147 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:06, 04:25] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:20, 04:40](1793 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:06, 09:18] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 03:57](1835 MB) + +PASS -- COMPILE 's2s_intel' [10:06, 08:28] +PASS -- TEST 'cpld_control_c48_intel' [09:38, 07:12](2820 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:06, 12:55] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:16](2088 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:06, 16:37] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:02, 14:06](1807 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:37](1278 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:47, 15:16](1732 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:27] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:56, 21:48](1786 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:05, 08:56] +PASS -- TEST 'control_flake_intel' [04:15, 02:52](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:17, 02:04](666 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 02:08](680 MB) +PASS -- TEST 'control_latlon_intel' [04:15, 02:06](677 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:21, 02:09](666 MB) +PASS -- TEST 'control_c48_intel' [07:22, 05:44](856 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:22, 05:42](863 MB) +PASS -- TEST 'control_c192_intel' [09:28, 07:47](957 MB) +PASS -- TEST 'control_c384_intel' [10:17, 08:01](1454 MB) +PASS -- TEST 'control_c384gdas_intel' [09:57, 07:03](1504 MB) +PASS -- TEST 'control_stochy_intel' [03:15, 01:28](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:23, 00:49](545 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:23](666 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 02:04](673 MB) +PASS -- TEST 'control_iovr5_intel' [03:16, 02:02](671 MB) +PASS -- TEST 'control_p8_intel' [04:52, 02:33](1633 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:32](1629 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:06, 02:22](1639 MB) +PASS -- TEST 'control_restart_p8_intel' [03:50, 01:25](908 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:52, 02:24](1620 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:48, 01:24](983 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:48, 02:30](1626 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:48, 02:16](1721 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:40, 04:20](1643 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 03:22](1708 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:58, 02:29](1648 MB) +PASS -- TEST 'merra2_thompson_intel' [04:57, 02:59](1648 MB) +PASS -- TEST 'regional_control_intel' [06:27, 04:33](959 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 02:27](1109 MB) +PASS -- TEST 'regional_decomp_intel' [06:29, 04:43](945 MB) +PASS -- TEST 'regional_2threads_intel' [04:29, 02:48](907 MB) +PASS -- TEST 'regional_noquilt_intel' [06:26, 04:21](1488 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:27](956 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:28, 04:33](962 MB) +PASS -- TEST 'regional_wofs_intel' [07:26, 05:51](2076 MB) + +PASS -- COMPILE 'rrfs_intel' [09:05, 07:26] +PASS -- TEST 'rap_control_intel' [08:51, 06:36](1189 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:23](1412 MB) +PASS -- TEST 'rap_decomp_intel' [08:35, 06:50](1129 MB) +PASS -- TEST 'rap_2threads_intel' [08:32, 06:16](1367 MB) +PASS -- TEST 'rap_restart_intel' [05:50, 03:25](1148 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:33](1182 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 06:54](1139 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:57](1176 MB) +PASS -- TEST 'hrrr_control_intel' [05:53, 03:22](1083 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 03:26](1044 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:07](1134 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:50](1028 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:49, 06:15](1186 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 07:35](2009 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:20, 07:24](2168 MB) + +PASS -- COMPILE 'csawmg_intel' [09:06, 07:29] +PASS -- TEST 'control_csawmg_intel' [07:25, 05:09](837 MB) +PASS -- TEST 'control_csawmgt_intel' [06:24, 04:59](793 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:50](825 MB) + +PASS -- COMPILE 'wam_intel' [09:06, 07:52] +PASS -- TEST 'control_wam_intel' [03:23, 01:49](775 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:09, 10:12] +PASS -- TEST 'control_p8_faster_intel' [04:53, 02:22](1627 MB) +PASS -- TEST 'regional_control_faster_intel' [05:32, 04:02](955 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:08] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:20](825 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:11](822 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:14, 02:32](826 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:20](824 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:29, 03:20](865 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:31, 03:20](869 MB) +PASS -- TEST 'control_ras_debug_intel' [04:12, 02:16](842 MB) +PASS -- TEST 'control_diag_debug_intel' [04:22, 02:17](885 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 02:18](1658 MB) +PASS -- TEST 'regional_debug_intel' [16:25, 14:13](893 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1218 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:14, 03:55](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:14, 04:05](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 04:03](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:04](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:15](1301 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:05](1217 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 04:01](1217 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:21, 04:04](1214 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:59](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 04:01](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:16, 04:03](1207 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 06:24](1213 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:16, 03:55](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:10](1220 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:19, 03:59](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:55, 06:53](1225 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:13, 03:12] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:06, 06:40] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:44, 03:12](1281 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 05:22](1133 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:56, 02:56](1014 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:09](1287 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 02:42](1042 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 03:00](976 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:52, 04:07](1092 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:19, 01:34](966 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:11, 09:35] +PASS -- TEST 'conus13km_control_intel' [03:36, 01:46](1289 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:32, 00:42](1197 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:25, 01:02](1154 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:05, 06:39] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:40](1065 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:05, 02:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:56](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:15, 03:50](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [13:39, 11:42](1326 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:49](993 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 06:37](1243 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:32, 11:42](1412 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:05, 02:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:58](1150 MB) + +PASS -- COMPILE 'hafsw_intel' [11:11, 09:47] +PASS -- TEST 'hafs_regional_atm_intel' [08:03, 05:26](878 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1270 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:08, 06:18](949 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:37](978 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:09, 15:13](990 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:39](608 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:17, 06:55](621 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:53](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:40](544 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 03:54](611 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:38, 03:36](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:44, 05:56](683 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:19](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:05, 02:53] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:41, 11:16](637 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:56] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:51, 16:07](740 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:49, 17:02](841 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:07, 09:55] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:52, 10:01](829 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:08, 09:08] +PASS -- TEST 'hafs_regional_docn_intel' [08:00, 05:18](958 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:58, 05:23](943 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:39, 16:26](1342 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:05, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:10, 02:07](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:20](1093 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:02](1018 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:12, 02:05](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:09, 02:05](1022 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:08](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:07](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1003 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:48, 04:56](1163 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:46, 04:44](1149 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:07](1132 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:59](2436 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 03:02](2437 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:56] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:10](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:06, 04:49] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1147 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:05, 00:56] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:23, 00:53](332 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:50](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:31](561 MB) + +PASS -- COMPILE 'atml_intel' [09:06, 07:51] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:57, 06:34](1657 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:53, 06:13](1645 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:35, 03:05](952 MB) + +PASS -- COMPILE 'atmw_intel' [11:05, 09:30] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:46, 01:30](1692 MB) + +PASS -- COMPILE 'atmwm_intel' [10:05, 09:03] +PASS -- TEST 'control_atmwav_intel' [03:39, 01:29](691 MB) + +PASS -- COMPILE 'atmaero_intel' [09:06, 07:14] +PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:35](1803 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:20](1806 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:35](1812 MB) + +PASS -- COMPILE 'atmaq_intel' [08:05, 06:56] + +PASS -- COMPILE 'atmaq_debug_intel' [04:07, 02:35] +PASS -- TEST 'regional_atmaq_debug_intel' [19:29, 16:49](4598 MB) + +PASS -- COMPILE 'atm_gnu' [05:05, 03:59] +PASS -- TEST 'control_c48_gnu' [11:24, 09:25](867 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:19](731 MB) +PASS -- TEST 'control_ras_gnu' [05:13, 03:41](733 MB) +PASS -- TEST 'control_p8_gnu' [05:47, 03:35](1515 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:39, 03:29](1515 MB) +PASS -- TEST 'control_flake_gnu' [06:14, 04:17](809 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:05, 04:02] +PASS -- TEST 'rap_control_gnu' [09:49, 07:43](1089 MB) +PASS -- TEST 'rap_decomp_gnu' [09:37, 07:47](1088 MB) +PASS -- TEST 'rap_2threads_gnu' [09:37, 07:08](1154 MB) +PASS -- TEST 'rap_restart_gnu' [06:38, 04:05](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:35, 07:51](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:41, 05:50](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:39, 03:53](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:30, 04:02](1137 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:30, 03:36](1042 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:29, 03:58](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:01](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:13, 02:00](932 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:51, 07:26](1080 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:06, 05:44] +PASS -- TEST 'control_diag_debug_gnu' [03:18, 01:15](776 MB) +PASS -- TEST 'regional_debug_gnu' [08:27, 06:16](925 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:14, 02:00](1107 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:53](1089 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:55](1093 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:14, 01:53](1097 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:22, 02:06](1268 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:15, 03:03](1106 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:15, 01:55](1096 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:54](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:08](722 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:14, 01:17](725 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:28, 01:12](1503 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:15, 01:59](1099 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:17, 02:06](1100 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 03:12](1104 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:06, 02:30] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 03:50] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:29, 07:11](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:47, 03:56](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:45, 06:43](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 03:44](872 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:33, 03:50](948 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:56, 05:34](862 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:16, 01:58](856 MB) +PASS -- TEST 'conus13km_control_gnu' [04:38, 02:30](1266 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:25, 01:07](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:25, 01:40](942 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:07, 08:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:22](993 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:05, 05:38] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:16, 02:07](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:58](975 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:31, 05:26](1283 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:38](954 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 03:12](1193 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 05:28](1350 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:52] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:58](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [18:07, 16:26] + +PASS -- COMPILE 's2s_gnu' [17:06, 15:44] + +PASS -- COMPILE 's2swa_debug_gnu' [05:05, 03:07] + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:06, 14:01] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:08, 03:01] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:07, 15:17] SYNOPSIS: -Starting Date/Time: 20240222 15:42:59 -Ending Date/Time: 20240222 20:52:32 -Total Time: 05h:10m:04s +Starting Date/Time: 20240229 07:55:18 +Ending Date/Time: 20240229 09:15:49 +Total Time: 01h:20m:52s Compiles Completed: 53/53 Tests Completed: 234/234 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index aba1035824..45d63f7d3d 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -9904889c8c39959060b801e0cb5965f869d2a0ee +42ce413c756e127649d5c07d8f89535343390d6f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -24,245 +24,245 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_249843 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_168407 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [29:17, 27:42] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:57, 05:23](1764 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:23, 41:38] -PASS -- TEST 'cpld_control_gfsv17_intel' [22:11, 15:44](1642 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 17:09](1866 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:55, 09:21](985 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:35, 18:08](1603 MB) - -PASS -- COMPILE 's2swa_intel' [30:17, 28:56] -PASS -- TEST 'cpld_control_p8_intel' [17:37, 06:24](1801 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 06:12](1796 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:05, 03:27](1690 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:38, 06:12](1826 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 03:29](1715 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 05:46](2195 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:26, 05:58](1797 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:47, 05:02](1758 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:55, 06:06](1804 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [19:49, 05:57](1772 MB) - -PASS -- COMPILE 's2sw_intel' [28:17, 27:03] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:29, 04:30](1639 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:46, 04:37](1686 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:31] -PASS -- TEST 'cpld_debug_p8_intel' [12:10, 08:20](1837 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:12] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:31, 05:35](1650 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [28:16, 24:26] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:56, 04:40](1689 MB) - -PASS -- COMPILE 's2s_intel' [26:15, 24:32] -PASS -- TEST 'cpld_control_c48_intel' [14:22, 09:17](2798 MB) - -PASS -- COMPILE 's2swa_faster_intel' [05:31, 03:39] -PASS -- TEST 'cpld_control_p8_faster_intel' [25:59, 05:43](1801 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [41:21, 39:29] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:35, 16:26](1662 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:46, 08:08](1019 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:39, 19:17](1654 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:15] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:41, 24:57](1671 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [28:15, 25:56] -PASS -- TEST 'control_flake_intel' [22:46, 03:27](639 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:48, 02:26](589 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:03, 02:32](595 MB) -PASS -- TEST 'control_latlon_intel' [21:50, 02:29](594 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:51, 02:29](589 MB) -PASS -- TEST 'control_c48_intel' [12:58, 07:38](846 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:56, 07:20](841 MB) -PASS -- TEST 'control_c192_intel' [21:07, 09:11](721 MB) -PASS -- TEST 'control_c384_intel' [20:19, 12:02](901 MB) -PASS -- TEST 'control_c384gdas_intel' [39:19, 10:48](1018 MB) -PASS -- TEST 'control_stochy_intel' [20:46, 01:38](598 MB) -PASS -- TEST 'control_stochy_restart_intel' [20:39, 00:59](427 MB) -PASS -- TEST 'control_lndp_intel' [20:46, 01:37](593 MB) -PASS -- TEST 'control_iovr4_intel' [16:47, 02:30](592 MB) -PASS -- TEST 'control_iovr5_intel' [18:50, 02:28](590 MB) -PASS -- TEST 'control_p8_intel' [24:16, 03:07](1554 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [27:18, 03:00](1573 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [24:27, 03:02](1569 MB) -PASS -- TEST 'control_restart_p8_intel' [21:33, 01:35](819 MB) -PASS -- TEST 'control_noqr_p8_intel' [25:08, 02:59](1556 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [21:29, 01:33](836 MB) -PASS -- TEST 'control_decomp_p8_intel' [27:00, 03:04](1560 MB) -PASS -- TEST 'control_2threads_p8_intel' [25:04, 02:57](1646 MB) -PASS -- TEST 'control_p8_lndp_intel' [30:45, 05:20](1559 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [26:36, 04:00](1620 MB) -PASS -- TEST 'control_p8_mynn_intel' [27:25, 03:06](1585 MB) -PASS -- TEST 'merra2_thompson_intel' [23:46, 03:30](1581 MB) -PASS -- TEST 'regional_control_intel' [11:23, 05:30](757 MB) -PASS -- TEST 'regional_restart_intel' [25:59, 02:50](931 MB) -PASS -- TEST 'regional_decomp_intel' [10:25, 07:17](755 MB) -PASS -- TEST 'regional_2threads_intel' [23:14, 03:18](746 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [17:59, 05:30](758 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:52, 05:20](758 MB) - -PASS -- COMPILE 'rrfs_intel' [26:15, 24:32] -PASS -- TEST 'rap_control_intel' [27:55, 07:42](982 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 04:23](1217 MB) -PASS -- TEST 'rap_decomp_intel' [28:30, 08:02](967 MB) -PASS -- TEST 'rap_2threads_intel' [25:15, 07:15](1071 MB) -PASS -- TEST 'rap_restart_intel' [14:34, 03:57](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [28:45, 07:39](969 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:12, 08:01](963 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [15:29, 05:52](987 MB) -PASS -- TEST 'hrrr_control_intel' [23:13, 04:01](964 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:42, 04:06](971 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [23:28, 03:36](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [12:27, 02:07](902 MB) -PASS -- TEST 'rrfs_v1beta_intel' [28:58, 07:32](964 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [28:40, 09:15](1927 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:45, 08:57](1924 MB) - -PASS -- COMPILE 'csawmg_intel' [25:15, 23:14] -PASS -- TEST 'control_csawmg_intel' [24:56, 06:05](689 MB) -PASS -- TEST 'control_csawmgt_intel' [24:49, 06:01](688 MB) -PASS -- TEST 'control_ras_intel' [22:34, 03:23](656 MB) - -PASS -- COMPILE 'wam_intel' [23:14, 21:42] -PASS -- TEST 'control_wam_intel' [21:31, 02:05](493 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:22, 22:49] -PASS -- TEST 'control_p8_faster_intel' [13:50, 02:38](1562 MB) -PASS -- TEST 'regional_control_faster_intel' [13:51, 04:48](751 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [26:17, 05:03] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:31, 02:37](750 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:41, 02:36](749 MB) -PASS -- TEST 'control_stochy_debug_intel' [22:31, 02:55](763 MB) -PASS -- TEST 'control_lndp_debug_intel' [22:33, 02:37](759 MB) -PASS -- TEST 'control_csawmg_debug_intel' [22:53, 04:01](803 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [21:58, 04:01](801 MB) -PASS -- TEST 'control_ras_debug_intel' [20:34, 02:40](771 MB) -PASS -- TEST 'control_diag_debug_intel' [16:43, 02:47](808 MB) -PASS -- TEST 'control_debug_p8_intel' [16:06, 02:47](1576 MB) -PASS -- TEST 'regional_debug_intel' [28:06, 17:22](767 MB) -PASS -- TEST 'rap_control_debug_intel' [14:38, 04:48](1143 MB) -PASS -- TEST 'hrrr_control_debug_intel' [15:31, 04:45](1139 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [15:28, 04:48](1135 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:33, 04:51](1136 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:32, 04:50](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [18:50, 05:07](1230 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 05:01](1133 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:31, 04:54](1143 MB) -PASS -- TEST 'rap_lndp_debug_intel' [17:32, 05:00](1146 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:32, 04:49](1144 MB) -PASS -- TEST 'rap_noah_debug_intel' [19:36, 04:41](1143 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [20:33, 04:48](1143 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:33, 07:48](1137 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [20:32, 04:41](1140 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [22:43, 05:56](1143 MB) -PASS -- TEST 'rap_flake_debug_intel' [21:41, 04:50](1145 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:53, 08:14](1144 MB) - -PASS -- COMPILE 'wam_debug_intel' [24:17, 03:21] -PASS -- TEST 'control_wam_debug_intel' [22:33, 04:47](434 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:19, 21:28] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:40, 03:59](1076 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:50, 06:25](894 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:11, 03:24](859 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:18, 06:03](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:25, 03:08](906 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:34, 03:34](841 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [41:11, 05:48](897 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [37:46, 02:43](831 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 30:19] -PASS -- TEST 'conus13km_control_intel' [23:18, 02:15](1097 MB) -PASS -- TEST 'conus13km_2threads_intel' [30:39, 01:22](1047 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [31:37, 01:12](1017 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:18, 22:38] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:10, 04:23](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 03:36] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:39, 04:43](1023 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:35, 04:37](1022 MB) -PASS -- TEST 'conus13km_debug_intel' [32:18, 14:04](1130 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [32:03, 14:19](838 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:51, 08:12](1085 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:58, 14:16](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:11] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:38, 04:48](1050 MB) - -PASS -- COMPILE 'hafsw_intel' [36:22, 25:12] -PASS -- TEST 'hafs_regional_atm_intel' [23:32, 05:47](707 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:44, 05:55](1078 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [42:28, 07:56](766 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [38:27, 13:32](797 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:10, 15:52](819 MB) -PASS -- TEST 'gnv1_nested_intel' [31:50, 04:27](772 MB) - -PASS -- COMPILE 'hafs_all_intel' [33:28, 23:46] -PASS -- TEST 'hafs_regional_docn_intel' [26:41, 06:39](768 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:45, 06:39](752 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:09, 06:53] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:29, 02:41](1034 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [28:32, 02:19](1010 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:29, 02:32](914 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:32, 02:34](919 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:29, 02:35](919 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:28, 02:39](1040 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:27, 02:41](1043 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:26, 02:37](913 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:29, 06:35](875 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:20, 06:23](835 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [26:28, 02:43](1045 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:23, 03:55](2391 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 04:01](2396 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:03] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [20:32, 06:18](995 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 06:40] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:23, 02:41](1044 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [13:11, 01:23] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:51, 01:56](225 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:37, 01:01](245 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](248 MB) - -PASS -- COMPILE 'atml_intel' [40:22, 25:17] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 08:48](1581 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [22:47, 07:59](1596 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:50, 04:10](853 MB) - -PASS -- COMPILE 'atmw_intel' [42:26, 22:57] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 01:43](1576 MB) - -PASS -- COMPILE 'atmwm_intel' [40:25, 23:03] -PASS -- TEST 'control_atmwav_intel' [05:22, 01:38](597 MB) - -PASS -- COMPILE 'atmaero_intel' [43:37, 22:10] -PASS -- TEST 'atmaero_control_p8_intel' [06:33, 04:04](1670 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:30, 04:55](1709 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:23, 05:12](1711 MB) +PASS -- COMPILE 's2swa_32bit_intel' [55:28, 27:58] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [45:46, 05:34](1758 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [07:33, 42:07] +PASS -- TEST 'cpld_control_gfsv17_intel' [50:01, 16:00](1644 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:25, 16:53](1864 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:09, 07:35](988 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [08:37, 18:27](1617 MB) + +PASS -- COMPILE 's2swa_intel' [30:17, 27:40] +PASS -- TEST 'cpld_control_p8_intel' [33:35, 05:56](1803 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:00, 06:03](1797 MB) +PASS -- TEST 'cpld_restart_p8_intel' [26:35, 03:28](1695 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [45:32, 06:06](1826 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:10, 04:27](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [27:21, 06:26](2191 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [05:14, 06:01](1800 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:21, 05:17](1752 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [52:04, 06:00](1803 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [59:26, 05:42](1774 MB) + +PASS -- COMPILE 's2sw_intel' [34:19, 26:50] +PASS -- TEST 'cpld_control_noaero_p8_intel' [52:34, 04:33](1639 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:40, 04:40](1687 MB) + +PASS -- COMPILE 's2swa_debug_intel' [35:20, 04:39] +PASS -- TEST 'cpld_debug_p8_intel' [59:51, 08:14](1819 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:39, 04:13] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [38:18, 05:31](1650 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [38:47, 24:13] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:34, 04:37](1692 MB) + +PASS -- COMPILE 's2s_intel' [05:57, 24:02] +PASS -- TEST 'cpld_control_c48_intel' [12:22, 09:16](2790 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:07, 03:28] +PASS -- TEST 'cpld_control_p8_faster_intel' [13:34, 05:44](1808 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:50, 40:13] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:16, 16:28](1661 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [50:17, 08:00](1026 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [59:16, 19:06](1634 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [33:18, 04:13] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:22, 24:15](1670 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [33:20, 25:24] +PASS -- TEST 'control_flake_intel' [10:09, 03:32](642 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:11, 02:27](590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:18, 02:34](594 MB) +PASS -- TEST 'control_latlon_intel' [09:07, 02:32](591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:07, 02:30](594 MB) +PASS -- TEST 'control_c48_intel' [09:51, 07:18](844 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [17:56, 07:18](842 MB) +PASS -- TEST 'control_c192_intel' [16:31, 09:12](720 MB) +PASS -- TEST 'control_c384_intel' [23:34, 13:06](900 MB) +PASS -- TEST 'control_c384gdas_intel' [35:45, 10:42](1016 MB) +PASS -- TEST 'control_stochy_intel' [08:09, 01:41](596 MB) +PASS -- TEST 'control_stochy_restart_intel' [59:57, 00:57](425 MB) +PASS -- TEST 'control_lndp_intel' [08:08, 01:37](595 MB) +PASS -- TEST 'control_iovr4_intel' [54:07, 02:34](589 MB) +PASS -- TEST 'control_iovr5_intel' [09:13, 02:31](596 MB) +PASS -- TEST 'control_p8_intel' [19:33, 03:04](1564 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:44, 02:56](1566 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:49, 02:55](1576 MB) +PASS -- TEST 'control_restart_p8_intel' [04:54, 01:35](806 MB) +PASS -- TEST 'control_noqr_p8_intel' [14:27, 02:55](1549 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:15, 01:45](834 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:28, 03:12](1550 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:36, 02:48](1652 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:07, 05:17](1556 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [27:56, 03:58](1618 MB) +PASS -- TEST 'control_p8_mynn_intel' [24:32, 03:00](1565 MB) +PASS -- TEST 'merra2_thompson_intel' [55:48, 03:46](1572 MB) +PASS -- TEST 'regional_control_intel' [11:01, 05:23](756 MB) +PASS -- TEST 'regional_restart_intel' [06:49, 02:49](925 MB) +PASS -- TEST 'regional_decomp_intel' [12:49, 05:44](747 MB) +PASS -- TEST 'regional_2threads_intel' [18:22, 03:19](741 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [22:07, 05:17](751 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [25:53, 05:44](751 MB) + +PASS -- COMPILE 'rrfs_intel' [29:18, 24:55] +PASS -- TEST 'rap_control_intel' [16:23, 07:50](968 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:13, 04:26](1197 MB) +PASS -- TEST 'rap_decomp_intel' [06:39, 08:09](987 MB) +PASS -- TEST 'rap_2threads_intel' [05:33, 07:19](1073 MB) +PASS -- TEST 'rap_restart_intel' [32:58, 04:00](973 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:04, 07:58](968 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:44, 08:15](963 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [37:56, 05:49](981 MB) +PASS -- TEST 'hrrr_control_intel' [08:06, 04:14](965 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:36, 04:22](956 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:39, 03:42](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [33:47, 02:12](900 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:19, 07:57](962 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:05, 09:18](1927 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:16, 09:01](1928 MB) + +PASS -- COMPILE 'csawmg_intel' [35:21, 23:04] +PASS -- TEST 'control_csawmg_intel' [11:28, 06:19](671 MB) +PASS -- TEST 'control_csawmgt_intel' [08:14, 06:10](688 MB) +PASS -- TEST 'control_ras_intel' [03:55, 03:24](650 MB) + +PASS -- COMPILE 'wam_intel' [30:20, 22:20] +PASS -- TEST 'control_wam_intel' [03:53, 02:23](499 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [52:29, 22:37] +PASS -- TEST 'control_p8_faster_intel' [05:23, 02:51](1555 MB) +PASS -- TEST 'regional_control_faster_intel' [16:56, 04:57](752 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [34:20, 04:49] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [00:00, 02:40](756 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:58, 02:38](755 MB) +PASS -- TEST 'control_stochy_debug_intel' [54:52, 03:04](755 MB) +PASS -- TEST 'control_lndp_debug_intel' [47:53, 02:39](756 MB) +PASS -- TEST 'control_csawmg_debug_intel' [47:13, 04:03](804 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [44:07, 04:02](803 MB) +PASS -- TEST 'control_ras_debug_intel' [29:41, 02:40](762 MB) +PASS -- TEST 'control_diag_debug_intel' [31:50, 02:44](809 MB) +PASS -- TEST 'control_debug_p8_intel' [33:21, 02:44](1577 MB) +PASS -- TEST 'regional_debug_intel' [46:19, 16:41](765 MB) +PASS -- TEST 'rap_control_debug_intel' [31:41, 04:47](1142 MB) +PASS -- TEST 'hrrr_control_debug_intel' [34:42, 04:46](1136 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [35:44, 04:48](1134 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [36:43, 04:47](1133 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:38, 04:48](1148 MB) +PASS -- TEST 'rap_diag_debug_intel' [34:52, 05:07](1220 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:41, 04:54](1134 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:39, 04:52](1137 MB) +PASS -- TEST 'rap_lndp_debug_intel' [35:42, 04:57](1141 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:43, 04:49](1145 MB) +PASS -- TEST 'rap_noah_debug_intel' [34:43, 04:41](1143 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [35:44, 04:49](1144 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [37:45, 07:47](1134 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [36:43, 04:43](1137 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [37:40, 05:49](1142 MB) +PASS -- TEST 'rap_flake_debug_intel' [35:44, 04:49](1134 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:02, 08:16](1141 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:11, 03:10] +PASS -- TEST 'control_wam_debug_intel' [39:42, 04:48](439 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:35, 22:05] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [35:53, 04:03](1077 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:35, 06:26](896 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:45, 03:25](858 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:21, 06:10](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [31:31, 03:07](907 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [29:32, 03:36](839 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:59, 04:50](895 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [31:43, 01:54](833 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [27:43, 30:46] +PASS -- TEST 'conus13km_control_intel' [30:29, 02:11](1090 MB) +PASS -- TEST 'conus13km_2threads_intel' [39:11, 01:09](1042 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [39:59, 01:10](1005 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:36, 22:58] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [28:11, 04:37](887 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [49:26, 03:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:40, 04:53](1033 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:38, 04:40](1024 MB) +PASS -- TEST 'conus13km_debug_intel' [33:08, 14:06](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [35:08, 14:10](835 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [25:56, 08:06](1081 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [34:00, 13:53](1196 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [38:20, 03:33] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [23:37, 04:50](1048 MB) + +PASS -- COMPILE 'hafsw_intel' [56:30, 25:21] +PASS -- TEST 'hafs_regional_atm_intel' [31:52, 06:41](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [35:49, 06:29](1085 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [38:17, 07:58](768 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [44:52, 13:31](798 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [54:06, 15:13](818 MB) +PASS -- TEST 'gnv1_nested_intel' [38:51, 05:04](771 MB) + +PASS -- COMPILE 'hafs_all_intel' [56:28, 23:51] +PASS -- TEST 'hafs_regional_docn_intel' [49:45, 06:38](770 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [49:55, 06:48](751 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [43:23, 07:09] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:28, 02:42](1039 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:26, 01:37](1009 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:19, 02:31](914 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:19, 02:43](917 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:20, 02:53](914 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:20, 02:50](1033 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:22, 02:40](1043 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:16, 02:33](920 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [46:45, 06:20](882 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [46:44, 06:24](829 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:14, 02:44](1035 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:21, 04:02](2341 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [17:27, 03:59](2342 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [34:21, 03:01] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [19:27, 05:56](990 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [32:18, 06:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [21:26, 02:38](1038 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [21:14, 01:24] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:52, 01:12](224 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:44, 01:05](246 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:34, 00:38](245 MB) + +PASS -- COMPILE 'atml_intel' [41:21, 24:44] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [51:25, 09:25](1583 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [50:10, 09:11](1582 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:03, 04:29](859 MB) + +PASS -- COMPILE 'atmw_intel' [37:21, 22:55] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [43:55, 01:45](1579 MB) + +PASS -- COMPILE 'atmwm_intel' [37:23, 23:03] +PASS -- TEST 'control_atmwav_intel' [42:44, 01:40](605 MB) + +PASS -- COMPILE 'atmaero_intel' [35:21, 22:30] +PASS -- TEST 'atmaero_control_p8_intel' [44:08, 04:04](1675 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [45:54, 04:56](1704 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [45:39, 05:09](1714 MB) SYNOPSIS: -Starting Date/Time: 20240223 07:51:38 -Ending Date/Time: 20240223 11:22:41 -Total Time: 03h:31m:27s +Starting Date/Time: 20240228 05:58:22 +Ending Date/Time: 20240228 13:01:55 +Total Time: 07h:03m:59s Compiles Completed: 33/33 Tests Completed: 161/161 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index bca26a96f8..18731b706a 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -9904889c8c39959060b801e0cb5965f869d2a0ee +3951b805f6c6071a13b4686f8fd00e93840f5040 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -24,278 +24,278 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85130 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_246111 RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nems +* (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:09] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:09, 05:09](3184 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:09, 19:36] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:57, 16:25](1743 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 17:22](2023 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 08:06](1114 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 18:27](1641 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:38] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:52, 23:07](1687 MB) - -PASS -- COMPILE 's2swa_intel' [16:07, 14:20] -PASS -- TEST 'cpld_control_p8_intel' [13:08, 05:41](3207 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:17, 05:57](3133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:18](3249 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:08, 05:45](3239 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 03:28](3203 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:43, 06:06](3557 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:08, 05:47](3207 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:07, 04:41](3063 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:21, 05:45](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:18](3267 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 06:42](3544 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:19, 11:13](4110 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:11, 07:03](4365 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:08, 05:29](3178 MB) - -PASS -- COMPILE 's2sw_intel' [16:07, 14:19] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:42, 04:28](1737 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:07, 04:22](1775 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:36] -PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:24](3251 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:54](1758 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:07, 13:00] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:42](1709 MB) - -PASS -- COMPILE 's2s_intel' [14:07, 12:32] -PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:04](2833 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:09, 19:41] -PASS -- TEST 'cpld_control_p8_faster_intel' [09:00, 05:23](3208 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:20] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:27](1775 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 08:30](1177 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:49](1684 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:28] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:11, 24:28](1707 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:54] -PASS -- TEST 'control_flake_intel' [05:20, 03:32](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:34](653 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:45](622 MB) -PASS -- TEST 'control_latlon_intel' [04:18, 02:40](656 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:41](655 MB) -PASS -- TEST 'control_c48_intel' [07:29, 06:00](879 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 05:57](866 MB) -PASS -- TEST 'control_c192_intel' [11:35, 09:06](851 MB) -PASS -- TEST 'control_c384_intel' [14:41, 11:07](1244 MB) -PASS -- TEST 'control_c384gdas_intel' [13:53, 08:51](1352 MB) -PASS -- TEST 'control_stochy_intel' [03:22, 01:45](662 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:02](502 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:47](649 MB) -PASS -- TEST 'control_iovr4_intel' [04:25, 02:34](654 MB) -PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](651 MB) -PASS -- TEST 'control_p8_intel' [05:21, 03:01](1585 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 02:56](1631 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:53](1639 MB) -PASS -- TEST 'control_restart_p8_intel' [04:24, 01:39](893 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:15, 02:51](1616 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 01:43](930 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:13, 03:01](1620 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:04](1727 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:18](1639 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:28, 03:56](1695 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:31, 02:59](1639 MB) -PASS -- TEST 'merra2_thompson_intel' [06:52, 03:24](1642 MB) -PASS -- TEST 'regional_control_intel' [07:46, 05:06](855 MB) -PASS -- TEST 'regional_restart_intel' [05:43, 02:42](1022 MB) -PASS -- TEST 'regional_decomp_intel' [07:41, 05:28](849 MB) -PASS -- TEST 'regional_2threads_intel' [05:44, 03:45](841 MB) -PASS -- TEST 'regional_noquilt_intel' [06:46, 05:05](1365 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:53, 05:08](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 05:06](862 MB) -PASS -- TEST 'regional_wofs_intel' [08:44, 06:34](1923 MB) - -PASS -- COMPILE 'rrfs_intel' [13:07, 11:45] -PASS -- TEST 'rap_control_intel' [10:24, 07:42](1107 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:39](1291 MB) -PASS -- TEST 'rap_decomp_intel' [11:16, 08:04](985 MB) -PASS -- TEST 'rap_2threads_intel' [11:13, 07:52](1184 MB) -PASS -- TEST 'rap_restart_intel' [07:19, 04:12](1103 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:35, 07:47](1112 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:24, 08:11](1035 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:21, 05:55](1131 MB) -PASS -- TEST 'hrrr_control_intel' [06:55, 04:05](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:06](1021 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:07, 03:21](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:37](1052 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:15](1988 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:07](2019 MB) - -PASS -- COMPILE 'csawmg_intel' [13:06, 11:16] -PASS -- TEST 'control_csawmg_intel' [08:47, 05:51](751 MB) -PASS -- TEST 'control_csawmgt_intel' [08:47, 05:46](751 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:18](742 MB) - -PASS -- COMPILE 'wam_intel' [12:07, 10:53] -PASS -- TEST 'control_wam_intel' [04:16, 02:05](654 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:17] -PASS -- TEST 'control_p8_faster_intel' [06:35, 02:36](1623 MB) -PASS -- TEST 'regional_control_faster_intel' [06:43, 04:32](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 02:44](814 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:37](813 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:05](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:50](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:04](866 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:41, 04:02](863 MB) -PASS -- TEST 'control_ras_debug_intel' [05:18, 02:46](823 MB) -PASS -- TEST 'control_diag_debug_intel' [05:22, 03:00](838 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 02:58](1639 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 17:45](846 MB) -PASS -- TEST 'rap_control_debug_intel' [07:25, 05:06](1150 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:38](1199 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:52](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:09](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:12](1207 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:24](1281 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:13](1207 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 05:11](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1209 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:41](1199 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:08](1196 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:05](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:51](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:46](1210 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:49](1202 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:18](1206 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:06, 03:40] -PASS -- TEST 'control_wam_debug_intel' [07:17, 05:06](510 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:28] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:51, 04:25](1173 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:25](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 03:23](945 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:13, 06:42](1093 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:05](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:43](926 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:22, 04:50](1036 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:18, 01:57](940 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:49] -PASS -- TEST 'conus13km_control_intel' [05:05, 02:07](1200 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:45, 00:58](1124 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:40, 01:17](1109 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 10:45] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:14](1003 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:43] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:59](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1080 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 13:55](1187 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:45](931 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:41](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:19](1302 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:21] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:59](1128 MB) - -PASS -- COMPILE 'hafsw_intel' [14:07, 12:33] -PASS -- TEST 'hafs_regional_atm_intel' [08:15, 05:35](745 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:47](1122 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:47](828 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 12:57](863 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 14:29](881 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 06:07](505 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:23, 07:39](485 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:51, 03:09](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:27, 08:08](471 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:46, 04:10](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:01, 03:54](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:59, 05:19](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 01:22](402 MB) -PASS -- TEST 'gnv1_nested_intel' [06:52, 04:28](803 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:09] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:50, 12:56](568 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:37] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 09:31](667 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:59, 09:45](657 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:08, 14:50] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:01, 07:10](684 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:08, 13:26] -PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:26](829 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:31](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:01](1205 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:48] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:43](1095 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:34](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:39](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:29](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:41](1136 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:34](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:34](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:16, 05:52](1059 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:58](1050 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:46](1136 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:38](2433 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:45](2487 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:15] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1057 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:45] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:52](261 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:54](320 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:38](320 MB) - -PASS -- COMPILE 'atml_intel' [15:07, 13:36] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:23](1608 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:33, 04:20](1602 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 02:28](897 MB) - -PASS -- COMPILE 'atmw_intel' [16:08, 14:07] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 01:47](1670 MB) - -PASS -- COMPILE 'atmwm_intel' [13:11, 12:03] -PASS -- TEST 'control_atmwav_intel' [04:09, 01:48](672 MB) - -PASS -- COMPILE 'atmaero_intel' [13:06, 11:32] -PASS -- TEST 'atmaero_control_p8_intel' [06:25, 04:00](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:45](3087 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:14](3036 MB) - -PASS -- COMPILE 'atmaq_intel' [12:11, 10:32] - -PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:28] -PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 21:02](4576 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:22] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:15](3178 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 19:33] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 16:37](1737 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:59, 17:14](2027 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:00, 08:15](1110 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:41, 18:40](1645 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:10] +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:59, 23:49](1686 MB) + +PASS -- COMPILE 's2swa_intel' [17:07, 15:12] +PASS -- TEST 'cpld_control_p8_intel' [08:23, 05:41](3216 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:47, 05:42](3212 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:52, 03:16](3259 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:23, 05:51](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:52, 03:16](3276 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:28, 06:16](3498 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:23, 05:42](3203 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:23, 04:45](3068 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:40, 05:41](3214 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:38, 09:54](3341 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:28, 06:17](3627 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:31, 11:09](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:01, 06:56](4369 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:34, 05:26](3173 MB) + +PASS -- COMPILE 's2sw_intel' [15:07, 13:23] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:22](1733 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:21, 04:40](1773 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:06, 04:42] +PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:54](3252 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:06, 05:01] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:04, 06:00](1753 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:53] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:21, 04:29](1779 MB) + +PASS -- COMPILE 's2s_intel' [14:07, 12:23] +PASS -- TEST 'cpld_control_c48_intel' [10:50, 08:14](2834 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:16] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:24, 05:39](3203 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 19:03] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:10, 16:31](1725 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:05](1177 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:11, 18:33](1687 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:05, 05:53] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:49](1718 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:06, 13:59] +PASS -- TEST 'control_flake_intel' [05:19, 03:34](700 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:33](642 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:37](661 MB) +PASS -- TEST 'control_latlon_intel' [04:19, 02:35](654 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:37](655 MB) +PASS -- TEST 'control_c48_intel' [07:24, 05:57](873 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:25, 06:00](880 MB) +PASS -- TEST 'control_c192_intel' [11:38, 09:32](859 MB) +PASS -- TEST 'control_c384_intel' [13:33, 10:06](1248 MB) +PASS -- TEST 'control_c384gdas_intel' [12:43, 08:58](1358 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:45](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:21, 01:11](504 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:40](657 MB) +PASS -- TEST 'control_iovr4_intel' [04:24, 02:32](651 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:26](655 MB) +PASS -- TEST 'control_p8_intel' [05:06, 03:03](1626 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:04, 03:04](1636 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 02:58](1629 MB) +PASS -- TEST 'control_restart_p8_intel' [04:07, 01:39](895 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:07, 02:52](1621 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:11, 01:48](925 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:20, 03:09](1611 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:17, 03:04](1703 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:10](1628 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:31, 03:52](1702 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:33, 02:56](1630 MB) +PASS -- TEST 'merra2_thompson_intel' [06:40, 03:23](1649 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:02](857 MB) +PASS -- TEST 'regional_restart_intel' [04:39, 02:44](1024 MB) +PASS -- TEST 'regional_decomp_intel' [07:38, 05:30](851 MB) +PASS -- TEST 'regional_2threads_intel' [05:29, 03:44](850 MB) +PASS -- TEST 'regional_noquilt_intel' [07:30, 05:12](1361 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 05:10](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:09](859 MB) +PASS -- TEST 'regional_wofs_intel' [11:35, 09:13](1921 MB) + +PASS -- COMPILE 'rrfs_intel' [14:07, 12:09] +PASS -- TEST 'rap_control_intel' [10:22, 07:58](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:54, 04:47](1302 MB) +PASS -- TEST 'rap_decomp_intel' [11:08, 08:07](1035 MB) +PASS -- TEST 'rap_2threads_intel' [10:04, 07:53](1178 MB) +PASS -- TEST 'rap_restart_intel' [07:19, 04:07](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:28, 07:44](1099 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:55, 08:07](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:18, 06:01](1134 MB) +PASS -- TEST 'hrrr_control_intel' [06:24, 04:01](1023 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:09, 04:07](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:09, 04:05](1111 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:10](998 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:13, 07:36](1100 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:10](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 08:52](2071 MB) + +PASS -- COMPILE 'csawmg_intel' [13:06, 11:06] +PASS -- TEST 'control_csawmg_intel' [07:47, 05:50](749 MB) +PASS -- TEST 'control_csawmgt_intel' [07:41, 05:47](750 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:16](744 MB) + +PASS -- COMPILE 'wam_intel' [13:06, 11:33] +PASS -- TEST 'control_wam_intel' [04:18, 02:04](656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:06, 12:10] +PASS -- TEST 'control_p8_faster_intel' [05:33, 02:34](1631 MB) +PASS -- TEST 'regional_control_faster_intel' [06:41, 04:40](852 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:06, 05:21] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:22, 02:50](814 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:40](809 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:19, 03:17](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:52](814 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:19](864 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:08](866 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:48](826 MB) +PASS -- TEST 'control_diag_debug_intel' [06:25, 04:13](873 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 02:52](1648 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:42](833 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:59](1207 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:45](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:56](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:58](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:57](1201 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:32, 05:14](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:04](1198 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1202 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:54](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:56](1204 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:51](1208 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 08:00](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 04:55](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 05:52](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:19, 05:15](1208 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:40](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:06, 04:11] +PASS -- TEST 'control_wam_debug_intel' [07:17, 05:29](506 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:33] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 04:28](1170 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:03, 06:23](1056 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:35, 03:25](978 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:56, 06:44](1052 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:00](968 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:29, 03:35](935 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:12, 04:56](1034 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:54](934 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:31] +PASS -- TEST 'conus13km_control_intel' [04:51, 02:06](1204 MB) +PASS -- TEST 'conus13km_2threads_intel' [15:49, 01:01](1127 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:14](1113 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:07, 11:36] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:12](1000 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:51] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:21, 04:53](1085 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:47](1072 MB) +PASS -- TEST 'conus13km_debug_intel' [16:51, 14:43](1231 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 14:45](923 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:39, 08:18](1160 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:41, 14:10](1292 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:54] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:57](1117 MB) + +PASS -- COMPILE 'hafsw_intel' [15:07, 13:57] +PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:36](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 05:59](1124 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:16, 06:55](833 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:01](866 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:23, 14:33](883 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:55, 06:06](500 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:21, 07:37](517 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 03:08](352 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:20, 08:00](517 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:41, 04:03](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 03:56](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:52, 05:24](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:37](402 MB) +PASS -- TEST 'gnv1_nested_intel' [06:50, 04:29](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:30] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:48, 13:23](568 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:08, 13:21] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:58, 09:33](669 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:58, 09:35](738 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:06, 13:25] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 07:05](729 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:06, 13:02] +PASS -- TEST 'hafs_regional_docn_intel' [09:09, 06:10](829 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 06:18](816 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 15:56](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:06, 08:30] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:40](1137 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:36](1091 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:36](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:33](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:40](1012 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:36](1134 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:12, 02:39](1128 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:32](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:10, 05:51](1055 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:07, 05:59](1042 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:42](1129 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:36](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:41](2491 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:20] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 06:17](1056 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:07, 08:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:45](1139 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 01:01] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:47](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:48](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:33](323 MB) + +PASS -- COMPILE 'atml_intel' [18:07, 16:27] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:34, 04:26](1609 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:26, 04:19](1607 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 02:19](896 MB) + +PASS -- COMPILE 'atmw_intel' [13:07, 11:32] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:55](1674 MB) + +PASS -- COMPILE 'atmwm_intel' [13:07, 11:52] +PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB) + +PASS -- COMPILE 'atmaero_intel' [13:07, 11:45] +PASS -- TEST 'atmaero_control_p8_intel' [06:16, 03:59](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:16, 04:48](3086 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:56, 05:08](3101 MB) + +PASS -- COMPILE 'atmaq_intel' [12:07, 10:15] + +PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55] +PASS -- TEST 'regional_atmaq_debug_intel' [24:49, 21:23](4578 MB) SYNOPSIS: -Starting Date/Time: 20240222 15:39:11 -Ending Date/Time: 20240222 17:12:31 -Total Time: 01h:33m:46s +Starting Date/Time: 20240229 07:59:33 +Ending Date/Time: 20240229 09:30:04 +Total Time: 01h:30m:56s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 907da481a6..8f74579901 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -b675ab09f5d50068fdcc833fcce348b9df550362 +870b560324452362e10a1cdace0b2941e445d7f0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/HEAD-16-g8e642bb) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -24,238 +24,388 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170835 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_145152 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [33:31, 32:47] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:23, 01:16](2972 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:49, 16:01] -PASS -- TEST 'cpld_control_gfsv17_intel' [41:11, 02:27](1592 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:44, 02:08](1709 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [21:28, 01:22](845 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:12, 01:28](1569 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:47] -PASS -- TEST 'cpld_debug_gfsv17_intel' [52:41, 02:12](1601 MB) - -PASS -- COMPILE 's2swa_intel' [11:33, 11:04] -PASS -- TEST 'cpld_control_p8_intel' [46:27, 01:25](3003 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [46:27, 01:39](3002 MB) -PASS -- TEST 'cpld_restart_p8_intel' [38:05, 01:45](3059 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [46:27, 01:20](3027 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [38:05, 01:31](3080 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [46:27, 01:12](3316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [46:27, 01:26](3000 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [46:28, 01:33](2924 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:27, 01:34](3004 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [46:36, 03:46](3951 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:22, 03:58](4254 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [46:27, 01:54](2970 MB) - -PASS -- COMPILE 's2sw_intel' [24:04, 23:24] -PASS -- TEST 'cpld_control_noaero_p8_intel' [33:57, 01:51](1585 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:57, 02:02](1636 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:31, 09:54] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:29, 00:58](1633 MB) - -PASS -- COMPILE 's2s_intel' [24:04, 23:45] -PASS -- TEST 'cpld_control_c48_intel' [33:56, 00:47](2651 MB) - -PASS -- COMPILE 's2swa_faster_intel' [38:44, 37:27] -PASS -- TEST 'cpld_control_p8_faster_intel' [19:15, 01:56](3003 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [11:33, 11:16] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:27, 01:43](1598 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:28, 00:55](900 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 01:00](1581 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:29, 09:13] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:31, 01:14](1617 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [34:38, 34:06] -PASS -- TEST 'control_flake_intel' [18:01, 00:37](576 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:01, 00:54](521 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:58, 00:56](529 MB) -PASS -- TEST 'control_latlon_intel' [17:56, 00:53](522 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:49, 01:04](528 MB) -PASS -- TEST 'control_c48_intel' [17:46, 01:10](718 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [17:08, 00:58](714 MB) -PASS -- TEST 'control_c192_intel' [17:08, 00:28](641 MB) -PASS -- TEST 'control_c384_intel' [16:52, 02:03](952 MB) -PASS -- TEST 'control_c384gdas_intel' [15:28, 01:55](1089 MB) -PASS -- TEST 'control_stochy_intel' [14:54, 00:28](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [12:19, 01:03](331 MB) -PASS -- TEST 'control_lndp_intel' [14:23, 00:32](527 MB) -PASS -- TEST 'control_iovr4_intel' [14:21, 00:46](525 MB) -PASS -- TEST 'control_iovr5_intel' [14:16, 00:44](525 MB) -PASS -- TEST 'control_p8_intel' [14:11, 01:38](1498 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [14:09, 02:01](1511 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [14:01, 02:01](1504 MB) -PASS -- TEST 'control_restart_p8_intel' [09:00, 01:03](692 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:46, 01:38](1495 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 00:41](699 MB) -PASS -- TEST 'control_decomp_p8_intel' [13:42, 01:33](1497 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:30, 01:09](1594 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:29, 01:11](1510 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:22, 01:01](1558 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:29, 01:49](1511 MB) -PASS -- TEST 'merra2_thompson_intel' [12:27, 01:32](1513 MB) -PASS -- TEST 'regional_control_intel' [12:21, 00:22](610 MB) -PASS -- TEST 'regional_restart_intel' [06:36, 00:30](779 MB) -PASS -- TEST 'regional_decomp_intel' [12:17, 01:07](607 MB) -PASS -- TEST 'regional_2threads_intel' [12:04, 01:01](666 MB) -PASS -- TEST 'regional_noquilt_intel' [11:57, 00:29](1141 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:24, 00:30](608 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:13, 00:23](609 MB) -PASS -- TEST 'regional_wofs_intel' [11:07, 01:04](1583 MB) - -PASS -- COMPILE 'rrfs_intel' [18:54, 17:44] -PASS -- TEST 'rap_control_intel' [29:35, 01:45](914 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:36, 01:22](1089 MB) -PASS -- TEST 'rap_decomp_intel' [29:35, 01:31](917 MB) -PASS -- TEST 'rap_2threads_intel' [29:35, 01:42](1009 MB) -PASS -- TEST 'rap_restart_intel' [20:21, 01:25](786 MB) -PASS -- TEST 'rap_sfcdiff_intel' [29:35, 02:03](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:35, 01:49](916 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:01, 01:52](785 MB) -PASS -- TEST 'hrrr_control_intel' [29:35, 00:59](913 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [29:35, 00:55](906 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [29:36, 01:22](996 MB) -PASS -- TEST 'hrrr_control_restart_intel' [24:23, 01:04](742 MB) -PASS -- TEST 'rrfs_v1beta_intel' [29:35, 01:15](906 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [29:35, 00:58](1878 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:35, 01:18](1862 MB) - -PASS -- COMPILE 'csawmg_intel' [09:29, 08:59] -PASS -- TEST 'control_csawmg_intel' [37:59, 00:30](600 MB) -PASS -- TEST 'control_csawmgt_intel' [37:59, 00:35](599 MB) -PASS -- TEST 'control_ras_intel' [37:59, 01:03](560 MB) - -PASS -- COMPILE 'wam_intel' [11:36, 10:31] -PASS -- TEST 'control_wam_intel' [34:51, 01:00](272 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 22:13] -PASS -- TEST 'control_p8_faster_intel' [23:10, 01:59](1508 MB) -PASS -- TEST 'regional_control_faster_intel' [21:10, 00:34](610 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:39, 11:08] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [29:31, 01:17](691 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [29:31, 01:22](692 MB) -PASS -- TEST 'control_stochy_debug_intel' [29:31, 00:52](690 MB) -PASS -- TEST 'control_lndp_debug_intel' [29:31, 01:12](698 MB) -PASS -- TEST 'control_csawmg_debug_intel' [29:31, 00:33](732 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [29:31, 00:47](730 MB) -PASS -- TEST 'control_ras_debug_intel' [29:31, 01:10](704 MB) -PASS -- TEST 'control_diag_debug_intel' [29:31, 01:13](747 MB) -PASS -- TEST 'control_debug_p8_intel' [29:31, 01:05](1518 MB) -PASS -- TEST 'regional_debug_intel' [26:25, 01:08](631 MB) -PASS -- TEST 'rap_control_debug_intel' [26:02, 01:06](1076 MB) -PASS -- TEST 'hrrr_control_debug_intel' [25:37, 01:03](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [24:59, 00:58](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [24:57, 01:01](1074 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [24:57, 01:00](1077 MB) -PASS -- TEST 'rap_diag_debug_intel' [24:54, 00:56](1158 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:52, 00:45](1076 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:51, 00:58](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [24:44, 01:04](1075 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [24:23, 00:57](1072 MB) -PASS -- TEST 'rap_noah_debug_intel' [23:42, 01:05](1074 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [23:41, 01:00](1074 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:59, 01:03](1073 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [20:59, 01:15](1067 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [20:54, 00:19](1075 MB) -PASS -- TEST 'rap_flake_debug_intel' [20:21, 01:01](1076 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:01, 01:25](1077 MB) - -PASS -- COMPILE 'wam_debug_intel' [21:08, 20:19] -PASS -- TEST 'control_wam_debug_intel' [10:53, 01:06](300 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:50, 12:35] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:48, 01:22](952 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:47, 01:23](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [18:55, 01:59](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:48, 01:59](849 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [18:14, 01:32](839 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:12, 02:09](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:52, 01:27](690 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:48, 00:23](667 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:08, 20:12] -PASS -- TEST 'conus13km_control_intel' [10:24, 01:06](1004 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:34, 00:56](1005 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 00:50](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:51, 12:43] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [18:11, 01:29](810 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:39, 12:54] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:23, 01:09](951 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:51, 00:21](950 MB) -PASS -- TEST 'conus13km_debug_intel' [09:19, 00:49](1039 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [09:08, 00:44](711 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 00:46](1036 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:39, 00:44](1103 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:53, 18:55] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 01:05](978 MB) - -PASS -- COMPILE 'hafsw_intel' [12:44, 11:41] -PASS -- TEST 'hafs_regional_atm_intel' [08:20, 02:13](616 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:59, 00:43](963 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:22, 01:57](665 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:21, 02:06](699 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:11, 02:07](705 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 01:24](383 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:49, 01:29](401 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:47, 01:41](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:40, 02:27](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:34, 01:40](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 01:03](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:36, 00:54](488 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:34, 00:22](320 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:24, 05:48] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:35, 01:04](510 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:54, 17:34] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:08, 00:58](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:08, 00:53](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:40, 11:13] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [04:43, 01:02](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:51, 16:09] -PASS -- TEST 'hafs_regional_docn_intel' [02:26, 01:42](666 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [02:26, 01:46](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:24, 00:38](880 MB) - -PASS -- COMPILE 'atml_intel' [21:02, 19:54] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:59, 01:18](1549 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [56:59, 01:16](1540 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [50:18, 00:18](740 MB) - -PASS -- COMPILE 'atmaero_intel' [13:47, 12:34] -PASS -- TEST 'atmaero_control_p8_intel' [03:03, 01:31](2855 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [03:03, 00:55](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:03, 01:47](2921 MB) - -PASS -- COMPILE 'atmaq_intel' [13:45, 12:50] - -PASS -- COMPILE 'atmaq_debug_intel' [08:43, 08:28] -PASS -- TEST 'regional_atmaq_debug_intel' [04:14, 01:46](4434 MB) +PASS -- COMPILE 's2swa_32bit_intel' [46:01, 44:47] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:52, 01:19](2972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:13, 27:03] +PASS -- TEST 'cpld_control_gfsv17_intel' [29:41, 02:16](1586 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:28, 02:09](1706 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:16, 01:28](845 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:42, 01:47](1567 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:28, 04:19] +PASS -- TEST 'cpld_debug_gfsv17_intel' [52:27, 02:08](1608 MB) + +PASS -- COMPILE 's2swa_intel' [15:47, 14:54] +PASS -- TEST 'cpld_control_p8_intel' [42:07, 01:23](3003 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [42:07, 01:35](3004 MB) +PASS -- TEST 'cpld_restart_p8_intel' [33:48, 01:58](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [42:07, 01:23](3028 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [33:47, 01:56](3081 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [42:07, 01:10](3320 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [42:07, 01:26](3000 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [42:08, 01:33](2924 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [42:07, 01:40](3003 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [42:16, 03:15](3952 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:44, 04:01](4253 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [42:07, 01:54](2966 MB) + +PASS -- COMPILE 's2sw_intel' [26:08, 25:27] +PASS -- TEST 'cpld_control_noaero_p8_intel' [31:45, 00:53](1584 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [31:45, 01:01](1639 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:45, 14:23] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:08, 00:59](1634 MB) + +PASS -- COMPILE 's2s_intel' [10:36, 09:47] +PASS -- TEST 'cpld_control_c48_intel' [47:16, 00:48](2651 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:50, 16:28] +PASS -- TEST 'cpld_control_p8_faster_intel' [41:03, 01:47](3003 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:50, 16:05] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:03, 01:29](1604 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [23:16, 00:50](900 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:17, 00:59](1582 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:51, 15:45] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:04, 01:30](1618 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:48, 40:35] +PASS -- TEST 'control_flake_intel' [11:37, 00:27](573 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [11:37, 00:50](522 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:37, 00:51](528 MB) +PASS -- TEST 'control_latlon_intel' [11:37, 00:46](524 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:37, 00:52](523 MB) +PASS -- TEST 'control_c48_intel' [11:36, 00:54](718 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:36, 00:58](718 MB) +PASS -- TEST 'control_c192_intel' [11:37, 00:25](641 MB) +PASS -- TEST 'control_c384_intel' [11:41, 01:05](949 MB) +PASS -- TEST 'control_c384gdas_intel' [11:41, 01:56](1090 MB) +PASS -- TEST 'control_stochy_intel' [11:37, 00:27](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [09:09, 01:00](327 MB) +PASS -- TEST 'control_lndp_intel' [11:37, 00:28](526 MB) +PASS -- TEST 'control_iovr4_intel' [11:37, 00:47](525 MB) +PASS -- TEST 'control_iovr5_intel' [11:37, 00:47](525 MB) +PASS -- TEST 'control_p8_intel' [11:37, 01:40](1513 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:37, 02:00](1507 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:37, 02:01](1511 MB) +PASS -- TEST 'control_restart_p8_intel' [06:22, 01:04](689 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:37, 01:40](1490 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:21, 01:09](700 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:37, 01:31](1501 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:37, 01:22](1590 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:37, 01:23](1500 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:14, 01:04](1554 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:06, 01:53](1513 MB) +PASS -- TEST 'merra2_thompson_intel' [09:24, 01:38](1514 MB) +PASS -- TEST 'regional_control_intel' [09:07, 00:26](608 MB) +PASS -- TEST 'regional_restart_intel' [03:17, 00:27](776 MB) +PASS -- TEST 'regional_decomp_intel' [08:17, 00:11](606 MB) +PASS -- TEST 'regional_2threads_intel' [08:05, 01:06](667 MB) +PASS -- TEST 'regional_noquilt_intel' [08:01, 00:30](1145 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 00:29](611 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:01, 00:22](611 MB) +PASS -- TEST 'regional_wofs_intel' [07:53, 01:03](1578 MB) + +PASS -- COMPILE 'rrfs_intel' [13:40, 13:07] +PASS -- TEST 'rap_control_intel' [33:36, 01:11](921 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:37, 01:14](1097 MB) +PASS -- TEST 'rap_decomp_intel' [33:36, 01:48](919 MB) +PASS -- TEST 'rap_2threads_intel' [33:36, 01:51](1008 MB) +PASS -- TEST 'rap_restart_intel' [25:04, 01:31](784 MB) +PASS -- TEST 'rap_sfcdiff_intel' [33:36, 01:18](917 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:36, 01:42](914 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [25:02, 02:00](783 MB) +PASS -- TEST 'hrrr_control_intel' [33:36, 01:09](910 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [33:36, 01:03](911 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [33:37, 01:32](999 MB) +PASS -- TEST 'hrrr_control_restart_intel' [28:25, 01:06](743 MB) +PASS -- TEST 'rrfs_v1beta_intel' [33:36, 01:19](908 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [33:36, 01:16](1879 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:36, 00:24](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [25:05, 24:00] +PASS -- TEST 'control_csawmg_intel' [18:03, 00:26](599 MB) +PASS -- TEST 'control_csawmgt_intel' [18:03, 00:29](599 MB) +PASS -- TEST 'control_ras_intel' [18:03, 00:56](559 MB) + +PASS -- COMPILE 'wam_intel' [12:38, 12:20] +PASS -- TEST 'control_wam_intel' [29:28, 00:55](272 MB) + +FAIL TO RUN -- COMPILE 'atm_faster_dyn32_intel' [, ] +MISSING -- TEST 'control_p8_faster_intel' [, ]( MB) +MISSING -- TEST 'regional_control_faster_intel' [, ]( MB) + +FAIL TO RUN -- COMPILE 'atm_debug_dyn32_intel' [, ] +MISSING -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +MISSING -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) +MISSING -- TEST 'control_stochy_debug_intel' [, ]( MB) +MISSING -- TEST 'control_lndp_debug_intel' [, ]( MB) +MISSING -- TEST 'control_csawmg_debug_intel' [, ]( MB) +MISSING -- TEST 'control_csawmgt_debug_intel' [, ]( MB) +MISSING -- TEST 'control_ras_debug_intel' [, ]( MB) +MISSING -- TEST 'control_diag_debug_intel' [, ]( MB) +MISSING -- TEST 'control_debug_p8_intel' [, ]( MB) +MISSING -- TEST 'regional_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_control_debug_intel' [, ]( MB) +MISSING -- TEST 'hrrr_control_debug_intel' [, ]( MB) +MISSING -- TEST 'hrrr_gf_debug_intel' [, ]( MB) +MISSING -- TEST 'hrrr_c3_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_diag_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_lndp_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_noah_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB) +MISSING -- TEST 'rrfs_v1beta_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_clm_lake_debug_intel' [, ]( MB) +MISSING -- TEST 'rap_flake_debug_intel' [, ]( MB) +MISSING -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) + +PASS -- COMPILE 'wam_debug_intel' [22:01, 21:22] +PASS -- TEST 'control_wam_debug_intel' [21:11, 00:50](297 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:27, 31:14] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [01:09, 01:24](950 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [01:08, 01:22](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [01:08, 01:43](785 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [01:08, 01:52](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [01:09, 01:34](840 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [01:08, 01:34](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [53:38, 01:40](685 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [55:57, 00:22](666 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:55, 18:53] +PASS -- TEST 'conus13km_control_intel' [11:49, 01:17](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:46, 00:56](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:46, 00:43](879 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:40, 11:47] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [17:01, 01:32](811 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [42:50, 42:30] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [46:37, 01:18](956 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [46:37, 01:25](955 MB) +PASS -- TEST 'conus13km_debug_intel' [46:37, 00:48](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [46:37, 00:37](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [46:38, 00:56](1039 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [46:37, 00:42](1104 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [34:29, 33:56] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:34, 01:05](977 MB) + +PASS -- COMPILE 'hafsw_intel' [20:57, 20:01] +PASS -- TEST 'hafs_regional_atm_intel' [56:06, 01:20](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [56:06, 00:53](964 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [56:04, 02:06](660 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [56:04, 02:12](695 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [56:05, 01:51](704 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [56:04, 01:22](388 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [56:05, 01:23](403 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [56:05, 01:39](282 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [56:08, 02:43](372 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [56:04, 00:42](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [56:04, 01:03](415 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [56:06, 00:54](490 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [56:05, 00:26](313 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:47, 14:19] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:08, 00:58](499 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:53, 17:43] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [52:59, 01:06](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [52:59, 01:01](707 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [26:06, 25:11] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [45:34, 01:06](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:48, 13:47] +PASS -- TEST 'hafs_regional_docn_intel' [46:21, 01:29](664 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [46:21, 01:32](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [46:19, 03:40](881 MB) + +PASS -- COMPILE 'atml_intel' [14:44, 12:59] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:28, 01:19](1542 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:28, 01:18](1543 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [59:49, 00:21](740 MB) + +PASS -- COMPILE 'atmaero_intel' [12:39, 10:12] +PASS -- TEST 'atmaero_control_p8_intel' [08:32, 01:36](2853 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 00:58](2910 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:32, 01:45](2923 MB) + +FAIL TO RUN -- COMPILE 'atmaq_intel' [, ] + +PASS -- COMPILE 'atmaq_debug_intel' [08:30, 06:58] +PASS -- TEST 'regional_atmaq_debug_intel' [12:41, 01:04](4441 MB) SYNOPSIS: -Starting Date/Time: 20240223 15:01:47 -Ending Date/Time: 20240223 16:22:18 -Total Time: 01h:20m:56s -Compiles Completed: 31/31 -Tests Completed: 157/157 +Starting Date/Time: 20240229 13:01:47 +Ending Date/Time: 20240229 15:12:48 +Total Time: 02h:11m:29s +Compiles Completed: 28/31 +Tests Completed: 128/157 +Failed Compiles: +* COMPILE atm_faster_dyn32_intel: FAIL TO RUN +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atm_faster_dyn32_intel.log +* COMPILE atm_debug_dyn32_intel: FAIL TO RUN +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atm_debug_dyn32_intel.log +* COMPILE atmaq_intel: FAIL TO RUN +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/grantfirl/ufs-weather-model/tests/logs/log_wcoss2/compile_atmaq_intel.log +Failed Tests: +* TEST control_p8_faster_intel: MISSING +-- LOG: N/A +* TEST regional_control_faster_intel: MISSING +-- LOG: N/A +* TEST control_CubedSphereGrid_debug_intel: MISSING +-- LOG: N/A +* TEST control_wrtGauss_netcdf_parallel_debug_intel: MISSING +-- LOG: N/A +* TEST control_stochy_debug_intel: MISSING +-- LOG: N/A +* TEST control_lndp_debug_intel: MISSING +-- LOG: N/A +* TEST control_csawmg_debug_intel: MISSING +-- LOG: N/A +* TEST control_csawmgt_debug_intel: MISSING +-- LOG: N/A +* TEST control_ras_debug_intel: MISSING +-- LOG: N/A +* TEST control_diag_debug_intel: MISSING +-- LOG: N/A +* TEST control_debug_p8_intel: MISSING +-- LOG: N/A +* TEST regional_debug_intel: MISSING +-- LOG: N/A +* TEST rap_control_debug_intel: MISSING +-- LOG: N/A +* TEST hrrr_control_debug_intel: MISSING +-- LOG: N/A +* TEST hrrr_gf_debug_intel: MISSING +-- LOG: N/A +* TEST hrrr_c3_debug_intel: MISSING +-- LOG: N/A +* TEST rap_unified_drag_suite_debug_intel: MISSING +-- LOG: N/A +* TEST rap_diag_debug_intel: MISSING +-- LOG: N/A +* TEST rap_cires_ugwp_debug_intel: MISSING +-- LOG: N/A +* TEST rap_unified_ugwp_debug_intel: MISSING +-- LOG: N/A +* TEST rap_lndp_debug_intel: MISSING +-- LOG: N/A +* TEST rap_progcld_thompson_debug_intel: MISSING +-- LOG: N/A +* TEST rap_noah_debug_intel: MISSING +-- LOG: N/A +* TEST rap_sfcdiff_debug_intel: MISSING +-- LOG: N/A +* TEST rap_noah_sfcdiff_cires_ugwp_debug_intel: MISSING +-- LOG: N/A +* TEST rrfs_v1beta_debug_intel: MISSING +-- LOG: N/A +* TEST rap_clm_lake_debug_intel: MISSING +-- LOG: N/A +* TEST rap_flake_debug_intel: MISSING +-- LOG: N/A +* TEST gnv1_c96_no_nest_debug_intel: MISSING +-- LOG: N/A + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +870b560324452362e10a1cdace0b2941e445d7f0 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + c2a0c34db714ddbc0e650913a9835dfa8f05180c FV3 (remotes/origin/bugfix_tisfc_20240213) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) + 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) + 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240227 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_198527 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-l) - USE CONFIG FILE: rt.test +* (-e) - USE ECFLOW + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:00, 08:41] +PASS -- TEST 'control_p8_faster_intel' [29:49, 01:06](1500 MB) +PASS -- TEST 'regional_control_faster_intel' [29:48, 00:40](610 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [18:52, 04:07] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [33:58, 00:31](684 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:58, 01:04](691 MB) +PASS -- TEST 'control_stochy_debug_intel' [33:58, 01:00](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [33:58, 01:11](693 MB) +PASS -- TEST 'control_csawmg_debug_intel' [33:58, 00:40](735 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [33:58, 00:48](730 MB) +PASS -- TEST 'control_ras_debug_intel' [33:58, 00:48](704 MB) +PASS -- TEST 'control_diag_debug_intel' [33:58, 01:13](747 MB) +PASS -- TEST 'control_debug_p8_intel' [22:52, 01:02](1520 MB) +PASS -- TEST 'regional_debug_intel' [33:57, 00:59](629 MB) +PASS -- TEST 'rap_control_debug_intel' [33:58, 01:11](1077 MB) +PASS -- TEST 'hrrr_control_debug_intel' [33:58, 00:16](1068 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [33:58, 00:16](1070 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [33:58, 01:03](1071 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [33:58, 00:35](1073 MB) +PASS -- TEST 'rap_diag_debug_intel' [33:58, 00:48](1159 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [33:58, 00:56](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:05, 00:49](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [33:58, 00:19](1076 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:58, 00:26](1072 MB) +PASS -- TEST 'rap_noah_debug_intel' [25:09, 00:39](1076 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [33:58, 01:17](1070 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [33:58, 00:17](1069 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [33:58, 00:46](1072 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [33:58, 00:16](1076 MB) +PASS -- TEST 'rap_flake_debug_intel' [33:58, 01:05](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [33:58, 01:11](1078 MB) + +PASS -- COMPILE 'atmaq_intel' [23:01, 08:22] + +SYNOPSIS: +Starting Date/Time: 20240229 18:07:06 +Ending Date/Time: 20240229 18:52:29 +Total Time: 00h:45m:35s +Compiles Completed: 3/3 +Tests Completed: 29/29 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/rt.sh b/tests/rt.sh index 62f49d459f..0350e45ab8 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -82,49 +82,60 @@ update_rtconf() { [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue - if [[ $line == COMPILE* ]] ; then - COMPILE_LINE_USED=false + if [[ $line =~ COMPILE ]] ; then MACHINES=$(echo $line | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') RT_COMPILER_IN=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') - if [[ ${MACHINES} == '' ]]; then compile_line=$line + COMPILE_LINE_USED=false elif [[ ${MACHINES} == -* ]]; then - [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || compile_line=$line; COMPILE_LINE_USED=false elif [[ ${MACHINES} == +* ]]; then - [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && compile_line=$line; COMPILE_LINE_USED=false fi fi if [[ $line =~ RUN ]]; then + to_run_test=false tmp_test=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') - TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") - - if [[ $TEST_IDX != -1 ]]; then - if [[ $COMPILE_LINE_USED == false ]]; then - echo "$compile_line" >> $RT_TEMP_CONF - COMPILE_LINE_USED=true - fi - dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') + MACHINES=$(echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') + if [[ ${MACHINES} == '' ]]; then + to_run_test=true + elif [[ ${MACHINES} == -* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] || to_run_test=true + elif [[ ${MACHINES} == +* ]]; then + [[ ${MACHINES} =~ ${MACHINE_ID} ]] && to_run_test=true + fi + if [[ $to_run_test == true ]]; then + TEST_IDX=$(find_match "$tmp_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") + + if [[ $TEST_IDX != -1 ]]; then + if [[ $COMPILE_LINE_USED == false ]]; then + echo -en '\n' >> $RT_TEMP_CONF + echo "$compile_line" >> $RT_TEMP_CONF + COMPILE_LINE_USED=true + fi + dep_test=$(echo "$line" | grep -w "$tmp_test" | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') - if [[ $dep_test != '' ]]; then - if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then - - dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test") - dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" - dep_line=$(echo "${dep_line}" | tr -d '\n') - CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line") - CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line") + if [[ $dep_test != '' ]]; then + if [[ $(find_match "$dep_test $RT_COMPILER_IN" "${TEST_WITH_COMPILE[@]}") == -1 ]]; then + + dep_line=$(grep -w "$dep_test" rt.conf | grep -v "$tmp_test") + dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" + dep_line=$(echo "${dep_line}" | tr -d '\n') + CORRECT_LINE[1]=$(awk -F'RUN|RUN' '{print $2}' <<< "$dep_line") + CORRECT_LINE[2]=$(awk -F'RUN|RUN' '{print $3}' <<< "$dep_line") - if [[ $RT_COMPILER_IN == "intel" ]]; then - echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF - elif [[ $RT_COMPILER_IN == "gnu" ]]; then - echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF + if [[ $RT_COMPILER_IN == "intel" ]]; then + echo "RUN ${CORRECT_LINE[1]}" >> $RT_TEMP_CONF + elif [[ $RT_COMPILER_IN == "gnu" ]]; then + echo "RUN ${CORRECT_LINE[2]}" >> $RT_TEMP_CONF + fi fi fi - fi - echo "$line" >> $RT_TEMP_CONF + echo "$line" >> $RT_TEMP_CONF + fi fi fi done < "$TESTS_FILE" diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..b5585d8b91 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,193 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 intel +cpld_mpi_gfsv17 intel +cpld_debug_gfsv17 intel +cpld_control_p8 intel +cpld_control_p8.v2.sfc intel +cpld_restart_p8 intel +cpld_control_qr_p8 intel +cpld_restart_qr_p8 intel +cpld_2threads_p8 intel +cpld_decomp_p8 intel +cpld_mpi_p8 intel +cpld_control_ciceC_p8 intel +cpld_control_c192_p8 intel +cpld_restart_c192_p8 intel +cpld_bmark_p8 intel +cpld_restart_bmark_p8 intel +cpld_s2sa_p8 intel +cpld_control_noaero_p8 intel +cpld_control_nowave_noaero_p8 intel +cpld_debug_p8 intel +cpld_debug_noaero_p8 intel +cpld_control_noaero_p8_agrid intel +cpld_control_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_flake intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c48.v2.sfc intel +control_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel +control_iovr5 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 intel +control_restart_p8 intel +control_noqr_p8 intel +control_restart_noqr_p8 intel +control_decomp_p8 intel +control_2threads_p8 intel +control_p8_lndp intel +control_p8_rrtmgp intel +control_p8_mynn intel +merra2_thompson intel +rap_control intel +rap_decomp intel +rap_2threads intel +rap_restart intel +rap_sfcdiff intel +rap_sfcdiff_decomp intel +rap_sfcdiff_restart intel +hrrr_control intel +hrrr_control_decomp intel +hrrr_control_2threads intel +hrrr_control_restart intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel +control_csawmg intel +control_csawmgt intel +control_ras intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_stochy_debug intel +control_lndp_debug intel +control_csawmg_debug intel +control_csawmgt_debug intel +control_ras_debug intel +control_diag_debug intel +control_debug_p8 intel +rap_control_debug intel +hrrr_control_debug intel +hrrr_gf_debug intel +hrrr_c3_debug intel +rap_unified_drag_suite_debug intel +rap_diag_debug intel +rap_cires_ugwp_debug intel +rap_unified_ugwp_debug intel +rap_lndp_debug intel +rap_progcld_thompson_debug intel +rap_noah_debug intel +rap_sfcdiff_debug intel +rap_noah_sfcdiff_cires_ugwp_debug intel +rrfs_v1beta_debug intel +rap_clm_lake_debug intel +rap_flake_debug intel +gnv1_c96_no_nest_debug intel +control_wam_debug intel +rap_control_dyn32_phy32 intel +hrrr_control_dyn32_phy32 intel +rap_2threads_dyn32_phy32 intel +hrrr_control_2threads_dyn32_phy32 intel +hrrr_control_decomp_dyn32_phy32 intel +rap_restart_dyn32_phy32 intel +hrrr_control_restart_dyn32_phy32 intel +conus13km_control intel +conus13km_2threads intel +conus13km_restart_mismatch intel +rap_control_dyn64_phy32 intel +rap_control_debug_dyn32_phy32 intel +hrrr_control_debug_dyn32_phy32 intel +conus13km_debug intel +conus13km_debug_qr intel +conus13km_debug_2threads intel +conus13km_radar_tten_debug intel +rap_control_dyn64_phy32_debug intel +hafs_global_1nest_atm intel +hafs_global_multiple_4nests_atm intel +hafs_global_storm_following_1nest_atm intel +gnv1_nested intel +control_p8_atmlnd_sbs intel +control_p8_atmlnd intel +control_restart_p8_atmlnd intel +atmwav_control_noaero_p8 intel +control_atmwav intel +atmaero_control_p8 intel +atmaero_control_p8_rad intel +atmaero_control_p8_rad_micro intel +control_c48 gnu +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +rap_control gnu +rap_decomp gnu +rap_2threads gnu +rap_restart gnu +rap_sfcdiff gnu +rap_sfcdiff_decomp gnu +rap_sfcdiff_restart gnu +hrrr_control gnu +hrrr_control_noqr gnu +hrrr_control_2threads gnu +hrrr_control_decomp gnu +hrrr_control_restart gnu +hrrr_control_restart_noqr gnu +rrfs_v1beta gnu +control_diag_debug gnu +rap_control_debug gnu +hrrr_control_debug gnu +hrrr_gf_debug gnu +hrrr_c3_debug gnu +rap_diag_debug gnu +rap_noah_sfcdiff_cires_ugwp_debug gnu +rap_progcld_thompson_debug gnu +rrfs_v1beta_debug gnu +control_ras_debug gnu +control_stochy_debug gnu +control_debug_p8 gnu +rap_flake_debug gnu +rap_clm_lake_debug gnu +gnv1_c96_no_nest_debug gnu +control_wam_debug gnu +rap_control_dyn32_phy32 gnu +hrrr_control_dyn32_phy32 gnu +rap_2threads_dyn32_phy32 gnu +hrrr_control_2threads_dyn32_phy32 gnu +hrrr_control_decomp_dyn32_phy32 gnu +rap_restart_dyn32_phy32 gnu +hrrr_control_restart_dyn32_phy32 gnu +conus13km_control gnu +conus13km_2threads gnu +conus13km_restart_mismatch gnu +rap_control_dyn64_phy32 gnu +rap_control_debug_dyn32_phy32 gnu +hrrr_control_debug_dyn32_phy32 gnu +conus13km_debug gnu +conus13km_debug_qr gnu +conus13km_debug_2threads gnu +conus13km_radar_tten_debug gnu +rap_control_dyn64_phy32_debug gnu +cpld_control_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_debug_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu From 6e2c612ab866fd5ac3c189d45bb48bdd599b36b5 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 29 Mar 2024 12:53:54 -0400 Subject: [PATCH 10/10] update FV3 submodule pointer --- FV3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FV3 b/FV3 index d1c09913fc..0307bdc8d0 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d1c09913fcda4ca9590b11c16bbcfff8222037ab +Subproject commit 0307bdc8d0d75b811c6d64fac2071c84a322c4e0